you know i always hear you all talking about programing, but i never actually see any going down around here. i think /prog/ is all talk and cant even really do shit. i mean just look at this shit hole it looks like it was 1998 in here, have any of you even heard of web 2.0?
>you know i always hear you all talking about programing,
it's a programming text board but i never actually see any going down around here.
It happens from time to time i think /prog/ is all talk and cant even really do shit.
Very likely i mean just look at this shit hole it looks like it was 1998 in here, have any of you even heard of web 2.0?
Actually, the majority of us hate web 2.0 bullshit and I find the older style soothing. Plus, how much could you really do with a text board that would actually be useful?
>>1 i never actually see any going down around here
What the hell do you expect to see? I write my programs on my computer. You will notice, though that this is BBCODE heaven.
Name:
Anonymous2009-03-06 21:43
I think we should all collaborate together and make a master program to show the OP up. Of course, it will probably end up being a fibonacci sequence written in Lisp.
Name:
Anonymous2009-03-06 21:56
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
Name:
Anonymous2009-03-07 7:12
fib :: Int -> Int
fib 0 = 0
fib 1 = 1
fib n = fib (n-1) + fib (n-2)
Name:
Anonymous2009-03-07 10:21
fib 0 = 0
fib 1 = 1
fib n = let (q,r) = divMod n 2
a = fib (q - 1)
b = fib q
x = a * a + b * b
y = b * (2 * a + b)
in r * x + y
Name:
FrozenVoid2009-03-07 11:02
I've done a lot on this board. Most people here don't know anything, and prefer to using useless languages like Haskell over powerful languages such are Javascript.
I'll do another thing right now and prove 0.999... = 1 in a language you understanding.