gusmueller
Tuesday, September 24th, 2002

While waiting for apache to compile, I added another quick "java bit".

How to test if two strings are equal to each other. This one sounds like a nobrainer- but there are actually a few tricks to take note of in here.

comments (0)   # posted 3:56 pm (uct-6)


One of the great discoveries I found from the last trip I took was that Strawberry Banana Sobe and Hershey's chocolate go great together.

mmmmmm.

And that's why I'm drinking and eating the two together right now.

comments (0)   # posted 2:18 pm (uct-6)


BYTE: Flirting With Mac OS X

'Turns out nowadays you don't need to use that ugly W word to have a decent desktop and office environment. Enter Mac OS X (and people do insist you pronounce the X as "ten," not as "eks"). Many see it has the cool new kid on the UNIX block, while others feel that their Linux machines are in some way threatened by the new Mac OS.'

comments (0)   # posted 9:55 am (uct-6)


Bitchen- Connecting Perl and Cocoa code


use Foundation;

$s1 = NSString->stringWithCString_("Hello ");
$s2 = NSString->alloc()->initWithCString_("World");
$s3 = $s1->stringByAppendingString_($s2);
printf "%s\n", $s3->cString();

comments (0)   # posted 9:06 am (uct-6)