See what we’ve written lately
Search for MP3's, PDF's, or Comic Books using Google
Here are a few handy searches I've collected over the years. Search for Audio MP3s -inurl:(htm|html|php) intitle:"index of" +"last...
jQuery: Ensure that at least one checkbox is selected
Ok so here's the scenario, Suppose you have some sort of form with a couple of checkboxes and you want the user to select at least...
Python: Basic Feedparser example
Download Feedparser [https://pypi.org/project/feedparser/] through Pip. import feedparser d = feedparser.parse("http://feeds.delicious.com/v2/rss/twelvetone") print d['feed'...
Create a tar.gz Archive using macOS Terminal
Tar is short for Tape Archive and is unique in that you can pick between different compressions such as gzip, bzip2 or xz. Archive Example 1 - gzip...
Ruby: Mixing in a Module immediately after an object's Singleton class
There are two ways to insert a Module above the objects singleton class but before the objects Class. # You can open the class definition body of a singleton...