rofl…you realy thought there is some kind of greater plan, story or idea behind this?!?

  • chello segfault

    hab ich ja schon ewig nimma gesehen - und wenn dann eher in nem terminal :)

    chello segfault

    ah - die guten alten zeiten - hu? ;)

  • women are like programming languages?!?

    from Comparing Programming Languages in real life:

    Java - Bulky with big boobs. Does everything you want but slowly. Hardly complains about how you want it in bed. The kind of woman who is not sexy, but gives you amazing satisfaction. You have tried several women, but this one doesn’t get off your mind so you always go back to her.

    ich hab noch eine

    Brainfuck:

    The one girl you always knew would end that way if she didnt stop the drug use. And best friend of Lindsay Lohan.

  • haskellcoder 2

  • n00bian :: [vanilla] -> code

  • 2 vanilla cokes worth of code

    michi hatte heute morgen n kleines haskell rekursion prob - gute gelegenheit sich mal wieder damit zu beschäftigen und nebenbei noch 2 vanilla cokes zu verdienen :D

    pascalTriangle :: Int -> Int -> [[ Int ]]
    pascalTriangle n m
            | n < 1 = [[]]
            | m < 1 = [[]]
            | m < n = [[]]
            | otherwise = pascalTriangleRecu n m

    pascalTriangleRecu :: Int -> Int -> [[ Int ]]
    pascalTriangleRecu n m
            | m < n = []
            | m == n = [ pascalTriangleLine n ]
            | otherwise = [( pascalTriangleLine n )] ++ ( pascalTriangleRecu (n + 1) (m - 1 ) ) ++ [( pascalTriangleLine m )]

    pascalTriangleLine :: Int -> [ Int ]
    pascalTriangleLine n
            | n <  1 = [ ]
            | n == 1 = [ 1 ]
            | n == 2 = [ 1, 1 ]
            | otherwise = [ 1 ] ++ ( nextPascalLine $ pascalTriangleLine  (n - 1)  ) ++ [ 1 ]

    nextPascalLine :: [ Int ] -> [ Int ]
    nextPascalLine ( s : [] ) = []
    nextPascalLine ( s : t ) = [ s + head( t ) ] ++ nextPascalLine
    (09:46:39) neymo: jo, danke jetzt funkts, ich schuld dir 2 Vanilla Coke ;-) (09:46:45) n00bian: k

Unless otherwise specified, all content is made available under the Creative Commons License.

Powered by WordPress with whitr than milk theme designed by Kristof Klee.

Entries and comments feeds. Valid XHTML and CSS.