You are looking at posts that were written in the month of October in the year 2006.
Posted on October 21st, 2006 by Chris.
Categories: Business/The Software Industry, Chris, General/Misc., Thinking Outside the WTF.
Have a marketing WTF? Tell us about it! outsidethebox@strafenet.com
On a job description for an analyst position:
We value assertive individuals who “think outside the box.”
The fascinating thing about the phrase thinking outside the box is how inside the box it’s managed to become. When did the phrase thinking outside the box become so cliche that it actually became its own antithesis?

Posted on October 19th, 2006 by Chris.
Categories: Chris, General/Misc., Product Design, Programming.
Since Gas is writing about UI, I’ll do programming for now:
Today’s example is about Perl, and a curious example about hashtables. A hashtable, as you may know, maps a key to a value.
%names = ("smith" => "john", "krall" => "diana");
foreach $lastname (keys %names)
{
print "$lastname, $names{$lastname}\n";
}
In essence, this hashtable allows you to take a lastname and find a firstname with it. If we look up “smith” in %names, we get “john”; if we look up “krall,” we get “diana”.
The second part of the code–the foreach, takes each key in %names and prints it out. So the output is as follows (the order may be switched):
smith, john
krall, diana
Perl, of course, is not without quirks that make this seemingly simple behavior complicated.
Quick quiz: What does this code do?
%hash_to_the_l = ( "turner",
"baggage" => "smashing",
"cheeseball" => 43, "ducks");
foreach $key (keys %hash_to_the_l)
{
print"key $key = $hash_to_the_l{$key}\n";
}
Answer:
Posted on October 17th, 2006 by Tim.
Categories: Politics.
Link: http://news.com.com/Apple+loads+Windows+virus+on+i…
Of course! This was obviously Microsoft’s fault! SHAME ON YOU MICROSOFT!
Posted on October 10th, 2006 by Tim.
Categories: Tim.
The newest addition to my list of RSS subscription is written by the son of the president of Nigeria. That sounds like a joke, but it isn’t. Apparently, this guy was an intern about 5 years ago, and is now an FTE in the Windows Live group. I know he’s for real because he talked about the intern barbeque event at BillG’s house, which only an intern would know/care about. He has an absolutely amazing blog entry written yesterday about a meeting he had with Bill Gates recently. Read it here, it’s worth the time.