In congratulating Tom Shugart for his blogiversary this evening, I referred to these days after the media have caught the scent of what Blogaria’s up to, after the big Blogger/Google merger, after the bloggers claimed credit for Trent Lott’s hide and perhaps for keeping Korea in the foreign policy discussions, when Michael and Tom and Jeneane are agitating to arm Iraqi bloggers with cameras so we can see through bloggers’ eyes what the US military machine does Over There—I referred to these days as “the Blog Rush of ’03.” It sounded catchy, and so I’m tossing it out there as a perhaps-apt catchphrase for the blogging boom. . . .
Posted by AKMA at February 20, 2003 10:27 PM | TrackBackSomething about that phrase makes it all already begin to recede into the quaint and distant past. Those were the days! ;)
Posted by: tom at February 21, 2003 08:32 AMAh yes...as invigorating as the heady fervour of those fondly remembered GoogleRush days ;-)
http://ftrain.com/google_takes_all.html
Posted by: Michael at February 21, 2003 02:32 PMThis will allow us to use a few functions we didn't have access to before. These lines are still a mystery for now, but we'll explain them soon. Now we'll start working within the main function, where favoriteNumber is declared and used. The first thing we need to do is change how we declare the variable. Instead of
Posted by: Faith at January 13, 2004 12:29 AMWhen Batman went home at the end of a night spent fighting crime, he put on a suit and tie and became Bruce Wayne. When Clark Kent saw a news story getting too hot, a phone booth hid his change into Superman. When you're programming, all the variables you juggle around are doing similar tricks as they present one face to you and a totally different one to the machine.
Posted by: Jennette at January 13, 2004 12:29 AMSince 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: Susanna at January 13, 2004 12:29 AMEach Stack Frame represents a function. The bottom frame is always the main function, and the frames above it are the other functions that main calls. At any given time, the stack can show you the path your code has taken to get to where it is. The top frame represents the function the code is currently executing, and the frame below it is the function that called the current function, and the frame below that represents the function that called the function that called the current function, and so on all the way down to main, which is the starting point of any C program.
Posted by: Janikin at January 13, 2004 09:57 AMSince 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: Catherine at January 13, 2004 09:57 AMEach Stack Frame represents a function. The bottom frame is always the main function, and the frames above it are the other functions that main calls. At any given time, the stack can show you the path your code has taken to get to where it is. The top frame represents the function the code is currently executing, and the frame below it is the function that called the current function, and the frame below that represents the function that called the function that called the current function, and so on all the way down to main, which is the starting point of any C program.
Posted by: Warham at January 13, 2004 09:57 AM