My summer at Holden Village
I like to use hotkeys for frequent tasks whenever possible. With that in mind, I created a hotkey to toggle applications as fullscreen in OSX. This is an eas...
Background
Background
Are you annoyed by setting up VPNs?
In Java, sometimes it can be useful to have exactly one instance of a class. This is known as a Singleton pattern. A logger, print spooler, or window manager...
I was writing some Python code for a project and needed a class to hold constants. Unfortunately, Python doesn’t natively support constants or static classes...
I was writing a class to construct CURL requests in Python. I decided to experiment with making one of the methods static. To do this, simply place a “@stati...
Functional Programming
A NullPointerException in Java is thrown when an object is expected as a parameter, but null is passed instead. To avoid this when doing String comparisons, ...