diff --git a/01_primes/ex1.md b/01_primes/ex1.md
new file mode 100644
index 0000000..cb21e72
--- /dev/null
+++ b/01_primes/ex1.md
@@ -0,0 +1,5 @@
+In the file is_prime there are a few numbers. Write a C program and check whether it is a prime number of not.
+
+Miller–Rabin primality test is a good simple test algorithm (probabilistic one) if the number is prime or not. Here is a pseudocode for it:
+
+https://en.wikipedia.org/wiki/Miller%E2%80%93Rabin_primality_test
\ No newline at end of file
diff --git a/01_primes/readme.md b/01_primes/readme.md
deleted file mode 100644
index d7d7cda..0000000
--- a/01_primes/readme.md
+++ /dev/null
@@ -1,5 +0,0 @@
-In the file is_prime there is a number. Write a C program and check whether it is a prime number of not.
-
-It seems that Miller–Rabin primality test is a good simple test algorithm (probabilistic one) if the number is prime or not. Here is a pseudocode for it:
-
-https://en.wikipedia.org/wiki/Miller%E2%80%93Rabin_primality_test
\ No newline at end of file
diff --git a/02_MailClient/ex1.md b/02_MailClient/ex1.md
new file mode 100644
index 0000000..2300c32
--- /dev/null
+++ b/02_MailClient/ex1.md
@@ -0,0 +1,3 @@
+Write in Java (example of OOP) a mockup code for an email client or for USOS (classes, interfaces, etc.). It can be for a web, or desktop client - it does not matter. 
+
+At the end of the class we will discuss the mockups. 
\ No newline at end of file
diff --git a/03_Sql_html/html_excercise.txt b/03_Sql_html/ex1_html_excercise.md
similarity index 100%
rename from 03_Sql_html/html_excercise.txt
rename to 03_Sql_html/ex1_html_excercise.md
diff --git a/03_Sql_html/sql_excercises.txt b/03_Sql_html/ex2_sql_excercises.md
similarity index 100%
rename from 03_Sql_html/sql_excercises.txt
rename to 03_Sql_html/ex2_sql_excercises.md
diff --git a/04_AWK/stars/awk_excercises.txt b/04_AWK/ex_1_awk_excercises.md
similarity index 100%
rename from 04_AWK/stars/awk_excercises.txt
rename to 04_AWK/ex_1_awk_excercises.md
diff --git a/04_AWK/1.awk b/04_AWK/in_class/1.awk
similarity index 100%
rename from 04_AWK/1.awk
rename to 04_AWK/in_class/1.awk
diff --git a/04_AWK/2.awk b/04_AWK/in_class/2.awk
similarity index 100%
rename from 04_AWK/2.awk
rename to 04_AWK/in_class/2.awk
diff --git a/04_AWK/3.awk b/04_AWK/in_class/3.awk
similarity index 100%
rename from 04_AWK/3.awk
rename to 04_AWK/in_class/3.awk
diff --git a/04_AWK/4.awk b/04_AWK/in_class/4.awk
similarity index 100%
rename from 04_AWK/4.awk
rename to 04_AWK/in_class/4.awk
diff --git a/04_AWK/5.awk b/04_AWK/in_class/5.awk
similarity index 100%
rename from 04_AWK/5.awk
rename to 04_AWK/in_class/5.awk
diff --git a/04_AWK/countries.csv b/04_AWK/in_class/countries.csv
similarity index 100%
rename from 04_AWK/countries.csv
rename to 04_AWK/in_class/countries.csv
diff --git a/04_AWK/stars/inter-binevol.dat b/04_AWK/inter-binevol.dat
similarity index 100%
rename from 04_AWK/stars/inter-binevol.dat
rename to 04_AWK/inter-binevol.dat
diff --git a/04_AWK/stars/inter-binsin.dat b/04_AWK/inter-binsin.dat
similarity index 100%
rename from 04_AWK/stars/inter-binsin.dat
rename to 04_AWK/inter-binsin.dat
diff --git a/04_AWK/stars/snapshot.dat b/04_AWK/snapshot.dat
similarity index 100%
rename from 04_AWK/stars/snapshot.dat
rename to 04_AWK/snapshot.dat
diff --git a/05_html_jQuery/desc b/05_html_jQuery/ex1.md
similarity index 100%
rename from 05_html_jQuery/desc
rename to 05_html_jQuery/ex1.md
diff --git a/06_prolog/desc b/06_prolog/ex1-family-tree/ex1.md
similarity index 100%
rename from 06_prolog/desc
rename to 06_prolog/ex1-family-tree/ex1.md
diff --git a/06_prolog/family-tree.txt b/06_prolog/ex1-family-tree/family-tree.txt
similarity index 100%
rename from 06_prolog/family-tree.txt
rename to 06_prolog/ex1-family-tree/family-tree.txt
diff --git a/06_prolog/ex2-roads/desc b/06_prolog/ex2-roads/ex2.md
similarity index 100%
rename from 06_prolog/ex2-roads/desc
rename to 06_prolog/ex2-roads/ex2.md
diff --git a/06_prolog/ex1.pl b/06_prolog/in_class/ex1.pl
similarity index 100%
rename from 06_prolog/ex1.pl
rename to 06_prolog/in_class/ex1.pl
diff --git a/06_prolog/in_class/ex8.pl b/06_prolog/in_class/ex8.pl
new file mode 100644
index 0000000..31f0320
--- /dev/null
+++ b/06_prolog/in_class/ex8.pl
@@ -0,0 +1 @@
+data(one,two,456,327).
\ No newline at end of file
diff --git a/06_prolog/fac.pl b/06_prolog/in_class/fac.pl
similarity index 100%
rename from 06_prolog/fac.pl
rename to 06_prolog/in_class/fac.pl
diff --git a/07_OpenMP/desc b/07_OpenMP/ex1.md
similarity index 100%
rename from 07_OpenMP/desc
rename to 07_OpenMP/ex1.md
diff --git a/08_Haskell/desc b/08_Haskell/ex1.md
similarity index 100%
rename from 08_Haskell/desc
rename to 08_Haskell/ex1.md
diff --git a/08_Haskell/ex1-tutorial.hs b/08_Haskell/in_class/ex1-tutorial.hs
similarity index 100%
rename from 08_Haskell/ex1-tutorial.hs
rename to 08_Haskell/in_class/ex1-tutorial.hs
diff --git a/09_JavaFP/ex.txt b/09_JavaFP/ex1.md
similarity index 100%
rename from 09_JavaFP/ex.txt
rename to 09_JavaFP/ex1.md
diff --git a/09_JavaFP/ex2.txt b/09_JavaFP/ex2.md
similarity index 100%
rename from 09_JavaFP/ex2.txt
rename to 09_JavaFP/ex2.md
diff --git a/10_comparison/desc b/10_comparison/ex1.md
similarity index 100%
rename from 10_comparison/desc
rename to 10_comparison/ex1.md
diff --git a/oceny.xls b/oceny.xls
index e353d10..9c33e9d 100644
Binary files a/oceny.xls and b/oceny.xls differ
diff --git a/zaliczenie b/zaliczenie
index 8715f25..dc0ba2e 100644
--- a/zaliczenie
+++ b/zaliczenie
@@ -1,10 +1,10 @@
-Zgodnie z rozmowami i Państwa sugestiami proponuję, aby zaliczenie jednak było w formie projektu. 
+Zaliczenie bedzie w formie projektu. 
 
