Finite state machines turn up everywhere: protocol implementations, hardware controllers, UI flows, parsers. Drawing them well is useful but tedious …
read moreOther articles
WaveDrom Timing Diagrams in Pelican with Claude Code
Pelican New Post script
In the aim of keeping the navigation of the Blog posts clean, I have limited my self to a few …
read moreModify Pelican theme
First figure out which theme you are using. List installed themes via:
% pelican-themes -l simple notmyideapelicanconf.py does not …
read morePelican Site add Tags and Categories list
I think it improves website usability when they are navigatable via the URL.
For example when viewing Posts under the …
read morePythonista pip install pelican
On the journey towards publish static site generator blog posts from iPadOS, my next step after installing stash on pythonista …
read morePython read a CSV file
Python example for reading data from a csv file.
read moreimport csv with open(data.csv', newline='') as csvfile: spamreader = csv …