id
int64 0
12.9M
| type
large_stringclasses 5
values | by
large_stringlengths 2
15
⌀ | time
timestamp[us] | title
large_stringlengths 0
198
⌀ | text
large_stringlengths 0
99.1k
⌀ | url
large_stringlengths 0
6.6k
⌀ | score
int64 -1
5.77k
⌀ | parent
int64 1
30.4M
⌀ | top_level_parent
int64 0
30.4M
| descendants
int64 -1
2.53k
⌀ | kids
large list | deleted
bool 1
class | dead
bool 1
class |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
16,100 | comment | mojuba | 2007-04-23T20:10:11 | null | I'd choose JavaScript instead, since it already has most of what he explained. | null | null | 15,945 | 15,770 | null | [
16278
] | null | null |
16,101 | comment | madanella | 2007-04-23T20:10:39 | null | I like the potential ability to enable a truly wireless home environment where electronic devices all use wireless tech in place of physical cables. Speakers would be the first thing I would want to receive wireless power in addition to the wireless data signal. | null | null | 15,781 | 15,781 | null | null | null | null |
16,102 | comment | Readmore | 2007-04-23T20:10:46 | null | So what we need is a DB that stores itself completely in memory and only writes to disk every Nminutes? | null | null | 16,098 | 16,098 | null | [
16103
] | null | null |
16,103 | comment | paul | 2007-04-23T20:13:25 | null | No, it can write continually, but in a sequential fashion. | null | null | 16,102 | 16,098 | null | [
16223,
16108
] | null | null |
16,104 | comment | abstractbill | 2007-04-23T20:14:00 | null | "For sequential access, DRAM is about 62x the speed of disk -- it's slower, but only by a few orders of magnitude."<p>Shouldn't that be "it's <i>faster</i>"?<p>Excellent post otherwise, btw. | null | null | 16,098 | 16,098 | null | [
16105,
16106
] | null | null |
16,105 | comment | paul | 2007-04-23T20:16:10 | null | Fixed. Thanks | null | null | 16,104 | 16,098 | null | null | null | null |
16,106 | comment | Sam_Odio | 2007-04-23T20:16:13 | null | I think he meant the disk, not the DRAM, is slower. | null | null | 16,104 | 16,098 | null | null | null | null |
16,107 | comment | akkartik | 2007-04-23T20:16:40 | null | "The road to wisdom? Well, it's plain<p> And simple to express:<p> Err<p> and err<p> and err again<p> but less<p> and less<p> and less."<p>-- Piet Hein via Don Knuth and Ryan Brush<p><a href="http://toomuchcode.blogspot.com/2007/02/imperfect-approximation-of-perfect-code.html">http://toomuchcode.blogspot.com/2007/02/imperfect-approximation-of-perfect-code.html</a> | null | null | 16,031 | 16,031 | null | null | null | null |
16,108 | comment | Readmore | 2007-04-23T20:17:37 | null | I just read up on memcached, now I get it. Very nice ;) | null | null | 16,103 | 16,098 | null | null | null | null |
16,109 | comment | madanella | 2007-04-23T20:20:03 | null | This issue is fundamental to the current web 2.0 startup approach of fast and cheap feature development. It becomes more and more about marketing, branding and user experience and less and less about engineering. | null | null | 15,859 | 15,859 | null | null | null | null |
16,110 | comment | dfranke | 2007-04-23T20:22:07 | null | If your entire database fits in memory, then any decent DBMS will cache it all there, write changes back to disk at such time as to have a minimal impact on performance, all the while ensuring atomicity if someone kicks out the plug while it's in the middle of flushing the buffer. If you're not using a DBMS and you can still say all that about your own solution, you've probably put a lot of work into reinventing the wheel. | null | null | 16,098 | 16,098 | null | [
16232,
16115,
16218,
16247
] | null | null |
16,111 | story | Readmore | 2007-04-23T20:24:10 | Anyone have any info on how Facebook is setup (Server infrastructure wise)? | null | 5 | null | 16,111 | 8 | [
16118,
16116,
16180
] | null | null |
|
16,112 | comment | myoung8 | 2007-04-23T20:25:31 | null | "Passion knows no logic."
| null | null | 16,031 | 16,031 | null | null | null | null |
16,113 | comment | SwellJoe | 2007-04-23T20:27:05 | null | The hits:<p>Buchheit<p>Levchin<p>Partovi brothers<p>Graham<p>McAdoo<p>Recent founders panel (just the end bit where Alexis beautifully zings Paul, but you need to see the slides...I dunno if they're available)<p>The misses (misses because I expected a lot more from these guys, not necessarily because these were worse than the rest of the non-hits--both really smart guys with a lot of success under their belt):<p>Kapor (should have been half an hour, like everyone else)<p>Zuckerberg (age discrimination isn't really something useful to learn, as we all probably have enough of that built right in)<p>Though, I might say that if you do watch one of the misses, you need to watch the other. They're like Olbermann and O'Reilly squaring off on issues like hiring, firing, employee selection, etc. By the time you suffer through both talks you might have a balanced view.<p>From the 06 batch I vividly remember Kraus, Graham, and Fletcher being fantastic. Kraus and Fletcher are always worth listening to. | null | null | 16,051 | 16,021 | null | [
16179
] | null | null |
16,114 | comment | nostrademons | 2007-04-23T20:27:35 | null | So, how do write-intensive sites like LiveJournal handle their updates? I was under the impression that LJ was all memcached + sharding + master/master pairs for the shards.<p>How do you handle features that rely on frequent UPDATE statements, like say a hitcounter? Is UPDATE LOW PRIORITY (MySQL) enough, or should you work out some application-specific caching/batching mechanism and perform all your updates at once? | null | null | 16,098 | 16,098 | null | null | null | null |
16,115 | comment | paul | 2007-04-23T20:33:23 | null | Ensuring atomicity is actually very easy.<p>Databases SHOULD do these things, but I haven't seen any evidence that the popular ones do. Feel free to post actual measurements for updates per second from your db. | null | null | 16,110 | 16,098 | null | [
16120
] | null | null |
16,116 | comment | jkush | 2007-04-23T20:35:21 | null | <a href="http://www.facebook.com/jobs.php">http://www.facebook.com/jobs.php</a><p>Looking at this you can see MySQL and PHP so I'm guessing at the highest level, a LAMP architecture. Don't know how they go about web farming, scaling though. | null | null | 16,111 | 16,111 | null | [
16123
] | null | null |
16,117 | comment | SwellJoe | 2007-04-23T20:36:07 | null | Most investors do not invest in competing or significantly overlapping companies. There are a few exceptions (Ron Conway), but it's rare enough that they feel like making that clear on every possible occasion. | null | null | 15,910 | 15,743 | null | null | null | null |
16,118 | comment | jkush | 2007-04-23T20:37:16 | null | Actually - more information here:<p><a href="http://blog.facebook.com/blog.php?post=2223862130">http://blog.facebook.com/blog.php?post=2223862130</a><p>From the blog post:<p>"Almost all our servers are running open-source software. Our Web servers use Linux and Apache and PHP. Our database servers run MySQL. We use memcached to help keep the site snappy. Some of our behind-the-scenes software is written in Python and Perl and Java, and we use gcc and Boost for the parts that aren't. Our developers use Subversion and git to keep track of their work. The list goes onlike many Web sites, we use it from top to bottom." | null | null | 16,111 | 16,111 | null | [
16122
] | null | null |
16,119 | comment | pageman | 2007-04-23T20:38:00 | null | Chance favors the prepared mind - Louis Pasteur | null | null | 16,031 | 16,031 | null | null | null | null |
16,120 | comment | dfranke | 2007-04-23T20:45:40 | null | How are you handling atomicity? Are you doing full-out undo/redo logging, or just something involving writing to a seperate file and then (atomically) retargeting a symlink?<p>I'm mostly an academic, so I can tell you a lot more about how things are supposed to work than about how they actually do. The only high-traffic DBMS with real users to which I can easily get access is MS-SQL, which doesn't inspire me to any leaps of faith. But once I finish building my new desktop system (with spiffy RAID array) I'll rig up some benchmarks on MySQL and PostgreSQL. | null | null | 16,115 | 16,098 | null | [
16125
] | null | null |
16,121 | comment | aston | 2007-04-23T20:45:49 | null | Totally understandable. I'll do my best to re-remember all the random ideas we threw down. | null | null | 16,079 | 15,997 | null | null | null | null |
16,122 | comment | Readmore | 2007-04-23T20:47:17 | null | that's good stuff, Thanks! | null | null | 16,118 | 16,111 | null | [
16127
] | null | null |
16,123 | comment | aston | 2007-04-23T20:49:16 | null | Prolly a little bit of Thrift for client/server distribution. <p><a href="http://blog.facebook.com/blog.php?post=2261927130">http://blog.facebook.com/blog.php?post=2261927130</a> | null | null | 16,116 | 16,111 | null | null | null | null |
16,124 | comment | wschroter | 2007-04-23T20:53:47 | null | "I only have one hour of pure brilliance per week. Unfortunately I have to work 80 per week to find the one."<p>- Wil Schroter | null | null | 16,031 | 16,031 | null | null | null | null |
16,125 | comment | paul | 2007-04-23T20:54:04 | null | Just write each transaction as a single record to your transaction log file, ensure that only whole records are replayed (like with a checksum), and you're done. Since there are no b-trees or other complicated structures on disk, the problem gets a lot easier. | null | null | 16,120 | 16,098 | null | [
16138
] | null | null |
16,126 | comment | edw519 | 2007-04-23T20:54:09 | null | Do much.
Say little.
Write nothing. (Except software)<p>JP Morgan
(I added the bit about software.) | null | null | 16,031 | 16,031 | null | null | null | null |
16,127 | comment | jkush | 2007-04-23T20:55:52 | null | You bet. | null | null | 16,122 | 16,111 | null | null | null | null |
16,128 | story | bootload | 2007-04-23T21:05:38 | Growth, innovation, scaling & pace of life in cities | null | http://www.pnas.org/cgi/content/abstract/0610172104v1 | 1 | null | 16,128 | 0 | null | null | null |
16,129 | comment | Mistone | 2007-04-23T21:18:39 | null | The purpose of business is to create and keep a customer.
Peter Drucker | null | null | 16,031 | 16,031 | null | null | null | null |
16,130 | comment | Mistone | 2007-04-23T21:20:31 | null | The difference between great people and everyone else is that great people create their lives actively, while everyone else is created by their lives, passively waiting to see where life takes them next. The difference between the two is the difference between living fully and just existing.
Michael Gerber<p> | null | null | 16,031 | 16,031 | null | null | null | null |
16,131 | comment | waleedka | 2007-04-23T21:34:31 | null | It's on my account page. | null | null | 16,067 | 15,984 | null | [
16167
] | null | null |
16,132 | story | Prrometheus | 2007-04-23T21:39:51 | Great Startup Schools? | null | 2 | null | 16,132 | 6 | [
16140,
16133
] | null | null |
|
16,133 | comment | Prrometheus | 2007-04-23T21:40:01 | null | In preparation for a career as a startup founder, Im looking at grad schools right now for several reasons:<p>1) Sharpen my skills
2) Meet like-minded people
3) Learn cool things<p>Obviously, number 1 is Stanford, the home of Google. And number 2 is MIT. Does anybody have good recommendations for numbers 3, 4, and 5?
| null | null | 16,132 | 16,132 | null | [
16136,
16149,
16170,
16229
] | null | null |
16,134 | comment | catfish | 2007-04-23T22:03:12 | null | Cheap, fast, or accurate.<p>Pick two.
| null | null | 16,031 | 16,031 | null | null | null | null |
16,135 | comment | mojuba | 2007-04-23T22:16:01 | null | Ok, isn't Web 2.0 a similar marketing fluff? I understand with all similarities it's not the same. I'm sure it is much better now, but add one more new factor, like the failure of Windows Vista for example, and you may have that critical mass for a new collapse. | null | null | 16,094 | 15,988 | null | [
16146
] | null | null |
16,136 | comment | npk | 2007-04-23T22:17:31 | null | Hmm, this is an interesting take on graduate school. I'm not convinced that graduate school is the only or best way to accomplish your goals. Why not move out to CA and join a startup?<p>Assuming you mean a PhD, I'll give you the following advice: If you really don't <i>love</i> what you're doing, graduate school hurts. Personally, it would have been hard for me to come into a program, thinking that I was going it to start a startup and not do research for the rest of my life.<p>A masters will certainly help your career within bigger companies, but do startups care? Does one or two more years of courses really teach you anything? I'm inclined to say no.<p>Finally, you realize your question is kind of absurd? If you mean a PhD, you should think about what excites you, figure out what labs are doing what you are interested in, and go work for those labs. The school is secondary. I'm sure you'll find good labs at stanford, mit, cmu, caltech and berkeley.
| null | null | 16,133 | 16,132 | null | null | null | null |
16,137 | comment | mojuba | 2007-04-23T22:18:30 | null | After all, the guy coined a new term - Bubble 2.0, and I liked it very much. | null | null | 15,988 | 15,988 | null | null | null | null |
16,138 | comment | dfranke | 2007-04-23T22:19:55 | null | It sounds like you're describing very-nearly a textbook implementation of redo logging. I think what's making things easy for you is not the fact that you're using flat files, but rather that the entire contents of a transaction fit in memory. Most of the complexity involved in a commercial DBMS's log implementation stems from dealing with how to handle a transaction that modifies 20GB of data when you have 8GB of memory.<p>Edit: and yes, the irony is noted that I'm telling a Googler that he's not working with enough data. | null | null | 16,125 | 16,098 | null | [
16178,
16169
] | null | null |
16,139 | story | dawie | 2007-04-23T22:23:13 | 15 Startup Commandments | null | http://www.startupping.com/forums/showthread.php?t=347 | 15 | null | 16,139 | 3 | [
16330
] | null | null |
16,140 | comment | dawie | 2007-04-23T22:24:17 | null | Rule number 1 - Start - Experience is the best teacher | null | null | 16,132 | 16,132 | null | null | null | null |
16,141 | comment | create_account | 2007-04-23T22:24:52 | null | Shh... don't tell all the people applying to YC! | null | null | 15,988 | 15,988 | null | null | null | null |
16,142 | comment | create_account | 2007-04-23T22:26:51 | null | But why weren't you able to introduce them to prospective buyers once they'd decided to sell?<p>Isn't that where a well-connected investment firm adds value? | null | null | 15,909 | 15,628 | null | [
16664,
16796
] | null | null |
16,143 | story | mattjaynes | 2007-04-23T22:32:58 | Video Podcasting Comes of Age with ON Networks | null | http://www.readwriteweb.com/archives/video_podcastin.php | 2 | null | 16,143 | 0 | null | null | null |
16,144 | story | mattjaynes | 2007-04-23T22:35:16 | Going to YC SFP: Big Head Labs | null | http://www.bigheadlabs.com/2007/04/23/cue-that-song-from-augustana/ | 8 | null | 16,144 | 6 | [
16166,
16206,
16205,
16227,
16158
] | null | null |
16,145 | comment | bootload | 2007-04-23T22:36:02 | null | <i>"... <a href="http://www.stonetemple.com/articles/interview-bryan-eisenberg.shtml">http://www.stonetemple.com/articles/interview-bryan-eisenberg.shtml</a> ...'</i><p>Update: <p>Oops. Got confirmation from a reliable source '<i>this is particular link is incorrect</i>'. | null | null | 15,680 | 15,457 | null | null | null | null |
16,146 | comment | sabat | 2007-04-23T22:41:55 | null | "add one more new factor, like the failure of Windows Vista for example, and you may have that critical mass for a new collapse"<p>Forgive me, but I don't see the connection. How would the failure of Windows Vista do anything but <i>help</i> applications that run on the web? I can imagine some large things that could hurt this boom (economic collapse, maybe), but nothing small.<p>Web 2.0 has a lot of hype right now, but that doesn't make it marketing fluff. There is real substance here (and real profits, real innovation, and real users).<p>In contrast: here is a quick story about a company that I interviewed with in 1998. I don't remember the name; they were located South of Market in a really nice loft with lots of brick, glass, and chrome. Free lunch every day, free beverages, lots of perks. The business model: we are going to get your website's customers to fill out surveys. You are going to pay us for this. We will get the customers to fill out surveys by rewarding them with frequent-flier miles. I remember three things about this company, years later: how nice their loft was, how stupid and convoluted their business model was, and how arrogant they seemed to be about it. They acted like they were already a success.<p>In contrast, btw, the startup I did join was operating out of a cluttered office in Palo Alto that they'd got a really good deal on. Junk was everywhere, and the Founder/CEO asked me if I minded. I told him, "hey, it looks like a real startup." That company is still in business today. Frequent-Flier-Miles-for-Surveys, Inc: not so much. | null | null | 16,135 | 15,988 | null | [
16150
] | null | null |
16,147 | comment | sabat | 2007-04-23T22:45:16 | null | ... and this describes a bubble, how? This describes a boom. | null | null | 15,989 | 15,988 | null | null | null | null |
16,148 | comment | sabat | 2007-04-23T22:47:13 | null | Growth companies do not pay dividends, as a rule. The fact that these companies were having trouble getting anywhere near <i>profits</i> -- that was indeed a real problem. (Also, the fact that they were public at all was a real problem for them, since public investors want profits sooner than later.) | null | null | 16,069 | 15,988 | null | null | null | null |
16,149 | comment | mattjaynes | 2007-04-23T22:51:08 | null | Probably UT Austin, U of Washington, and UMich Ann Arbor would be the next ones (in no particular order).<p>Good luck to you. I considered grad school but decided that since my ultimate goal was to do a startup, that I would just put the money from grad school into starting a business. It's been the most educational few months of my life. There's no grad school that will be as educational as joining a good startup. Be sure to read pg's articles - they are invaluable for avoiding <i>very</i> common mistakes. | null | null | 16,133 | 16,132 | null | null | null | null |
16,150 | comment | mojuba | 2007-04-23T22:53:28 | null | Causes of some effect shouldn't necessarily be related, I was talking only about a critical mass, when causes add up.<p>I understand what you are saying otherwise. | null | null | 16,146 | 15,988 | null | null | null | null |
16,151 | comment | mattjaynes | 2007-04-23T22:57:27 | null | "Make no little plans. They have no magic to stir men's blood and probably themselves will not be realized. Make big plans; aim high in hope and work, remembering that a noble, logical diagram once recorded will never die, but long after we are gone will be a living thing, asserting itself with ever-growing insistency. Remember that our sons and grandsons are going to do things that would stagger us. Let your watchword be order and your beacon beauty. Think big."<p>-Daniel Burnham, Chicago architect. (1864-1912) | null | null | 16,031 | 16,031 | null | null | null | null |
16,152 | comment | mattjaynes | 2007-04-23T23:01:25 | null | From the Scottish mountain climber W. H. Murray:<p>"Concerning all acts of initiative (and creation), there is one elementary truth the ignorance of which kills countless ideas and splendid plans: that the moment one definitely commits oneself, then providence moves too. A whole stream of events issues from the decision, raising in one's favor all manner of unforeseen incidents, meetings and material assistance, which no man could have dreamt would have come his way." | null | null | 16,031 | 16,031 | null | null | null | null |
16,153 | comment | mattjaynes | 2007-04-23T23:03:19 | null | Theodore Roosevelt:<p>"It is not the critic who counts; not the man who points out how the strong man stumbles, or where the doer of deeds could have done them better. The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood, who strives valiantly; who errs and comes short again and again; because there is not effort without error and shortcomings; but who does actually strive to do the deed; who knows the great enthusiasm, the great devotion, who spends himself in a worthy cause, who at the best knows in the end the triumph of high achievement and who at the worst, if he fails, at least he fails while daring greatly. So that his place shall never be with those cold and timid souls who know neither victory nor defeat." | null | null | 16,031 | 16,031 | null | null | null | null |
16,154 | story | startupdaze | 2007-04-23T23:06:03 | Much to do about "ster!" | null | http://startupdaze.com/post/1169452 | 1 | null | 16,154 | 0 | null | null | null |
16,155 | comment | mattjaynes | 2007-04-23T23:06:36 | null | "Keep away from people who try to belittle your ambitions. Small people always do that, but the really great make you feel that you, too, can become great."<p>- Mark Twain<p>(Good case for moving to a startup hub) | null | null | 16,031 | 16,031 | null | [
16250
] | null | null |
16,156 | story | bootload | 2007-04-23T23:10:32 | Open Source Search (nutch) | null | http://www.acmqueue.com/modules.php?name=Content&pa=showpage&pid=144&page=1 | 4 | null | 16,156 | 0 | null | null | null |
16,157 | story | usablecontent | 2007-04-23T23:10:53 | Dojo Toolkit Now Works Offline | null | http://startupmeme.com/2007/04/23/dojo-toolkit-now-works-offline/ | 9 | null | 16,157 | 0 | null | null | null |
16,158 | comment | nostrademons | 2007-04-23T23:42:54 | null | Congrats! | null | null | 16,144 | 16,144 | null | null | null | null |
16,159 | comment | run4yourlives | 2007-04-23T23:43:17 | null | I didn't realize the game was over. :-) | null | null | 16,082 | 16,031 | null | null | null | null |
16,160 | story | Sam_Odio | 2007-04-23T23:53:51 | OpenDNS adds short-cut service (very cool...) | null | http://feeds.feedburner.com/~r/Techcrunch/~3/111390243/ | 1 | null | 16,160 | 1 | [
16161
] | null | null |
16,161 | comment | Sam_Odio | 2007-04-23T23:56:17 | null | If you haven't tried OpenDNS, it's worth checking out. They takes an old, boring technology and make it faster & more useable.<p>David Ulevitch, the guy behind it, also runs everydns.net. That's worth checking out too, if you run a server. | null | null | 16,160 | 16,160 | null | null | null | null |
16,162 | story | rms | 2007-04-23T23:58:57 | Blood, Bullets, Bombs, and Bandwidth | null | http://rezendi.com/travels/bbbb.html | 2 | null | 16,162 | 1 | [
16164
] | null | null |
16,163 | comment | fuelfive | 2007-04-24T00:03:52 | null | I keep a file of these. Here are some of my favorites:<p>"In the long run, we only hit what we aim at."
- Henry David Thorou<p>"The more you sweat in peace, the less you bleed in war."
- Asian proverb<p>"No battle plan survives contact with the enemy."
- Helmuth von Moltke<p>"No wind favors he who has no destined port."
- Montaigne<p>"Never doubt that a small group of thoughtful, committed people can change the world. Indeed, it is the only thing that ever has."
- Margaret Mead<p>"Real artists ship."
- Steve Jobs
| null | null | 16,031 | 16,031 | null | null | null | null |
16,164 | comment | rms | 2007-04-24T00:06:02 | null | This is the unabridged version of a piece that appeared in Wired a while ago. | null | null | 16,162 | 16,162 | null | null | null | null |
16,165 | story | mattjaynes | 2007-04-24T00:11:01 | S3 performance from EC2 instances | null | http://blog.awswebshop.com/2007/04/22/s3-performance-from-ec2-instances/ | 14 | null | 16,165 | 3 | [
16174,
16171
] | null | null |
16,166 | comment | brezina | 2007-04-24T00:15:41 | null | I'm pumped for Disqus. Use the time in Cambridge to focus on building a technology war-chest. You'll never find the time to focus on code the way you will during SFP.
| null | null | 16,144 | 16,144 | null | null | null | null |
16,167 | comment | jamiequint | 2007-04-24T00:29:52 | null | I don't see it there... | null | null | 16,131 | 15,984 | null | [
16187
] | null | null |
16,168 | comment | jamiequint | 2007-04-24T00:31:24 | null | There's a difference between competing and cloning their service to the detail as soon as you lose a bidding war. I'm by all means a capitalist, but this somehow doesn't sit right with me. | null | null | 14,400 | 14,360 | null | null | null | null |
16,169 | comment | mattculbreth | 2007-04-24T00:43:26 | null | This is a very good point. Some types of applications will find this scheme a bit difficult, though I'm in the midst of hacking through some POC work around it. I've got a database in the 100GB range potentially so it's a bit of a different domain.<p>I really think this concept works though for 8/10 applications which are using databases because, well, you've always used databases. Memory, save changes to flat files, read it all in during startup, it's really an elegant way to go about it.
| null | null | 16,138 | 16,098 | null | [
16290
] | null | null |
16,170 | comment | mattculbreth | 2007-04-24T00:45:15 | null | I'm a Georgia Tech guy and we have a great CS program. But I'd go with the consensus here--get out there and join a startup. Maybe do that for a year, see how you like it. If you've already got startup fever in your blood going to grad school might not feel so good.
| null | null | 16,133 | 16,132 | null | null | null | null |
16,171 | comment | zemaj | 2007-04-24T00:57:26 | null | Link not working?
| null | null | 16,165 | 16,165 | null | [
16198
] | null | null |
16,172 | comment | gyro_robo | 2007-04-24T00:59:21 | null | How about some symbol macro snippets?<p><a href="http://people.csail.mit.edu/gregs/ll1-discuss-archive-html/msg02226.html">http://people.csail.mit.edu/gregs/ll1-discuss-archive-html/msg02226.html</a><p><a href="http://www.economicexpert.com/a/RTML.html">http://www.economicexpert.com/a/RTML.html</a>
| null | null | 16,010 | 16,010 | null | null | null | null |
16,173 | story | rjam | 2007-04-24T01:03:20 | How long can it take for a blog to make some money? | null | http://www.robertoalamos.com/how-long-can-take-for-a-blog-to-make-a-decent-income | 7 | null | 16,173 | 2 | [
16615,
16175
] | null | null |
16,174 | comment | gyro_robo | 2007-04-24T01:05:01 | null | Good info. Basically 10 MB/sec either way for a single transfer and 20 MB max combined for multiple.
| null | null | 16,165 | 16,165 | null | null | null | null |
16,175 | comment | makimaki | 2007-04-24T01:08:52 | null | Very useful article for anyone planning to make money from a blog.. | null | null | 16,173 | 16,173 | null | null | null | null |
16,176 | story | madanella | 2007-04-24T01:12:22 | Best language for interface development? | null | 1 | null | 16,176 | 3 | [
16177
] | null | null |
|
16,177 | comment | madanella | 2007-04-24T01:13:45 | null | Of course there's Java, Flash and javascript. What other options are there? Examples please. | null | null | 16,176 | 16,176 | null | [
16267
] | null | null |
16,178 | comment | paul | 2007-04-24T01:16:06 | null | Yes, exactly, they are solving a number of much harder problems. However, these problems are irrelevant to 99% of web sites. How often does Twitter need to perform a 20GB transaction? | null | null | 16,138 | 16,098 | null | null | null | null |
16,179 | comment | gyro_robo | 2007-04-24T01:21:54 | null | Max Levchin is like the Energizer Bunny. See show #2 on NerdTV: <a href="http://www.pbs.org/cringely/nerdtv/shows/">http://www.pbs.org/cringely/nerdtv/shows/</a><p>He said when he's not doing a start-up he lays on the couch morose, whereas he's happy and enjoying life when he IS doing a start-up.<p>I infer that the secret of success is to link pleasure to working on your start-up and pain to NOT doing it. If your start-up feels like a grind then it's doomed. Fortunately, you can re-program your emotional responses via various techniques.<p>You pretty much want to do that regardless so that if you do strike it rich, you don't feel useless and indolent for the rest of your life afterward. The continued success stories are the people who were REALLY into what they did. For example, Bill Gates could have retired long ago; Michael Jordan didn't win one championship and decide that was all he wanted; Steve Jobs kept on going while Steve Wozniak checked out, relaxed, and got fat. (I love Woz, I just think if you're possibly the world's best at what you do, abruptly stopping can't be very fulfilling, even though I understand he did many other worthwhile things like teaching kids.)<p> | null | null | 16,113 | 16,021 | null | [
16215
] | null | null |
16,180 | comment | gyro_robo | 2007-04-24T01:26:31 | null | PHP: Choice of how many m/billionaires? <p>ColdFusion: MySpace<p>PHP: Facebook, Flickr<p>Python: YouTube, reddit<p>Lisp: Viaweb<p>Ruby: ?
| null | null | 16,111 | 16,111 | null | [
16190,
16283
] | null | null |
16,181 | comment | dshah | 2007-04-24T01:29:11 | null | Glad some of you are finding the Website Grader tool somewhat useful. It started out as a simple experimental project (basically I wanted something to meet my own needs).<p>Since then, it's taken on a bit of a life of its own. <p>The algorithm is basically trying to to simulate the same kinds of things I look for when trying to assess a site (a combination of traffic, SEO, site structure, popularity and other things). I'm making another big update to the underlying software within the next week or so. <p>If you have ideas for improvement, please leave a comment (either here or preferably on the websitegrader.com site itself). | null | null | 16,090 | 15,880 | null | null | null | null |
16,182 | comment | vlad | 2007-04-24T01:32:27 | null | "Raise your hand if you can do long division on paper, right now. Hands? Anyone? I didn't think so."<p>Is he serious? I knew how to do that in 3rd grade and a different version of it in 4th grade and on, and have never forgotten. How can somebody not know how to do long division? Please tell me I'm not the only one? | null | null | 16,006 | 16,006 | null | [
16183,
16277
] | null | null |
16,183 | comment | omouse | 2007-04-24T01:37:27 | null | I can barely remember. But I just did a simple problem on paper (123 / 4) and I've still got it! :P it's 30r3 or 30.75...I hope. | null | null | 16,182 | 16,006 | null | null | null | null |
16,184 | comment | vlad | 2007-04-24T01:38:34 | null | Justin.TV has them :) But it's very spotty. Paul Graham's talk is available on Video I believe, on Google. Maybe I'm thinking of his last year's talk. | null | null | 16,088 | 16,021 | null | null | null | null |
16,185 | comment | BrandonM | 2007-04-24T01:47:13 | null | If you wrote this to give back to the community, then I applaud you. Sorry to criticize. | null | null | 16,047 | 15,804 | null | null | null | null |
16,186 | story | mike_organon | 2007-04-24T01:59:26 | Yahoo sued for informing China on dissidents | null | http://www.cnn.com/2007/TECH/internet/04/18/yahoo.china.ap/ | 1 | null | 16,186 | 0 | null | null | null |
16,187 | comment | waleedka | 2007-04-24T02:05:03 | null | Opps. My bad. I put it in the 'email' field thinking it'll be displayed. Now I know better. Added it to my account now. waleed_ka ((AT)) hotmail.com. | null | null | 16,167 | 15,984 | null | null | null | null |
16,188 | comment | staunch | 2007-04-24T02:12:58 | null | I think there'd be some period of 6-18 months where I'd truly do nothing but relax. Learn a new programming language really well. Travel and visit friends/family scattered across the globe. Then I think I'd end up doing some kind of startup hackery like Joe Kraus or PG.
| null | null | 15,995 | 15,995 | null | null | null | null |
16,189 | comment | Goladus | 2007-04-24T02:21:34 | null | I'm pissed that I'm forgetting discrete math. I loved it, but lost my textbook at some point.<p>I can still do long division but dividing 2651300296 by 46532 by hand is not on the list of Things I Want To Spend Any More Of My Life Doing.<p>Anyway Steve Yegge is my hero. He rips into Java and C++ better than anyone. I think my favorite is when he cited "Dr. Gary Larson's" definitive paper on static type systems.<p><a href="http://steve-yegge.blogspot.com/2006/10/egomania-itself.html">http://steve-yegge.blogspot.com/2006/10/egomania-itself.html</a>
| null | null | 16,006 | 16,006 | null | null | null | null |
16,190 | comment | nostrademons | 2007-04-24T02:28:02 | null | I think you mean multi-millionaires - basically all the billionaires based their companies on C and C++. | null | null | 16,180 | 16,111 | null | null | null | null |
16,191 | comment | staunch | 2007-04-24T02:39:26 | null | Really great writeup Paul. I've been preaching "memory is magic" for the last couple years now -- since the capacity:price ratio got so good. Now I have a nice non-fluffy hacker post to send people to.<p>If there's any silver bullet to scaling most web apps it's properly utilizing gobs of memory. Pushing bytes from memory to your NIC is a pretty damn efficient operation.
| null | null | 16,098 | 16,098 | null | null | null | null |
16,192 | comment | formerarsdigita | 2007-04-24T02:43:06 | null | he didn't sell the company. he sued the company and they settled out of court. he made his money via legal action, not business or programming acumen. the sale was for pennies and was only done so that the VCs wouldn't look completely retarded for investing in the first place.<p>he didn't really have any choice but to retire. no investor will give him money and no programmer with any sense would work for him. | null | null | 15,995 | 15,995 | null | [
16201,
16194
] | null | null |
16,193 | comment | AF | 2007-04-24T02:43:17 | null | Is it? I think the documentation on the actual site is more complete. It will be nice when they just get one set of complete documentation. | null | null | 16,072 | 16,063 | null | null | null | null |
16,194 | comment | lupin_sansei | 2007-04-24T02:59:16 | null | I don't know. Back in 1999 ACS was considered pretty ok. And his writings were the Joel/Paul back then. | null | null | 16,192 | 15,995 | null | null | null | null |
16,195 | comment | lupin_sansei | 2007-04-24T03:02:42 | null | Are you sure it's not due to how your email headers and content look? I had to remove my X-Mailer "Mail-Sender" and supply a proper address with a name before Hotmail would stop putting the emails into spam. | null | null | 15,968 | 15,968 | null | null | null | null |
16,196 | comment | Goladus | 2007-04-24T03:03:48 | null | Maybe they were really good granola bars. It was basically a joke. I can't speak for her, really, but looked to me like an ice-breaker comment to get everyone relaxed.<p>It might make more sense if you understand that no one in the room would care about taking granola bars. | null | null | 15,510 | 15,293 | null | null | null | null |
16,197 | story | lupin_sansei | 2007-04-24T03:05:59 | Moore's Law and a Free Market in Childbirth | null | http://www.mises.org/story/2540 | 2 | null | 16,197 | 0 | null | null | null |
16,198 | comment | zemaj | 2007-04-24T03:07:30 | null | nm - seems to be working now. | null | null | 16,171 | 16,165 | null | null | null | null |
16,199 | story | dherman76 | 2007-04-24T03:13:41 | Venture Capital compared to the music business | null | http://www.darrenherman.com/2007/04/23/venture-capital-the-music-business/ | 1 | null | 16,199 | 0 | null | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.