From Kuro5hin (who says geeks are apolitical?):
Ari Fleischer, White House spokesman, was laughed out of the daily briefing on Feb 25th. Members of the foreign press asked about US vote buying for its resolution before the UN Security Council on Iraq. Ari reacted in a offended manner, eliciting loud laughter from the entire press corps. Ari gets a somewhat miffed look on his face and makes a quick exit to continuing laughter and the press making snide remarks amongst themselves.
Here's the video in downloadable RealMedia.
Posted by Darren Wershler-Henry at February 27, 2003 10:40 PMYou guys are pussy's get a real job.
Posted by: A real man on July 14, 2003 04:07 PMThe rest of our conversion follows a similar vein. Instead of going through line by line, let's just compare end results: when the transition is complete, the code that used to read:
Posted by: Blanche on January 18, 2004 11:21 PMSince the Heap has no definite rules as to where it will create space for you, there must be some way of figuring out where your new space is. And the answer is, simply enough, addressing. When you create new space in the heap to hold your data, you get back an address that tells you where your new space is, so your bits can move in. This address is called a Pointer, and it's really just a hexadecimal number that points to a location in the heap. Since it's really just a number, it can be stored quite nicely into a variable.
Posted by: Matthew on January 18, 2004 11:21 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: Edmund on January 18, 2004 11:22 PMThis is another function provided for dealing with the heap. After you've created some space in the Heap, it's yours until you let go of it. When your program is done using it, you have to explicitly tell the computer that you don't need it anymore or the computer will save it for your future use (or until your program quits, when it knows you won't be needing the memory anymore). The call to simply tells the computer that you had this space, but you're done and the memory can be freed for use by something else later on.
Posted by: Sarah on January 18, 2004 11:23 PMOur next line looks familiar, except it starts with an asterisk. Again, we're using the star operator, and noting that this variable we're working with is a pointer. If we didn't, the computer would try to put the results of the right hand side of this statement (which evaluates to 6) into the pointer, overriding the value we need in the pointer, which is an address. This way, the computer knows to put the data not in the pointer, but into the place the pointer points to, which is in the Heap. So after this line, our int is living happily in the Heap, storing a value of 6, and our pointer tells us where that data is living.
Posted by: Roman on January 18, 2004 11:23 PM