| 31. | | Google releases a fix for flash, before Adobe (pcmag.com) |
| 96 points by dafarian on Sept 26, 2011 | 30 comments |
|
| 32. | | The Facebook Chart That Freaks Google Out (allthingsd.com) |
| 87 points by donmcc on Sept 26, 2011 | 42 comments |
|
| 33. | | Facebook Defends Getting Data From Logged-Out Users (wsj.com) |
| 86 points by goldensaucer on Sept 26, 2011 | 74 comments |
|
| 34. | | Show HN: textlaundry.com (textlaundry.com) |
| 91 points by massim on Sept 26, 2011 | 51 comments |
|
| 35. | | High-Resolution Mandelbrot in Obfuscated Python (preshing.com) |
| 86 points by Garbage on Sept 26, 2011 | 12 comments |
|
| |
|
|
| 37. | | 747s as flying Unix hosts: SCADA in the sky (boingboing.net) |
| 77 points by michaelzhao on Sept 26, 2011 | 18 comments |
|
| 38. | | Scalable and Modular Architecture for CSS (smacss.com) |
| 76 points by jcsalterego on Sept 26, 2011 | 16 comments |
|
| 39. | | Joe Hewitt - What the web is and is not (joehewitt.com) |
| 72 points by riledhel on Sept 26, 2011 | 32 comments |
|
| |
|
|
| |
|
|
| 42. | | 68% of the Fortune 100 are Clueless (cloudability.com) |
| 71 points by stormental on Sept 26, 2011 | 27 comments |
|
| 43. | | Facebook’s iPad App Has Been Done Since May, But They Won’t Release It (techcrunch.com) |
| 64 points by aaronbrethorst on Sept 26, 2011 | 24 comments |
|
| 44. | | Tumblr Lands $85 Million in Funding (nytimes.com) |
| 62 points by revorad on Sept 26, 2011 | 50 comments |
|
| 45. | | Why aren't you building your startup for early adopters? (humbledmba.com) |
| 61 points by jaf12duke on Sept 26, 2011 | 17 comments |
|
| 46. | | Minimum Viable Pants (minimumviablepants.com) |
| 60 points by domino on Sept 26, 2011 | 6 comments |
|
| 47. | | Scheme vs. Commmon Lisp (greenspun.com) |
| 60 points by ekm2 on Sept 26, 2011 | 25 comments |
|
| |
|
|
| 49. | | Show HN: Pytroj - Infect .pyc files (github.com/jgeralnik) |
| 53 points by jgeralnik on Sept 26, 2011 | 20 comments |
|
| 50. | | Today is Petrov Day (lesswrong.com) |
| 51 points by gwern on Sept 26, 2011 |
|
| |
| 49 points | parent |
|
| |
|
|
| 53. | | A Brief History of the Brain (newscientist.com) |
| 49 points by epenn on Sept 26, 2011 | 3 comments |
|
| |
|
|
| 55. | | Will Robots Steal Your Job? (slate.com) |
| 47 points by tokenadult on Sept 26, 2011 | 60 comments |
|
| |
|
|
| 57. | | Idiot's guide to viewports and media queries (docs.google.com) |
| 47 points by aqrashik on Sept 26, 2011 |
|
| |
|
|
| |
|
|
| |
|
|
|
| More |
Sketch out your basic data structures on a piece of paper, then just use your finger to trace out how you could do insert, delete, search, etc you can usually tell if something is taking O(lg n), O(n), O(n lg n), etc just by counting the steps you take. After you're comfortable with this, sketch it in your head. You can't forget something that you understand.
The point is that if figuring what out Big O is seems like something you have to memorize to recall quickly, then you very likely don't really understand the underlying data structure/algorithm (and as such you rightfully should do poorly on algorithms interviews). Take the time to make sure you really understand what's going on, and everything else should fall into place.