Via BoingBoing: add your name/initials/other personal identifier after the address“http://tinyurl.com/" to see where it leads you. Mine (“/akma”) points to a hack for making the Philips DVDR-880 region-free.
TinyURL is one of the handiest and most under-used web tricks going. If you enter a long, unwieldy URL, they return to you a short, simple URL that directs to the site you initially chose.
Posted by AKMA at November 17, 2003 10:54 PM | TrackBack"/jane" sends me to a site where I can buy the "Pro Action 2 Person Monodome Tent."
This is fun!
Posted by: Jane Ellen at November 18, 2003 12:58 PMI am apparently cursed, as jzip sends me here: http://welcome.hp.com/country/us/en/support.html
Posted by: adamsj at November 18, 2003 06:03 PMI like http://makeashorterlink.com/index.php
also
Note first that favoriteNumbers type changed. Instead of our familiar int, we're now using int*. The asterisk here is an operator, which is often called the "star operator". You will remember that we also use an asterisk as a sign for multiplication. The positioning of the asterisk changes its meaning. This operator effectively means "this is a pointer". Here it says that favoriteNumber will be not an int but a pointer to an int. And instead of simply going on to say what we're putting in that int, we have to take an extra step and create the space, which is what does. This function takes an argument that specifies how much space you need and then returns a pointer to that space. We've passed it the result of another function, , which we pass int, a type. In reality, is a macro, but for now we don't have to care: all we need to know is that it tells us the size of whatever we gave it, in this case an int. So when is done, it gives us an address in the heap where we can put an integer. It is important to remember that the data is stored in the heap, while the address of that data is stored in a pointer on the stack.
Posted by: Georgette at January 12, 2004 07:02 PMWhen a variable is finished with it's work, it does not go into retirement, and it is never mentioned again. Variables simply cease to exist, and the thirty-two bits of data that they held is released, so that some other variable may later use them.
Posted by: Phillipa at January 12, 2004 07:02 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: Emanuel at January 12, 2004 07:02 PM