How to not leap in time using Python
If your application needs to measure elapsed time, you need a timer that will give the right answer even if the user changes the time on the system clock... (more…)
Read more »
As programmers, we can create tools to make programming easier. Often this means building something that can be easily invoked on the command line, whether it is a bash script or a CLI app with a full UI. This post focuses on optimizing the latter option. Read more