Python Comparison Operators
All following comparison operators have the standard mathematical interpretation and return a boolean value of True for true, False for false: Comparison operations are supported by all objects! This...
View ArticleWeb frameworks
For most web projects is django or Ruby on Rails the overkill and that is the problem! There are a lot Micro Frameworks available without nasty and unnecessary stuff: for Python...
View ArticleQuickshare methods
Sharing is caring. For this situations there are following command line methods to provide some data to be downloaded from everywhere. On the most common linux systems is python preinstalled or is a...
View ArticleParallel python versions
Some project have strict dependencies, and requires additional python 3.x versions to manage the dependencies.This describes a walkthrough of a build of python 3.5.6 from a source tarball.Just go to...
View ArticlePython virtual environment
Python virtualenv or venv are the short forms of virtual environment. Virtualenv is useful for different projects with unique requirements for each of them, like versions of python or at least...
View ArticleTiny Tiny RSS reading stats
I wrote since 2013 a lot [1][2] about self hosted Tiny Tiny RSS Feed reader and this one is still alive and rung pretty smoothly :) A couple weeks ago a wrote the following dirty-python-script to read...
View ArticleCatch KeyboardInterrupt
CONTROL + C is the magic key combination to stop any execution at the command line. The execution stops immediately and in worst case you see something like ^C as the output of your running command....
View ArticleSMTP debugging for Humans
A lot of different tools are around the internet which can be useful to determine different SMTP troubles. The most of them are very useful but they are all reachable over the internet and don’t...
View Articlepipenv
Virtualenv was for me until 2020 a python-default tool for creating isolated virtual environments for python projects.Virtualenv was always easy to handle and known as a mature pythonic tool under...
View ArticleWatchdog for ARM systems
Watchdog is responsible for monitoring tiny systems like raspberry PI, BeagleBone or any other system. The main functionality of the watchdog is to check, if the system is still responding, lets say,...
View Article