troll, perhaps? gave me a laugh
HN user
patrickc
You're right. I meant to say passing first-class functions as arguments, rather than pointers to functions as you would in C or an object method as you would in Java.
Yes. Google walmart "moving pennies" and click on the first result
If it ain't got macros, then it ain't a Lisp. Javascript is definitely no Lisp, but I really like that it allows function composition, which is somehow reminiscent of a Lisp. f(g(h(x))); instead of (f (g (h x)))
To quote Douglas Crockford on JavaScript, "Lisp in C's Clothing"
This is brilliant in its simplicity. It would be very feasible to implement on a single web server, but what are some ways to extend it into a protocol?
If multiple servers mirror an email thread, how does one edit what he has already sent/posted? I think this can be done by using a public key encryption scheme, so that only the person who published it with their key can edit it on the multitude of servers that share this new email protocol.
The source code is well commented
I wonder if this means more DRM is on its way to Ubuntu.
Most people just browse to web. If you want a shell, it's way easier to use a linux thinkpad that has a proper keyboard and proper OS, as opposed to an iPad. But that's not to say that an iPad is not good for some things.
Thank you for posting this to HN.
I'll second that. Strang's book is by far my favorite introductory math book. He addresses fundamentals quite well, and gives good treatment to applications such as linear programming and game theory.
I've no doubt they can monetize it, but I suspect there'll be "traffic forwarding" libraries popping up on Github, if this idea takes off
Secret Apple undercover propaganda blog!
People just use Bing to search for porn so Google can't see that. Then they use Google for pretty much everything else, which is not much.
If my understanding is correct, rather than creating a new thread for each client request, it handles connections asynchronously, much like Nginx. But unlike Nginx, it uses only a single process, so it doesn't require any interprocess communication overhead. Too bad they don't release the source code.