diff --git a/content/links.md b/content/links.md deleted file mode 100644 index c3bc77d..0000000 --- a/content/links.md +++ /dev/null @@ -1,18 +0,0 @@ -+++ -title = "Links" -type = "links" -+++ - - -**Python** - -- [Raymond Hettinger, Keynote on Concurrency, PyBay 2017](https://www.youtube.com/watch?v=9zinZmE3Ogk) -- [Get to grips with asyncio in Python 3 - Robert Smallshire](https://www.youtube.com/watch?v=M-UcUs7IMIM) -- [Python Design Patterns](https://python-patterns.guide/) -- [Python 3 Patterns, Recipes and Idioms](https://python-3-patterns-idioms-test.readthedocs.io/en/latest/index.html) -- [Anthony Shaw: Restarting Pyjion, a general purpose JIT for Python- is it worth it?, Pycon 2021](https://www.youtube.com/watch?v=YFeUUdKBrJ8) - -**General** - -- [GIT tip : Keep your branch clean with fixup and autosquash](http://fle.github.io/git-tip-keep-your-branch-clean-with-fixup-and-autosquash.html) -- [Running Cron in Docker](https://blog.thesparktree.com/cron-in-docker) diff --git a/content/projects.md b/content/projects.md new file mode 100644 index 0000000..b4f09ac --- /dev/null +++ b/content/projects.md @@ -0,0 +1,13 @@ ++++ +title = "Projects" +type = "projects" ++++ + + +#### Sets game written in Python using pyglet library + +Implementation of Set game in Python using pyglet library. +Has normal and quickstart mode and ability to display hints like showing two out of three cards from random set. +Uses Finite State Machine for three game states (menu, game, end) and transitions between them. Has full mouse support and partial keyboard. + +* [Github - Sets Game](https://github.com/pbedn/sets-game)