-Na projekt proponuję aplikację todo. Różnica polega na tym, aby w aplikację todo wpleść tyle paradygmatów programowania ile się tylko da. Ta aplikacja todo nie musi być biznesowo sensowna, a wplatanie różnych paradygmatów programowania do jej napisania może być całkowicie sztuczna. Idea za tym projektem polega na tym, aby nabrać wprawy w rozróżnianiu różnych paradygmatów programowania, do czego są dobre, kiedy się je stosuje i dlaczego...
+Na projekt proponuję aplikację todo. Różnica do klasycznych aplikacji tego typu polega na tym, aby w aplikację todo wpleść tyle paradygmatów programowania ile się tylko da. Ta aplikacja todo nie musi być biznesowo sensowna, a wplatanie różnych paradygmatów programowania do jej napisania może być całkowicie sztuczna. Idea za tym projektem polega na tym, aby nabrać wprawy w rozróżnianiu różnych paradygmatów programowania, do czego są dobre, kiedy się je stosuje i dlaczego...
 
 Na zaliczenia wybierzemy termin naszych ostatnich zajęć. 
 
 Więcej info o warunkach zaliczenia:
-* przynajmniej 4 paradygmaty na ocenę 4.0
+* przynajmniej 4 paradygmaty, aby mieć nadzieję na ocenę 4.0
 * na lepszą ocenę muszą być jakieś ciekawe bajery
 * w ramach wyjątku może to być inna aplikacja niż todo, ale musi ona implementować również różne paradygmaty programowania
\ No newline at end of file