Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon.

Pages: 1-4041-8081-120121-160161-200201-240241-

Python. So simple iit bores me.

Name: PyTard 2011-04-25 4:29

so you jew fag niggers called me a nigger fag jew and stuff for liking python last week some time, but I'm back to defend my position on this amazing programming language. Less than an hour ago, my TA emailed me a project, which, despite being High, Drunk, crashing off caffeine, and forgetting to take my medicine today I was able to write up in less than 15 min. 
FUCK YEAH PYTHON?
FUCK YEAH PYTHON!

Name: Anonymous 2011-04-25 4:41

THE FORCED INDENTATION OF CODE is actually a great thing.

Name: Anonymous 2011-04-25 6:41

>>1
Please try to ignore troll posts. If your shit works, and it happens to work well, then take that as a win and let the haters do their thing.

Name: Anonymous 2011-04-25 6:46

Python is an inferior language unworthy of existence, like nigger or jew. LISP is the only aryan language.

Name: Anonymous 2011-04-25 6:58

>>3
google-cocksucking
as a win
oh lol

Name: Anonymous 2011-04-25 7:25

>>4
Interesting point of view. Now go suck some dick, fag.

>>2
I agree

And yeah, Python kicks ass!

Name: Anonymous 2011-04-25 7:36

>>6
The only ass python kicks is yours, google slave. Go suck some Sergey Brin's jewish dick, moron.

Name: Anonymous 2011-04-25 7:37

>>6
See >>4.

>>4
It's Lisp, not LISP, you faggot.

Name: Anonymous 2011-04-25 7:39

>>8
The name LISP derives from "LISt Processing".

Name: Anonymous 2011-04-25 7:42

>>9
It's not the 1960 anymore.

Name: Anonymous 2011-04-25 7:44

>>10
So?

Name: Anonymous 2011-04-25 7:46

>>1
it is the same with perl5. so what?

Name: Anonymous 2011-04-25 7:47

>>11
We have low-case letters now.

Name: Anonymous 2011-04-25 7:51

>>13
"We"? Are you a voted-for representative of some political party?

Name: Anonymous 2011-04-25 8:23

>>14
define "\""
define "We"
define "\""
define "?"
define "Are"
define "you"
define "a"
define "voted"
unexpected token "-" after "voted"
define "-"
unexpected identifier "for" after "-"
define "for"
define "representative"
define "of"
define "some"
define "political"
define "party"
define "?"

Name: Anonymous 2011-04-25 11:13

>>15

DEFINE MY ANUS

Name: Anonymous 2011-04-25 12:06

How can you hate on python? It's literally the best scripting language I've ever used. String manipulation is a breeze. Extending C++ applications with python script is a breeze.

Name: Anonymous 2011-04-25 23:01

Name: Anonymous 2011-04-25 23:04

>>17
YHBT, friend. Just remember that for next time.

Name: Anonymous 2011-04-25 23:07

>>17
this

there is no reason python shouldn't be the one language used to extend applications

none.

zero.

Name: Suck Less, Fuck More 2011-04-25 23:33

Lisp:

grammar =: '{sentence    -> (noun_phrase verb_phrase)
            ;noun_phrase -> (Article Noun)
            ;verb_phrase -> (Verb noun_phrase)
            ;Article     -> the a
            ;Noun        -> man ball woman table
            ;Verb        -> hit took saw liked}

generate [@p]        -> mapc generate p
        ;p:!rewrites -> generate p.rewrites.rand
        ;p           -> [p]

