Blog | Admin | Archives

Gigabit

I returned a 19″ LCD screen to Fry’s today and ended up picking up a gigabit Ethernet PCI card and a gigabit Cardbus card. The PCI card is now in oasis, so now I can load silverfir.net really really really fast. Actually, the reason behind the move is primarily that I moved my 100gb hard drive from an external enclosure connected by firewire (which enclosure I believe was beginning to fail) to an internal slot in oasis. So now the data is always available 24/7 and I don’t have any of the annoying startup issues I as seeing where the drive wouldn’t be recognized for several minutes. And its super duper faaaast.

Fix Yer Firefox

A recent secuirty hole in Firefox allows a malicious website to run arbitrary code on your computer. I recommend immediately visiting this site and installing a very small patch.

Security updates in hours. Just another reason we love Firefox.

Scrim

While playing counterstrike tonight, I got invited to be a fifth for a scrim. I accepted, and though I was outclassed by the rest of my team, I held my own, going 8-8 and 5-5 and figuratively carrying my own weight. I like to think that my willingness to sacrifice myself helped out some too. The guys I was playing with were actually really good – after the first team we were scrimming copped out after losing four straight, we played it easy on the next team until they were hooked, virtually deadlocking the first round 7-8. Next, we were CTs, and turned up the heat a little bit (well, my teammates did at any rate), and won the next 8. It was a lot of fun, and they’d have me back in a similar situation in the future. It was a good challenge too.

Foobar 2000

For music playback, I prefer Foobar 2000, a feature rich, highly customizable, minimalist music player. Eschewing crap like skinnability for useful features like total customization of the local and global shortcuts (ie system wide shortcuts, even when the program is not foreground), Foobar 2000 is the champion’s choice for music playback. It supports all of the major formats out-of-the-box, has a clean and minimalist UI with two main branches (default and columns), and has a nearly limitless plugin architecture. As for myself, I use the default layout with a heavily modified displayname settings that hearken back to my WinAmp 2 days in the format of:
(Composer) Artist - Album - Track - Title
My display string checks for and conditionally displays each of these fields, so in the case it is missing (as in a downloaded piece of music), the display doesn’t look bad, but intelligently shrinks. For example, if the composer is missing or is the same as the artist, it is omitted along with its parentheses. So instead of looking like
() Screaming Trees - Dust - 01 - Halo of Ashes
It is much more pleasant and looks like:
Screaming Trees - Dust - 01 - Halo of Ashes

Also built into Foobar 2000 are an intuitive single-file ID3 tag editor and a powerful script-based “Masstagger,” a ridiculously useful tool for adding ID3 tags from filenames, changing filenames based on ID3 tags, and other such fancy things. But the kicker comes back to the fact that every command available can have a shortcut. Because I am a WinAmp 2 junkie (may its soul rest in peace), I use the keys z, x, c, and v to control the playback. Z goes back, X starts and pauses the player, C moves forward, and V stops playback. Also like Winamp, I use J to search for a specific song in the playlist.

Since my windows key is so underutilized, I made these same keys global shortcuts, when pressed n combination with my windows keys. So, while doing anything, from word processing to blasting terrorists with an Colt in Counter-Strike, I can start, stop, and navigate through my music without leaving the foreground window. Finally, I implemented the space bar as “jump to random file in current playlist” and made another global shortcut for Win+space. The result is basically total control over all of my music listening without ever interfacing the always-slower GUI.

And, to bring this post full circle: The UI is a simple rectangle. No rounded-corner nonsense; no bright colors. Just a utility that does exactly what it is supposed to, the way it should be done: unobtrusively, and exactly how I tell it to. I guess this is why “I am Debian.”

I Am .mpg

You are .mpg You live life like it was a movie. Constantly in motion, you bring pleasure to many, but are often hidden away.

Along a similar vein… I think this one is a little more accurate than I might like, which is strange I think for a personality test which is mostly a gimmick. You too can discover your file extenstion.

I Am Debian Linux

You are Debian Linux. People have difficulty getting to know you. Once you finally open your shell they're apt to love you.

Via Dan and via Jack, I came across this quiz which tells you what OS your personality matches. Honestly, I’m quite happy being matched to Debian. Go find out for yourself what Operating System you are.

Seamless PHP 5

Unfortunately as I learned about a week ago, PHP 4 and PHP 5 don’t happily co-habitate. However, the switch between the two is about as seemless as possible. Compiling PHP 5 with the same config string as I used for PHP 4, I was able to switch over by simply changing a comment in my httpd.conf file from:

LoadModule php4_module modules/libphp4.so
# LoadModule php5_module modules/libphp5.so

to

#LoadModule php4_module modules/libphp4.so
LoadModule php5_module modules/libphp5.so

Linux isn’t always great, but sometimes it sure rocks my socks.