Posts
All the articles I've posted.
-
Hey there
2 min readHey there... Long time no see.
-
What happened to self-hosted blogs?
2 min readPlatforms such as Medium have made the majority of original self-hosted blogs a matter of the past. Personally, for the whole blogging community, I believe that is terrible.
-
Your Own Python Calendar
1 min readThe Python calendar module defines the Calendar class. This is used for various date calculations as well as TextCalendar and HTMLCalendar classes with their local subclasses, used for rendering pre formatted output.
-
Get the Most of Floats
1 min readFloats also have several additional methods useful in various scenarios
-
Format text paragraphs with textwrap
1 min readPython's textwrap module is useful for rearranging text, e.g. wrapping and filling lines.
-
Unicode Character Database at Your Hand
1 min readPython's self explanatory module called unicodedata provides the user with access to the Unicode Character Database and implicitly every character's properties.
-
Functional Particularities of Python
3 min readParadigms of functional programming as applied to Python
-
Debug Bad Commit with Binary Search
2 min readThe git bisect tool helps to identify the commit that introduced a bug.