rewrites category -> grammar.{[@_ [!category '-> @rhs] @_]->rhs}



Python:

from random import choice

def Dict(**args): return args

grammar = Dict(
        S = [['NP','VP']],
        NP = [['Art', 'N']],
        VP = [['V', 'NP']],
        Art = ['the', 'a'],
        N = ['man', 'ball', 'woman', 'table'],
        V = ['hit', 'took', 'saw', 'liked']
        )

def generate(phrase):
    "Generate a random sentence or phrase"
    if isinstance(phrase, list):
        return mappend(generate, phrase)
    elif phrase in grammar:
        return generate(choice(grammar[phrase]))
    else: return [phrase]
   
def generate_tree(phrase):
    """Generate a random sentence or phrase,
     with a complete parse tree."""
    if isinstance(phrase, list):
        return map(generate_tree, phrase)
    elif phrase in grammar:
        return [phrase] + generate_tree(choice(grammar[phrase]))
    else: return [phrase]

def mappend(fn, list):
    "Append the results of calling fn on each element of list."
    return reduce(lambda x,y: x+y, map(fn, list))

>>> generate('S')
['the', 'man', 'saw', 'the', 'table']

>>> ' '.join(generate('S'))
'the man saw the table'

Name: Anonymous 2011-04-25 23:35

Python: [a[i]+a[i+1] for i in range(len(a)-1)]
Lisp: map ?+?? a a.ltl

"readable" Python:
def foo(a, (b, c), (d, e)): print "%s %s %s %s" % (a, b, (c, d), e)

"obfuscated" Lisp (DSL):
foo [a [b c] [d e]] -> say "$a $b [$c $d] $e"

Name: Anonymous 2011-04-25 23:37


a = 3

def foo():
    a = 2

foo()    # foo should set the outer a to 2
print a  # so this should print '2'

This prints 3, due to a naive mistake that Guido made early on, one that has permanent and far-reaching implications to the usability of the language. For what it's worth, Larry Wall made the same mistake with Perl, Matz made it with Ruby, and Strachan appears to be making it all over again in Groovy. It's a common blunder.

Name: Anonymous 2011-04-25 23:47

>>23
OOPs

Name: Anonymous 2011-04-26 0:36

>>23
you mean i should EXPLICITLY declare locals?!

fuck that!

Name: Anonymous 2011-04-26 1:40

>>25
you better be sarcastic, nigger

Name: Anonymous 2011-04-26 1:49

>>25
Enjoy your globals()['a'] = 2.

Name: Anonymous 2011-04-26 1:54

Guido van Faggot couldn't just introduce a fucking var keyword. Three tiny letters, all it takes to introduce proper lexical scoping. Fucking shit, seeing stupidity like this makes me angry as fuck. I'm going to finish half a bottle of vodka.

Name: Anonymous 2011-04-26 2:04

Three tiny letters, all it takes to introduce proper lexical scoping.
He could have used another symbol (like abc:123) for declaring local vars. This would have also insured that every symbol is bound.

Name: Anonymous 2011-04-26 2:16

The main points of python criticism:
- FIOC.
- OOP: fucking classes (hate them).
- has a community of fags (also seen a few py-furries)
- supported by a jewish entrepreneur Sergey Brin (jews are evil, everything they support is automatically evil)
- poorly designed

Name: Anonymous 2011-04-26 2:21

try:
    functools.localvar("x", 10)
except LocalBindingError:
    print("Guido says: 'no locals for you!'")

Name: Anonymous 2011-04-26 2:23

>>30
- has a community of fags (also seen a few py-furries)
- supported by a jewish entrepreneur Sergey Brin (jews are evil, everything they support is automatically evil)

Just as I was starting to take you seriously.

Name: Anonymous 2011-04-26 2:38

>>27

global a
a = 3

Name: Anonymous 2011-04-26 3:06

>>32
But jews are evil (objectivists and worshippers of infinity). If they support something, they have some evil intentions of making honest people slaves to jewish ideals.

For example, jews support Holocaust, resulting in Germany annually paying milliards of euros to entrepreneurs of holocaust. These euros represent work, meaning that people of germany now slaves to jews.

So its better to hinder any jewish startups, including this Python.

Name: Anonymous 2011-04-26 3:08

And if Python wins, programmers will become slaves to Google (a corporation run by jews).

Name: Anonymous 2011-04-26 3:10

>>34-35
That's it, I'm not replying to you any more. A quick search revealed that you are quite the stupid troll.

Name: Anonymous 2011-04-26 3:33

>>36
Because I'm right and you have nothing to reply.

Name: Anonymous 2011-04-26 3:35

http://en.wikipedia.org/wiki/Reparations_Agreement_between_Israel_and_West_Germany

If you want to join germany and give all your resources to jews, then, please, support Google and Python.

Name: Anonymous 2011-04-26 3:50

>>36
This idiot's logic makes massive jumps in conclusions (one of the many forms of poor logic used by her as only a woman could be so stupid); she does not start with reasonable premises that leads to logical conclusion, only asserting credulous links as the basis of her arguments.

Name: Anonymous 2011-04-26 4:00

>>39
define "logic"
define "reasonable"
define "leads"
define "conclusion"

Stop using buzzwords, jew.

Name: Anonymous 2011-04-26 4:03

Name: Anonymous 2011-04-26 4:14

>>41
Why is reasoning with the fact that all women are dumb whores called sexist?  Why is there even a word for it?
It's like saying that declaring that black color is darker than white is colorism!!

Name: Anonymous 2011-04-26 4:50

>>42
If by "dumb whores" you mean honest, then, yes, most women are more honest than you, jews.

Name: Anonymous 2011-04-26 7:08

>>43
Typical jewish word-juggling.

Name: Anonymous 2011-04-26 8:01

Name: Anonymous 2011-04-26 8:05

Name: Anonymous 2011-04-26 8:12

Name: Anonymous 2011-04-26 8:18

Name: Anonymous 2011-04-26 8:23

Name: Anonymous 2011-04-26 8:28

Name: Anonymous 2011-04-26 8:34

Name: Anonymous 2011-04-26 8:39

Name: Anonymous 2011-04-26 8:44

Name: Anonymous 2011-04-26 8:49

Name: Anonymous 2011-04-26 8:54

Name: Anonymous 2011-04-26 9:00

Name: Anonymous 2011-04-26 9:05

Name: Anonymous 2011-04-26 9:10

Name: Anonymous 2011-04-26 9:15

Name: Anonymous 2011-04-26 9:20

Name: Anonymous 2011-04-26 9:26

Name: Anonymous 2011-04-26 9:31

Name: Anonymous 2011-04-26 9:36

Name: Anonymous 2011-04-26 9:41

Name: Anonymous 2011-04-26 9:47

Name: Anonymous 2011-04-26 9:52

Name: Anonymous 2011-04-26 9:57

Name: Anonymous 2011-04-26 10:03

Name: Anonymous 2011-04-26 10:08

Name: Anonymous 2011-04-26 10:13

Name: Anonymous 2011-04-26 10:26

Name: Anonymous 2011-04-26 10:31

Name: Anonymous 2011-04-26 10:35

Name: Anonymous 2011-04-26 10:40

Name: Anonymous 2011-04-26 10:45

Name: Anonymous 2011-04-26 10:49

Name: Anonymous 2011-04-26 10:54

Name: Anonymous 2011-04-26 10:59

Name: Anonymous 2011-04-26 11:03

Name: Anonymous 2011-04-26 11:08

Name: Anonymous 2011-04-26 11:13

Name: Anonymous 2011-04-26 11:18

Name: Anonymous 2011-04-26 11:22

Name: Anonymous 2011-04-26 11:27

Name: Anonymous 2011-04-26 11:32

Name: Anonymous 2011-04-26 11:36

Name: Anonymous 2011-04-26 11:41

Name: Anonymous 2011-04-26 11:46

Name: Anonymous 2011-04-26 11:50

Name: Anonymous 2011-04-26 11:55

Name: Anonymous 2011-04-26 12:00

Name: Anonymous 2011-04-26 12:05

Name: Anonymous 2011-04-26 12:09

Name: Anonymous 2011-04-26 12:14

Name: Anonymous 2011-04-26 12:19

Name: Anonymous 2011-04-26 12:24

Name: Anonymous 2011-04-26 12:28

Name: Anonymous 2011-04-26 12:28

OVER 20LBS OF PUSSY ASS AND PUSSY FARTS!!!

Name: Anonymous 2011-04-26 12:33

Name: Anonymous 2011-04-26 12:38

Name: Anonymous 2011-04-26 12:42

Name: Anonymous 2011-04-26 12:47

Name: Anonymous 2011-04-26 12:52

Name: Anonymous 2011-04-26 12:57

Name: Anonymous 2011-04-26 13:01

Name: Anonymous 2011-04-26 13:06

Name: Anonymous 2011-04-26 13:11

Name: Anonymous 2011-04-26 13:15

Name: Anonymous 2011-04-26 13:20

Name: Anonymous 2011-04-26 13:25

Name: Anonymous 2011-04-26 13:30

Name: Anonymous 2011-04-26 13:34

Name: Anonymous 2011-04-26 13:39

Name: Anonymous 2011-04-26 13:44

Name: Anonymous 2011-04-26 13:49

Name: Anonymous 2011-04-26 13:53

Name: Anonymous 2011-04-26 13:58

Name: Anonymous 2011-04-26 14:03

Name: Anonymous 2011-04-26 14:07

Name: Anonymous 2011-04-26 14:12

Name: Anonymous 2011-04-26 14:17

Name: Anonymous 2011-04-26 14:21

Name: Anonymous 2011-04-26 14:26

Name: Anonymous 2011-04-26 14:31

Name: Anonymous 2011-04-26 14:36

Name: Anonymous 2011-04-26 14:41

Name: Anonymous 2011-04-26 14:45

Name: Anonymous 2011-04-26 14:50

Name: Anonymous 2011-04-26 14:55

Name: Anonymous 2011-04-26 15:00

Name: Anonymous 2011-04-26 15:05

Name: Anonymous 2011-04-26 15:09

Name: Anonymous 2011-04-26 15:14

Name: Anonymous 2011-04-26 15:23

Name: Anonymous 2011-04-26 15:28

Name: Anonymous 2011-04-26 15:33

Name: Anonymous 2011-04-26 15:37

Name: Anonymous 2011-04-26 15:42

Name: Anonymous 2011-04-26 15:47

Name: Anonymous 2011-04-26 15:52

Name: Anonymous 2011-04-26 15:56

Name: Anonymous 2011-04-26 16:01

Name: Anonymous 2011-04-26 16:06

Name: Anonymous 2011-04-26 16:11

Name: Anonymous 2011-04-26 16:15

Name: Anonymous 2011-04-26 16:20

Name: Anonymous 2011-04-26 16:25

Name: Anonymous 2011-04-26 16:30

Name: Anonymous 2011-04-26 16:35

Name: Anonymous 2011-04-26 16:40

Name: Anonymous 2011-04-26 16:44

Name: Anonymous 2011-04-26 16:49

Name: Anonymous 2011-04-26 16:54

Name: Anonymous 2011-04-26 16:59

Name: Anonymous 2011-04-26 17:03

Name: Anonymous 2011-04-26 17:08

Name: Anonymous 2011-04-26 17:13

Name: Anonymous 2011-04-26 17:17

Name: Anonymous 2011-04-26 17:23

Name: Anonymous 2011-04-26 17:32

Name: Anonymous 2011-04-26 19:03

Name: Anonymous 2011-04-26 19:07

Name: Anonymous 2011-04-26 19:12

Name: Anonymous 2011-04-26 19:16

Name: Anonymous 2011-04-26 19:20

Name: Anonymous 2011-04-26 19:34

Name: Anonymous 2011-04-26 19:39

Name: Anonymous 2011-04-26 19:44

Name: Anonymous 2011-04-26 19:49

Name: Anonymous 2011-04-26 19:53

Name: Anonymous 2011-04-26 19:57

Name: Anonymous 2011-04-26 20:02

Name: Anonymous 2011-04-26 20:12

Name: Anonymous 2011-04-26 20:16

Name: Anonymous 2011-04-26 20:20

Name: Anonymous 2011-04-26 20:25

Name: Anonymous 2011-04-26 20:29

Name: Anonymous 2011-04-26 21:34

Name: Anonymous 2011-04-26 21:38

Name: Anonymous 2011-04-26 22:01

Name: Anonymous 2011-04-26 22:44

Name: Anonymous 2011-04-26 23:28

Name: Anonymous 2011-04-26 23:39

Name: Anonymous 2011-04-27 0:03

Name: Anonymous 2011-04-27 0:57

Name: Anonymous 2011-04-27 1:37

Name: Anonymous 2011-04-27 1:48

Name: Anonymous 2011-04-27 2:00

Name: Anonymous 2011-04-27 2:05

Name: Anonymous 2011-04-27 2:09

Name: Anonymous 2011-04-27 2:14

Name: Anonymous 2011-04-27 2:15

0.7298950690828503
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.881257443010497

Name: Anonymous 2011-04-27 2:15

0.7024738266355922
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.3141929110081201

Name: Anonymous 2011-04-27 2:15

0.4273077391133916
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.8689375692321013

Name: Anonymous 2011-04-27 2:15

0.024265204813376462
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.02282518801220057

Name: Anonymous 2011-04-27 2:16

0.6753917376931444
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.30370165755881295

Name: Anonymous 2011-04-27 2:16

0.9835525322556737
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.15134655291842758

Name: Anonymous 2011-04-27 2:16

0.8822194866293148
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.09766533678169487

Name: Anonymous 2011-04-27 2:16

0.2717461718325941
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.2723217124151529

Name: Anonymous 2011-04-27 2:16

0.38516772194452475
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.7595555083755494

Name: Anonymous 2011-04-27 2:16

0.2073531882521299
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.6528181334712216

Name: Anonymous 2011-04-27 2:16

0.5139601721871452
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.6016345334518367

Name: Anonymous 2011-04-27 2:16

0.16322902327918032
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.39390240721849357

Name: Anonymous 2011-04-27 2:17

0.7959803215993707
                 ,         
         __  _.-"` `'-.   I LIKE TO FART BECAUSE NO MATTER WHAT HAPPENS  
        /||'._ __{}_(    THE AUTISTS THAT OPERATE /prog/    
        ||||  |'--.__\    CAN'T TAKE THAT AWAY FROM ME
        |  L.(   ^_\^                                                    
        \ .-' |   _ |                                                    
        | |   )\___/                                                     
        |  \-'`:._]       FARTING IS THE ONLY THING I CAN DO THAT MAKES  
    gjs \__/;      '-.    ME FEEL REAL AND IN CONTROL OF MY OWN DESTINY

0.1194208779047885

Name: Anonymous 2011-04-27 3:10

Name: Anonymous 2011-04-27 3:15

Name: Anonymous 2011-04-27 3:20

Name: Anonymous 2011-04-27 3:32

Name: Anonymous 2011-04-27 3:37

Name: Anonymous 2011-04-27 3:41

Name: Anonymous 2011-04-27 3:46

Name: Anonymous 2011-04-27 3:50

Name: Anonymous 2011-04-27 3:54

Name: Anonymous 2011-04-27 3:58

HI IM A PROGRAMMER IM 13 I CAN PROGRAM CALCULATOR SORRY FOR MY INGLISH IM NOT INGLISH I CREATED A RANDOM NUMBER GENERATOR HERE IT IS 0.23856970513331333

Name: Anonymous 2011-04-27 3:59

Name: Anonymous 2011-04-27 4:03

Name: Anonymous 2011-04-27 4:07

Name: Anonymous 2011-04-27 4:11

Name: Anonymous 2011-04-27 4:16

Name: Anonymous 2011-04-27 4:20

Name: Anonymous 2011-04-27 4:25

Name: Anonymous 2011-04-27 4:29

Name: Anonymous 2011-04-27 4:34

Name: Anonymous 2011-04-27 4:38

Name: Anonymous 2011-04-27 4:43

Name: Anonymous 2011-04-27 4:47

Name: Anonymous 2011-04-27 4:51

Name: Anonymous 2011-04-27 4:56

Name: Anonymous 2011-04-27 5:00

Name: Anonymous 2011-04-27 5:05

Name: Anonymous 2011-04-27 5:09

Name: Anonymous 2011-04-27 5:14

Name: Anonymous 2011-04-27 5:18

Name: Anonymous 2011-04-27 5:22

Name: Anonymous 2011-04-27 5:27

Name: Anonymous 2011-04-27 5:31

Name: Anonymous 2011-04-27 5:36

Name: Anonymous 2011-04-27 5:40

Name: Anonymous 2011-04-27 5:44

Name: Anonymous 2011-04-27 5:49

Name: Anonymous 2011-04-27 5:53

Name: Anonymous 2011-04-27 5:58

Name: Anonymous 2011-04-27 6:02

Name: Anonymous 2011-04-27 6:07

Name: Anonymous 2011-04-27 6:11

Name: Anonymous 2011-04-27 6:15

Name: Anonymous 2011-04-27 8:13

Name: Anonymous 2011-04-27 8:17

Name: Anonymous 2011-04-27 11:06

Name: Anonymous 2011-04-27 11:35

Name: Anonymous 2011-04-27 12:02

Name: Anonymous 2011-04-27 12:06

Name: Anonymous 2011-04-27 12:11

Name: Anonymous 2011-04-27 12:15

Name: Anonymous 2011-04-27 12:20

Name: Anonymous 2011-04-27 12:24

Name: Anonymous 2011-04-28 4:18


Don't change these.
Name: Email:
Entire Thread Thread List