I tried the Googlerace (linked from Dave Winer) with the search term “lying hypocrite.” You won’t be surprised at who won. What made me laugh was that no other candidate came up with any results for that accusation.
Joe Lieberman won for “bad hair day.”
Posted by AKMA at November 20, 2003 07:26 AM | TrackBackI checked it out...inexplicably, Joe Lieberman also wins the award for "rock music".
Posted by: Will at November 20, 2003 08:12 PMYou can add satan spawn to Lieberman's hits as well. Not the result I was expecting for that search.
Posted by: AmyMo at November 21, 2003 08:15 AMTry "clueless"
Posted by: Thomas at November 22, 2003 02:43 AMLet's take a moment to reexamine that. What we've done here is create two variables. The first variable is in the Heap, and we're storing data in it. That's the obvious one. But the second variable is a pointer to the first one, and it exists on the Stack. This variable is the one that's really called favoriteNumber, and it's the one we're working with. It is important to remember that there are now two parts to our simple variable, one of which exists in each world. This kind of division is common is C, but omnipresent in Cocoa. When you start making objects, Cocoa makes them all in the Heap because the Stack isn't big enough to hold them. In Cocoa, you deal with objects through pointers everywhere and are actually forbidden from dealing with them directly.
Posted by: Randall at January 12, 2004 07:44 PMThe Stack is just what it sounds like: a tower of things that starts at the bottom and builds upward as it goes. In our case, the things in the stack are called "Stack Frames" or just "frames". We start with one stack frame at the very bottom, and we build up from there.
Posted by: Zachary at January 12, 2004 07:44 PMBeing able to understand that basic idea opens up a vast amount of power that can be used and abused, and we're going to look at a few of the better ways to deal with it in this article.
Posted by: Andrew at January 12, 2004 07:45 PM