The Dangers Of Curiosity

I knew it was wax. It looked like wax. It felt like wax. I said, "It's wax." I tasted it anyway. It was wax.


Elliot Temple | Permalink | Message (1)

i don't like to eat when i'm full

who came up with the idea that we need to force young children to eat more? how can something so idiotic be the cause of constant struggles and strife in families? sheesh


Elliot Temple | Permalink | Messages (8)

i wrote a story; be impressed

once upon a time there was a physicist and a lion.

the lion said to the physicist: I'm going to eat you.
the physicist said: Have you ever heard a fable about fishing?
the lion said no.
the physicist said: i wish i hadn't been so focussed on physics. i don't know it either.

then the lion ate the physicist.


Elliot Temple | Permalink | Message (1)

amusing is one of my favorite words

off west wing (which is good).

so this guy lives by the river. and he's highly religious. anyway, he here's a radio report that the river is gonna flood, so he should leave. but he says he's a religious man, who loves God, and prays, and stuffz, so God will save him, and he stays.

so the river starts flooding. the town is being filled with water. and this boat comes by, and they guys yell at him to get in the boat, and they will rescue him from the flood. but he says no, he has faith in God, so he doesn't need their help. and he stays.

later he's on the roof of his house, cause the water is that high, and a helicopter comes, and throws him a rope ladder, and yell at him to climb it. but he says no he is a religious man, who does as God asks him, loves God, and prays, so God will save him, and he stays.

so then he drowns and goes to heaven. and at the gates, he demands an audience with God. and he asks God, "I'm a good man, I did all the things you asked of men, I loved you and prayed to you, why didn't you save me?"

God says, "I sent you a radio report, a boat, and a helicopter. What the fuck are you doing here?"


Elliot Temple | Permalink | Messages (0)

Elliot Temple | Permalink | Messages (0)

i'm amused

For myself, calling someone irrational is irrational.

If i call you irrational, would you say we're both irrational, or just me?


Elliot Temple | Permalink | Message (1)

Elliot Temple | Permalink | Messages (0)

programmers only

Here's an example of terrible structure, but fine denotation:

global int i, j;
for(j=0; j < 10; j++)
{
    i = j;
    for(j=0; < 10; j++)
        print( my_array[i][j] )
    j = i;
}

Elliot Temple | Permalink | Message (1)

hex editors

So i needed a hex editor. (for war3 modding stuffz) (modding is modifying). but i didn't know that. see, someone had the bright idea of naming it a hex editor. hex means six. hex editors, i knew, had something to do with hexidecimal (base 16). i wanted to edit raw data. ya know, 1s and 0s. aka binary, not hex.

once you use one, the name does make sense. 1s and 0s are generally arranged into blocks of 8 with 256 possible values. you can write 256 possible values in 2 digits of hexidecimal. so displaying binary files in hex makes sense (they show the binary versions too) (and the ASCII aka text version too) (and various other versions like what integer the selected bit would be, if it was representing an integer).

anyway, hex editors are cool. cause now i can, for example, open a war3map.w3e file and find the integer near the start saying how many tiles the map has (which is written as a string of 32 1s and 0s), and change it to 16 (well, the 1s and 0s that mean 16). this could not be done with a text editor. this means i can do something really important to my map without using someone else's buggy program that i'm very afraid might break other stuff.

oh hey, wanna see specs on war3 files? no? well, here they are.

PS there's quite a lack of ez to find hex tutorials on google. feh


Elliot Temple | Permalink | Messages (0)

good info (amateur level)

link

have i ever mentioned my knowledge of programming has random gaps that are sometimes a bitch to fill in? most of the day stuff that looked like 0x0400 or 0xA447F was being really confusing. wtf is that!? yes i can see the second half looks like hex, but it still appears kinda random. well turns out 0x is a special code in C that means the numbers after it are in hexidecimal. that's it. so those are really saying HEX0040 and HEXA447F. oh. and now it makes perfect sense.


Elliot Temple | Permalink | Messages (0)