The HTML “Marquee” tag
“Marquee” is a somewhat esoteric HTML tag introduced in Internet Explorer 3 that is used to create a scrolling area of text. It has a direction attribute tha...
“Marquee” is a somewhat esoteric HTML tag introduced in Internet Explorer 3 that is used to create a scrolling area of text. It has a direction attribute tha...
The HTTP Referer (originally a misspelling of “referrer”) header field identifies the address of a web page that linked to the resource being requested. It i...
I wrote a quick little shell script this morning using the YAHOO Finance API to show the stock price of my company in the terminal. This works for any compan...
defaults write com.apple.screencapture location ~/Screenshots
I use the Dvorak keyboard layout, which is great but problematic when, for example, I have a coworker who needs to type something on my machine. It got tedio...
Code Introspection is the ability to inspect the code in a system and to see object types. Reflection is the ability to make use of code introspection to mod...
I found a handy git command autocompletion script recently. It does tab-completion of various git commands, as well as branches. It’s very simple to install....
I spent yesterday hiking near Warm Springs with some fellow Jivers. Toward the end of the hike, a herd of wild horses galloped over one of the ridges and ran...
In Java 7, an implicit finally block will automatically close an output stream. Meaning that, instead of all this:
Sometimes, you may find yourself in a position where you need to securely copy some files through an SSH tunnel that spans multiple hops. Never fear, because...