├── Automating_Distributed_Tasks_with_Ansible ├── Automating_Distrbtd_tasks.pdf └── README.md ├── Automatizacia_Merani_Pomocou_Pythonu ├── Automatizacia_Merani_Pomocou_Pythonu.pdf └── README.md ├── Containerizing_Python_Apps └── README.md ├── Django_and_ReactJS ├── DjangoAndReactJS.pdf ├── LICENSE └── README.md ├── Jak_Funguje_Import ├── LICENSE ├── README.md └── jak-funguje-import.pdf ├── Jupyter_Notebook └── README.md ├── LightningTalk_Blinkys_Async_Adventure ├── LICENSE.CC-BY-SA ├── LICENSE.MIT ├── README.md └── presentation │ ├── 01-single.py │ ├── 02-threading.py │ ├── 03-uh-oh.py │ ├── 04-callback.py │ ├── 05-asyncio.py │ └── script ├── LightningTalk_PythonRC ├── Ondrej_Sika__PythonRC__slides.pdf └── README.md ├── Mashing_up_py.test_coverage.py_and_ast.py_to_take_TDD_to_a_new_level ├── PyconSK testmon.pdf └── README.md ├── My_Awesome_PyConSK_Presentation ├── LICENSE ├── MyAwesomePyConSKPresentation.pdf └── README.md ├── Protocol_Libraries_The_Right_Way ├── LICENSE ├── Protocol Libraries The Right Way.pdf └── README.md ├── Python_What_You_Didnt_Know └── README.md ├── Python_a_Malware ├── README.md ├── hids.py ├── matkovski_python_mallware_v03.pdf └── snippets.py ├── Python_and_DTrace ├── DTrace - pyconSK.pdf └── README.md ├── README.md ├── Scientific_Computing_with_Python └── README.md ├── Teach_Learn_Program └── README.md ├── Tips_And_Tricks_For_Using_Functional_Features_Of_Python ├── LICENSE ├── README.md └── Tips_And_Tricks_For_Using_Functional_Features_Of_Python.pdf └── Vagrant_end_of_It_works_on_my_machine_saga ├── LICENSE ├── README.md └── VAgrant_for_developers.pdf /Automating_Distributed_Tasks_with_Ansible/Automating_Distrbtd_tasks.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Automating_Distributed_Tasks_with_Ansible/Automating_Distrbtd_tasks.pdf -------------------------------------------------------------------------------- /Automating_Distributed_Tasks_with_Ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Automating_Distributed_Tasks_with_Ansible/README.md -------------------------------------------------------------------------------- /Automatizacia_Merani_Pomocou_Pythonu/Automatizacia_Merani_Pomocou_Pythonu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Automatizacia_Merani_Pomocou_Pythonu/Automatizacia_Merani_Pomocou_Pythonu.pdf -------------------------------------------------------------------------------- /Automatizacia_Merani_Pomocou_Pythonu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Automatizacia_Merani_Pomocou_Pythonu/README.md -------------------------------------------------------------------------------- /Containerizing_Python_Apps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Containerizing_Python_Apps/README.md -------------------------------------------------------------------------------- /Django_and_ReactJS/DjangoAndReactJS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Django_and_ReactJS/DjangoAndReactJS.pdf -------------------------------------------------------------------------------- /Django_and_ReactJS/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Django_and_ReactJS/LICENSE -------------------------------------------------------------------------------- /Django_and_ReactJS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Django_and_ReactJS/README.md -------------------------------------------------------------------------------- /Jak_Funguje_Import/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Jak_Funguje_Import/LICENSE -------------------------------------------------------------------------------- /Jak_Funguje_Import/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Jak_Funguje_Import/README.md -------------------------------------------------------------------------------- /Jak_Funguje_Import/jak-funguje-import.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Jak_Funguje_Import/jak-funguje-import.pdf -------------------------------------------------------------------------------- /Jupyter_Notebook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Jupyter_Notebook/README.md -------------------------------------------------------------------------------- /LightningTalk_Blinkys_Async_Adventure/LICENSE.CC-BY-SA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_Blinkys_Async_Adventure/LICENSE.CC-BY-SA -------------------------------------------------------------------------------- /LightningTalk_Blinkys_Async_Adventure/LICENSE.MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_Blinkys_Async_Adventure/LICENSE.MIT -------------------------------------------------------------------------------- /LightningTalk_Blinkys_Async_Adventure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_Blinkys_Async_Adventure/README.md -------------------------------------------------------------------------------- /LightningTalk_Blinkys_Async_Adventure/presentation/01-single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_Blinkys_Async_Adventure/presentation/01-single.py -------------------------------------------------------------------------------- /LightningTalk_Blinkys_Async_Adventure/presentation/02-threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_Blinkys_Async_Adventure/presentation/02-threading.py -------------------------------------------------------------------------------- /LightningTalk_Blinkys_Async_Adventure/presentation/03-uh-oh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_Blinkys_Async_Adventure/presentation/03-uh-oh.py -------------------------------------------------------------------------------- /LightningTalk_Blinkys_Async_Adventure/presentation/04-callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_Blinkys_Async_Adventure/presentation/04-callback.py -------------------------------------------------------------------------------- /LightningTalk_Blinkys_Async_Adventure/presentation/05-asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_Blinkys_Async_Adventure/presentation/05-asyncio.py -------------------------------------------------------------------------------- /LightningTalk_Blinkys_Async_Adventure/presentation/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_Blinkys_Async_Adventure/presentation/script -------------------------------------------------------------------------------- /LightningTalk_PythonRC/Ondrej_Sika__PythonRC__slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_PythonRC/Ondrej_Sika__PythonRC__slides.pdf -------------------------------------------------------------------------------- /LightningTalk_PythonRC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/LightningTalk_PythonRC/README.md -------------------------------------------------------------------------------- /Mashing_up_py.test_coverage.py_and_ast.py_to_take_TDD_to_a_new_level/PyconSK testmon.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Mashing_up_py.test_coverage.py_and_ast.py_to_take_TDD_to_a_new_level/PyconSK testmon.pdf -------------------------------------------------------------------------------- /Mashing_up_py.test_coverage.py_and_ast.py_to_take_TDD_to_a_new_level/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Mashing_up_py.test_coverage.py_and_ast.py_to_take_TDD_to_a_new_level/README.md -------------------------------------------------------------------------------- /My_Awesome_PyConSK_Presentation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/My_Awesome_PyConSK_Presentation/LICENSE -------------------------------------------------------------------------------- /My_Awesome_PyConSK_Presentation/MyAwesomePyConSKPresentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/My_Awesome_PyConSK_Presentation/MyAwesomePyConSKPresentation.pdf -------------------------------------------------------------------------------- /My_Awesome_PyConSK_Presentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/My_Awesome_PyConSK_Presentation/README.md -------------------------------------------------------------------------------- /Protocol_Libraries_The_Right_Way/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Protocol_Libraries_The_Right_Way/LICENSE -------------------------------------------------------------------------------- /Protocol_Libraries_The_Right_Way/Protocol Libraries The Right Way.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Protocol_Libraries_The_Right_Way/Protocol Libraries The Right Way.pdf -------------------------------------------------------------------------------- /Protocol_Libraries_The_Right_Way/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Protocol_Libraries_The_Right_Way/README.md -------------------------------------------------------------------------------- /Python_What_You_Didnt_Know/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Python_What_You_Didnt_Know/README.md -------------------------------------------------------------------------------- /Python_a_Malware/README.md: -------------------------------------------------------------------------------- 1 | # Python a malware 2 | ## Peter Matkovski 3 | 4 | -------------------------------------------------------------------------------- /Python_a_Malware/hids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Python_a_Malware/hids.py -------------------------------------------------------------------------------- /Python_a_Malware/matkovski_python_mallware_v03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Python_a_Malware/matkovski_python_mallware_v03.pdf -------------------------------------------------------------------------------- /Python_a_Malware/snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Python_a_Malware/snippets.py -------------------------------------------------------------------------------- /Python_and_DTrace/DTrace - pyconSK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Python_and_DTrace/DTrace - pyconSK.pdf -------------------------------------------------------------------------------- /Python_and_DTrace/README.md: -------------------------------------------------------------------------------- 1 | # Python and DTrace 2 | ## Jesús Cea Avión 3 | 4 | Contact me [@jcea](https://twitter.com/jcea) 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/README.md -------------------------------------------------------------------------------- /Scientific_Computing_with_Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Scientific_Computing_with_Python/README.md -------------------------------------------------------------------------------- /Teach_Learn_Program/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Teach_Learn_Program/README.md -------------------------------------------------------------------------------- /Tips_And_Tricks_For_Using_Functional_Features_Of_Python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Tips_And_Tricks_For_Using_Functional_Features_Of_Python/LICENSE -------------------------------------------------------------------------------- /Tips_And_Tricks_For_Using_Functional_Features_Of_Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Tips_And_Tricks_For_Using_Functional_Features_Of_Python/README.md -------------------------------------------------------------------------------- /Tips_And_Tricks_For_Using_Functional_Features_Of_Python/Tips_And_Tricks_For_Using_Functional_Features_Of_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Tips_And_Tricks_For_Using_Functional_Features_Of_Python/Tips_And_Tricks_For_Using_Functional_Features_Of_Python.pdf -------------------------------------------------------------------------------- /Vagrant_end_of_It_works_on_my_machine_saga/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Vagrant_end_of_It_works_on_my_machine_saga/LICENSE -------------------------------------------------------------------------------- /Vagrant_end_of_It_works_on_my_machine_saga/README.md: -------------------------------------------------------------------------------- 1 | # Vagrant - End of "It works on my machine" saga 2 | ## Věroš Kaplan 3 | 4 | -------------------------------------------------------------------------------- /Vagrant_end_of_It_works_on_my_machine_saga/VAgrant_for_developers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyconsk/2016-slides/HEAD/Vagrant_end_of_It_works_on_my_machine_saga/VAgrant_for_developers.pdf --------------------------------------------------------------------------------