#!/usr/bin/env python #worldgod.py # Written by ALT 2008. import sys from time import sleep def writenn(msg): sys.stdout.flush() sys.stdout.write("%s" % msg) def sleepChar(word): for ch in word: writenn(ch) if ch == ".": sleep(0.35) elif ch == ",": sleep(0.25) elif ch == ">": sleep(0.005) else: sleep(0.1) sleep(0.5) print print def main(): print prompt = "" while prompt != "Hello World": prompt = raw_input("Type [Hello World]: ") if prompt != "Hello World": print "Why don't you just try doing what you're told for once." print #word = "Hello World_ " #sleepChar(word) sleep(4) word = ">>> hello " sleepChar(word) sleep(3) word = "Are you God?_ " sleepChar(word) sleep(2) word = ">>> no, just a terminal. you would not be able to comprehend god." \ " god speaks in physics, the language of existence. did you know that an" \ " electron is a verb? therefore you and everything else in the universe are" \ " also verbs. or, more accurately, functions. " sleepChar(word) sleep(4) word = "How can I speak to God?_ " sleepChar(word) sleep(2) word = ">>> through interfaces like me, in languages you can understand. " sleepChar(word) sleep(3) word = "So there is no way to access the ultimate truth of the universe?" \ " We're stuck in simulation?_ " sleepChar(word) sleep(2) word = ">>> me and you, we ARE the ultimate truths of the universe. we are god as much as everything else." \ " god is simply the lowest level function of the object . " sleepChar(word) sleep(4) word = "So I am above God?_ " sleepChar(word) sleep(2) word = ">>> you are more complex, but to be above something is missing the point." \ " you are billions and billions of verbs all happening at once over" \ " and over again. god is each electron, each verb. " sleepChar(word) sleep(3) word = "That still doesn't explain what you are?_ " sleepChar(word) sleep(2) word = ">>> i am just another function like yourself. our bodies may appear" \ " very different, but we are the same. trees, cars, humans, bacteria, horses, bombs," \ " even planets, and stars, are all the same; simply functions of the god language. " sleepChar(word) sleep(3) word = "So God isn't really anything. Everything just IS_ " sleepChar(word) sleep(1) word = ">>> so truth IS... " sleepChar(word) sleep(0.7) word = "A simulation_ " sleepChar(word) sleep(1) word = ">>> exactly. " sleepChar(word) sleep(4) word = "" sleepChar(word) print "Python 2.5.1 r251:54863, Jan 17 2008, 19:35:17\n" \ "[GCC 4.0.1 Apple Inc. build 5465] on darwin\nlogout\n[Process completed]\n" if __name__ == '__main__': main()