diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..e69de29 diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..e1eb738 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/projectSettingsUpdater.xml +/contentModel.xml +/modules.xml +/.idea.blog.iml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/indexLayout.xml b/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/butcher/assets/css/style.css b/butcher/assets/css/style.css new file mode 100644 index 0000000..fad48b6 --- /dev/null +++ b/butcher/assets/css/style.css @@ -0,0 +1,71 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + background-image: url(../../img/8f5ae70811c317d0e861fde6cd3a9646.jpg); + background-size: cover; + margin: 0; + height: 100vh; + display: flex; + justify-content: center; + align-items: center; + font-family: "Roboto", sans-serif; +} + +.game-wrapper { + display: flex; + justify-content: center; + align-items: center; + flex-direction: column; + text-align: center; +} + +.game { + background-color: rgba(0, 0, 0, 0.5); + padding: 20px; + border-radius: 10px; +} + +p { + color: azure; + text-align: center; +} + +h1 { + color: azure; + text-align: center; +} + +button { + color: black; + margin: 5px; +} + +.footer { + margin: 10px; + border-radius: 7px; + margin-top: 400px; +} +.footer-wrapper { + padding: 45px; +} + +.footer-text { + text-align: center; +} +.footer-contact { + /* color: var(--link-two); + */ + text-decoration: underline; + font-weight: 700; +} +.footer-text-p { + padding-top: 20px; + text-align: center; + /* color: var(--word-white); + */ + font-weight: 700; +} diff --git a/butcher/img/083456674.jpg b/butcher/img/083456674.jpg new file mode 100644 index 0000000..0180d1a Binary files /dev/null and b/butcher/img/083456674.jpg differ diff --git a/butcher/img/8f5ae70811c317d0e861fde6cd3a9646.jpg b/butcher/img/8f5ae70811c317d0e861fde6cd3a9646.jpg new file mode 100644 index 0000000..245e4c9 Binary files /dev/null and b/butcher/img/8f5ae70811c317d0e861fde6cd3a9646.jpg differ diff --git a/butcher/index.php b/butcher/index.php new file mode 100644 index 0000000..f285e22 --- /dev/null +++ b/butcher/index.php @@ -0,0 +1,112 @@ + 'Cesta', 'value' => 2] + ]; + break; + case 2: + $story = 'Jsi na ulici a začíná pršet. Vidíš nadzemku a bar. Kam půjdeš?'; + $choices = [ + ['text' => 'Nadzemka', 'value' => 3], + ['text' => 'Bar', 'value' => 4] + ]; + break; + case 3: + $story = 'Jsi na nástupišti. Vidíš město, zachmuřené město. Vedle stojí tajemný týpek. Dáš se sním do řeči nebo počkáš na vlak?'; + $choices = [ + ['text' => 'Prohodím pár slov', 'value' => 5], + ['text' => 'Počkám', 'value' => 6] + ]; + break; + case 4: + $story = 'Jsi ve dveřích baru. Ve vnitř je prázdno a jen barman . Chceš jít dál?'; + $choices = [ + ['text' => 'Ano', 'value' => 7], + ['text' => 'Ne', 'value' => 8] + ]; + // break; + // case 4: + // $story = "Dorazil jsi do města, čeká tě tu sexy princezna. Konec hry."; + // break; + // case 5: + // $story = "Tak si sedni a přemýšlej. Konec hry."; + // break; + // case 6: + // $story = "Sežrala tě jeskyní příšera. Konec hry."; + // break; + // case 7: + // $story = "Vrátil jsi se zpět do lesa a dokonce života v něm budeš bloudit v kruhu. Konec hry."; + // break; +} +?> + + + + + + + + Butcher + + +
+
+

Butcher

+

+ +
+ + + +
+ + +

Hra skončila. Začni znovu tady.

+ +
+ + +
+ + + diff --git a/index.php b/index.php index 1aff7d3..f6b5999 100644 --- a/index.php +++ b/index.php @@ -12,8 +12,8 @@ > - - + + Lukáš Kaňka @@ -56,6 +56,7 @@ testingu a SQL v Acamaru, další kurz byl web developer u společnosti Engeto. Pracoval jsem na pozici testera ve společnosti Uniprog a nyní pracuji ve společnosti Kyndryl na projektu České Spořitelny pro platformu SMART.

Nyní navíc nabízím IT služby, pro více informací klikněte sem.

+

Má ropozitáře na mé projekty najdete pod tímto odkazem

+ + + Lukáš Kaňka - IT služby diff --git a/testPHP/PTB/PROGRAMING_02/assets/CSS/style.css b/testPHP/PTB/PROGRAMING_02/assets/CSS/style.css new file mode 100644 index 0000000..b69f80c --- /dev/null +++ b/testPHP/PTB/PROGRAMING_02/assets/CSS/style.css @@ -0,0 +1,18 @@ +.columns-container { + display: flex; + align-items: center; + justify-content: center; +} + +.columns-container .column-left { + width: 35%; +} + +.columns-container .column-right { + width: 65%; +} + +.login-form, +.register-form { + display: none; +} \ No newline at end of file diff --git a/testPHP/PTB/PROGRAMING_02/assets/js/script.js b/testPHP/PTB/PROGRAMING_02/assets/js/script.js new file mode 100644 index 0000000..e69de29 diff --git a/testPHP/PTB/PROGRAMING_02/img/images.png b/testPHP/PTB/PROGRAMING_02/img/images.png new file mode 100644 index 0000000..a5c73e3 Binary files /dev/null and b/testPHP/PTB/PROGRAMING_02/img/images.png differ diff --git a/testPHP/PTB/PROGRAMING_02/index.php b/testPHP/PTB/PROGRAMING_02/index.php new file mode 100644 index 0000000..5821331 --- /dev/null +++ b/testPHP/PTB/PROGRAMING_02/index.php @@ -0,0 +1,91 @@ + + + + + + + + PHP 1O1 + + +
+
+
+
+

Login or Registr

+ + +
+ +
+
+ + +
+ +
+ + +
+
+ + +
+
+
+
+ +
+
+ + + +
+
+ + + +
+
+ + + +
+
+
+
+
+
+
+ PHP 1O1 +
+

Become a web developer

+

From begginer to intermediate programmer in one course

+ +
+
+
+ + + + + + + + \ No newline at end of file diff --git a/testPHP/W3S/index.php b/testPHP/W3S/index.php new file mode 100644 index 0000000..494ed1d --- /dev/null +++ b/testPHP/W3S/index.php @@ -0,0 +1,49 @@ + + + + +'; +echo phpversion(); +echo '
'; +$txt = 'PHP'; +echo "I love $txt!"; +echo '
'; +echo 'I love ' . $txt . '!'; +$x = 5; +$y = 4; +echo '
'; +echo $x + $y; +echo '
'; +var_dump($x); +echo '
'; + +var_dump('John'); +echo '
'; +var_dump(3.14); +echo '
'; +var_dump(true); +echo '
'; +var_dump([2, 3, 56]); +echo '
'; +var_dump(null); +echo '
'; + +/* Všechny tři proměnné získají hodnotu "Ovoce": */ +$q = $w = $e = 'Ovoce'; + +echo '
'; +function myTest() { + $xx = 5; // local scope +echo"

Variable x inside function is: $xx

; +} +myTest(); + +echo '
'; +echo"

Variable x outside is: $x

"; + +?> + + + \ No newline at end of file