| 1. | | Hg Init: a Mercurial tutorial by Joel Spolsky (hginit.com) |
| 296 points by Tichy on Feb 24, 2010 | 71 comments |
|
| 2. | | GoDaddy store your passwords in clear and may access your VPS without permission (sucuri.net) |
| 288 points by sucuri2 on Feb 24, 2010 | 119 comments |
|
| 3. | | Serious threat to the web in Italy (googleblog.blogspot.com) |
| 282 points by alexandros on Feb 24, 2010 | 141 comments |
|
| 4. | | Senators Kerry & Lugar Introduce the Startup Visa Act (startupvisa.com) |
| 226 points by icey on Feb 24, 2010 | 215 comments |
|
| 5. | | Things I Won't Work With: Dioxygen Difluoride (corante.com) |
| 202 points by timr on Feb 24, 2010 | 50 comments |
|
| 6. | | Bloom Unveils Its Game Changing Energy Box (mashable.com) |
| 103 points by bigsassy on Feb 24, 2010 | 58 comments |
|
| 7. | | The Fallacy of Gray (lesswrong.com) |
| 97 points by jonp on Feb 24, 2010 | 27 comments |
|
| 8. | | Isaac Asimov - The Relativity of Wrong (1989) (tufts.edu) |
| 97 points by nkurz on Feb 24, 2010 | 32 comments |
|
| 9. | | Use open source? Then you're a pirate (computerworlduk.com) |
| 91 points by dreemteem on Feb 24, 2010 | 42 comments |
|
| 10. | | Yelp Hit With Class Action Lawsuit For Running An “Extortion Scheme” (techcrunch.com) |
| 90 points by apowell on Feb 24, 2010 | 52 comments |
|
| 11. | | Help find missing kids by putting them on your 404 page (bluesmoon.info) |
| 81 points by bluesmoon on Feb 24, 2010 | 33 comments |
|
| 12. | | Nikola Tesla's letterhead circa 1900 (letterheady.com) |
| 79 points by MikeCapone on Feb 24, 2010 | 20 comments |
|
| 13. | | Tired of Old Man Python telling you what you can and can't say to your computer? (staringispolite.com) |
| 75 points by mapleoin on Feb 24, 2010 | 15 comments |
|
| |
|
|
| 15. | | How Corrupted Language Moved from Campus to the Real World (mindingthecampus.com) |
| 69 points by cwan on Feb 24, 2010 | 7 comments |
|
| 16. | | @ycombinator (ycombinator.posterous.com) |
| 64 points by Harj on Feb 24, 2010 | 22 comments |
|
| 17. | | Triumph of the Cyborg Composer (miller-mccune.com) |
| 59 points by lief79 on Feb 24, 2010 | 13 comments |
|
| 18. | | Parallel programming is hard. Right? (lbrandy.com) |
| 59 points by lbrandy on Feb 24, 2010 | 33 comments |
|
| 19. | | Site Leaks Microsoft Online Surveillance Guide, MS Demands Takedown Under DMCA (geekosystem.com) |
| 56 points by umiaq on Feb 24, 2010 | 21 comments |
|
| 20. | | Al-Mabhouh Assassination (schneier.com) |
| 53 points by niyazpk on Feb 24, 2010 | 4 comments |
|
| 21. | | Things your lawyer won't tell you (openforum.com) |
| 50 points by y2002 on Feb 24, 2010 | 30 comments |
|
| |
|
|
| |
|
|
| 24. | | Standard Interface (standardinterface.org) |
| 49 points by nreece on Feb 24, 2010 | 13 comments |
|
| |
|
|
| |
|
|
| 27. | | Italian Court Convicts 3 Google Execs of Violating Privacy (nytimes.com) |
| 47 points by frisco on Feb 24, 2010 | 32 comments |
|
| |
|
|
| 29. | | Oakland Cafe Owner's Banning Laptop Experiment (actualcafe.blogspot.com) |
| 43 points by drewsing on Feb 24, 2010 | 32 comments |
|
| |
|
|
|
| More |
(By comparison, Apache is quite the memory hog and I still haven't figured out how to say the magic words to get it to not effectively crash my blog and every other site on the server if I burst to 10,000 visitors in an hour. That is not supposed to be a big number. Apache has 500 MB to play with and still can't keep up.)
I also find, and this might just be a matter of taste, that the configuration makes more sense to me than Apache configuration does. This is funny because Apache configuration is obsessively well-documented and Nginx configuration is not.
Additionally, some easy-to-use features cover weak points in typical Rails (&etc) deployment scenarios. The big one for me is file serving, since my website is essentially one big PDF printing press. The simplest level (works for me, won't work for Facebook) is just having the file anywhere accessible on the disk and having the application put a special header on the response saying "Hey, Nginx: give them this path.", then terminating Rails' involvement. That frees up your Mongrel to start doing hard work again and greatly, greatly, GREATLY decreases the resources you need to stream your 5 MB PDF, 20 MB executable, etc to the user.
So it scales down, but does it scale up? Ooooooooh yeah. Impressively so. See the tales of Wordpress deployment, where not a whole lot of Nginx gets hit with a year's worth of my traffic every couple of seconds and still keeps on trucking.