HOME | DD

Xentalion — Lain Wallpaper

Published: 2007-08-18 20:29:37 +0000 UTC; Views: 6888; Favourites: 46; Downloads: 267
Redirect to original
Description This is a wallpaper I made, based off of a picture of Lain
The picture was created by Yoshitoshi ABe, who did the character designs and the Manga for Serial Experiments Lain.
Related content
Comments: 9

Dr-X-329 [2007-08-19 12:18:17 +0000 UTC]

Nice! But what does the program/script on the left do? (Sorry, I am such a n00b when it comes to programming.)

👍: 0 ⏩: 1

Xentalion In reply to Dr-X-329 [2007-09-05 00:06:34 +0000 UTC]

int key; make a number variable, call it key.

printf("Beginning system reset.....\n"); will print on the screen the words beginning system reset, followed by a newline (which starts a new line)

printf("ALL RESET?\n"); prints the words ALL RESET and another new line.

get_key(key); is a made up function that would take a keyboard scancode and convert it into an number, which it would store in the variable key.

if (key == ENTER_KEY) would check to see if the number key is equal to the number ENTER_KEY (which would be something like 32.) and activate the function in below it.

int i; make another number, call it i.

for (i =0; i < NUM_OF_PEOPLE; i ++) says to set i to equal 0, then while i is less then the varible NUM_OF_PEOPLE (which would be the number of people in the world) to run the funtion below it and then (i++) which adds one to the var i.

rewrite(memory(i)); would then run a function call rewite which takes the memory of person i and rewrites it.

or something like that

👍: 0 ⏩: 1

Dr-X-329 In reply to Xentalion [2007-09-05 05:00:53 +0000 UTC]

Thanks! Too bad memories can't be rewritten that easily.

👍: 0 ⏩: 1

Xentalion In reply to Dr-X-329 [2007-09-14 16:41:15 +0000 UTC]

Agreed.

👍: 0 ⏩: 1

Dr-X-329 In reply to Xentalion [2007-09-14 17:31:31 +0000 UTC]

The reality of our reality.

👍: 0 ⏩: 0

GNUlancer [2007-08-19 09:11:45 +0000 UTC]

Bhah, made me remember of the creepy Silent Hill game

👍: 0 ⏩: 1

Xentalion In reply to GNUlancer [2007-09-04 23:58:22 +0000 UTC]

It's a creepy anime series too, but it's also one of the best ever.

👍: 0 ⏩: 0

DiegoSilvaPires [2007-08-18 23:08:49 +0000 UTC]

Nice function XD

👍: 0 ⏩: 1

Xentalion In reply to DiegoSilvaPires [2007-09-04 23:57:55 +0000 UTC]

Thank you I wrote it myself, it's supposed to be an way to explain what happens in the anime.

👍: 0 ⏩: 0