Category Archives: Tips & Tricks
Python Tkinter/TK Library for Quick User Interfaces
Quite a while back, I used to use Tkinter/TK library quite often. Here’s a blog I wrote back in 2012 showcasing a XenServer client that connects to a Citrix XenServer or XenServer pool; the client can also perform management tasks … Continue reading
Writing Useful Batch Scripts for Windows
An often overlooked utility in Windows is the use of batch scripts.A batch script is nothing but a text file with the ‘.bat’ extension containing a series of commands to be executed by the Windows command interpreter. Along with calling … Continue reading
Python – Implementing Caching in Your Applications via Dictionaries
In this blog I demonstrate how you can implement and take advantage of caching in your Python scripts/applications. Caching allows you to complete tasks more rapidly by storing and reusing results for repeated operations using the same criteria. For example, … Continue reading