You are not logged in.
Pages: 1
I thought that this was a good demonstration of how recursion works.
This one was also good.
Last edited by Xyne (2010-01-29 08:16:29)
My Arch Linux Stuff • Forum Etiquette • Community Ethos - Arch is not for everyone
Offline
I like it!
Offline
well played sir.
Hofstadter's Law:
It always takes longer than you expect, even when you take into account Hofstadter's Law.
Offline
Recursion = To cast the same curse twice.
Offline
Hehe
never trust a toad...
::Grateful ArchDonor::
::Grateful Wikipedia Donor::
Offline
I did this on another forum a while back, only I called the link "How to keep an idiot busy for a half an hour", like those cards people made when I was a kid.
Offline
I thought that this was a good demonstration of how recursion works.
Sure I've seen that somewhere before.
Mike
Offline
Offline
chrome://browser/content/browser.xul
Offline
brilliant!
Offline
My Arch Linux Stuff • Forum Etiquette • Community Ethos - Arch is not for everyone
Offline
To understand recursion, you must understand recursion.
No. To understand recursion, one must see recursion for themselves. How could one must understand to understand what's not seen.
Offline
lol nice
Desktop: E8400@4ghz - DFI Lanparty JR P45-T2RS - 4gb ddr2 800 - 30gb OCZ Vertex - Geforce 8800 GTS - 2*19" LCD
Server/Media Zotac GeForce 9300-ITX I-E - E5200 - 4gb Ram - 2* ecogreen F2 1.5tb - 1* wd green 500gb - PicoPSU 150xt - rtorrent - xbmc - ipazzport remote - 42" LCD
Offline
some ocaml for your recursion needs
let rec sum lst =
match lst with
[] -> 0
| a::xs -> a + sum xs;;
Offline
Wikipedia win:
:(){ :|:& };:
Offline
Offline
Wikipedia win:
:(){ :|:& };:
lol, fork bombs
Desktop: E8400@4ghz - DFI Lanparty JR P45-T2RS - 4gb ddr2 800 - 30gb OCZ Vertex - Geforce 8800 GTS - 2*19" LCD
Server/Media Zotac GeForce 9300-ITX I-E - E5200 - 4gb Ram - 2* ecogreen F2 1.5tb - 1* wd green 500gb - PicoPSU 150xt - rtorrent - xbmc - ipazzport remote - 42" LCD
Offline
http://bbs.archlinux.org/viewtopic.php? … 14#p697514
Last edited by tomd123 (2010-01-29 04:24:11)
Offline
I just realised, the view counts on this thread are going to increase rapidly with all the view recursion. Great scheme Xyne!
Offline
λf·(λx·f (x x)) (λx·f (x x))
y helo thar
Last edited by scj (2010-01-29 11:09:11)
Offline
I did this on another forum a while back, only I called the link "How to keep an idiot busy for a half an hour", like those cards people made when I was a kid.
There is also an entry in the fortune package that goes something like:
Q: How do you keep an idiot busy for an hour?
I need a sorted list of all random numbers, so that I can retrieve a suitable one later with a binary search instead of having to iterate through the generation process every time.
Offline
Offline
Pages: 1