“Die Sprache verkleidet den Gedanken.”
Language disguises thought.
Ludwig Wittgenstein, Tractatus Logico-philosophicus 4.002
Trevor (of
) thinks this goes well with
“Voice is truth’s body.
Maybe.” David Weinberger
(Not: “maybe David Weinberger” but: “Maybe.” David Weinberger)
I don’t know about pairing the two, but I like verkleidet, “disguises,” for language’s relation to thought. . . .
Posted by AKMA at June 25, 2003 08:48 PM | TrackBackEs tut mir kleid!
Posted by: tom m at June 26, 2003 07:24 AMWhen the machine compiles your code, however, it does a little bit of translation. At run time, the computer sees nothing but 1s and 0s, which is all the computer ever sees: a continuous string of binary numbers that it can interpret in various ways.
Posted by: Thadeus at January 13, 2004 12:04 PMNote 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: Botolph at January 13, 2004 12:04 PMWhen 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: Adlard at January 13, 2004 12:05 PM