While researching a possible '08 presidential candidate, Mark Warner at OnTheIssues.net, I saw he supported something called "Tek.Xam - a standard test for technology employment." I wondered what this was so I searched and found tekxam.com. I laughed a little as I clicked through each of the …
Read MoreI just wanted to remember this URL, you may find it useful, too: Aptana Studio. (It's still nice and relevant 6 years later in 2012) Update 2025: Aptana Studio has long since been discontinued; link retained for historical reference.
Read MoreFor those of you who loved dack.com's Web Economy Bullshit Generator back in the day, you will be pleased to know that there is a new BS generator for "Web 2.0". Web 2.0..hmm.. this O'reilly-infused buzzword was probably generated over at dack.com now that I think about it. So go on and play. Before you know …
Read MoreMy friend Dave pasted this awesome code to me. It comes from The Daily WTF, a website dedicated to whack coding. 1I.like(bigButts) && I.canLie(false); otherBrothers.canDeny(false); when (girl.walksIn()) { if (girl.hasIttyBittyWaist() && roundThing.getLocation()==your.FACE) { you.getSprung(); } }
Read MoreI recently installed Microsoft CRM Server in a lab environment. The install went smoothly.. every test passed successfully. But when I loaded up the Deployment Manager, I kept getting the error: The specified Microsoft CRM Server is not responding. This might happen if it is currently unavailable or is not a Microsoft …
Read MoreThe US Government, as requested by the MPAA, threatened the Swedish government and forced them to break their own laws by seizing a pirating website. It is now being reported that the Swedish Department of Justice received what amounts to orders from the U.S. Administration, who had in turn received 'requests' from the …
Read MoreThe Macbook keyboard layout maps "Delete" to backspace which effectively makes it impossible to hit Ctrl-Alt-Delete unless you have an external USB keyboard. The Windows Server 2003 Resource Kit comes with a handy tool called remapkey.exe but if you don't want to download it, just save this code to a .reg …
Read MoreI'm surprised this isn't built in.. I had the hardest time finding how to convert ATOM time (found in many RSS feeds) to something human-readable. The cleanest solution I have found thus far is this: 1<?php 2$atomdate = "2006-04-22T10:00:00.000Z"; 3echo date("m.d.y", strtotime($atomdate)); 4?> …
Read MoreI released my first Wordpress plugin last night! It's a script that hides/unhides and slightly formats blocks of code. I use it heavily on this site. Here's an example: a.quickcode { padding-left: 20px; background: url('/wp-includes/images/quickcode.gif') no-repeat; } You can read more about the plugin here: QuickCode. …
Read MoreThe code below was written pretty quickly. It backs up the Wordpress directory, the mySQL table, zips it then emails it to the specified gmail account. Mutt must be installed.. change the variables to suit your environment. 1#!/bin/sh 2theDate=`/bin/date +%Y%m%d` 3 4######### backup DB ########## …
Read More