Live data from Hacker News

Gmail Creator Paul Buchheit Leaves Facebook for Y Combinator

venturebeat.com

21–30 of 38 posts

Re: Gmail Creator Paul Buchheit Leaves Facebook for Y Combinator

#21
Great, clarifying talk at Startup School 2009:

http://venturebeat.com/2009/10/24/startup-school-gmail-frien...

Honestly, a large part of that talk has stayed with me and kept my main outside-of-work project quietly in the background. I'd like to think I had the confidence and motivation before that talk. But somehow that talk just clicked for me. And has encouraged me to keep at it.

His approach is sort of what we all, I think, aspire for. A really clear, honest core outlook. And then entrepreneurship as bottom-up programming. It's actually much more difficult than it seems -- because you have to look ahead compared to a lot of people and then insist on relearning things in a bottom-up approach. You see it with all great founders (Zuck, etc.). On the outside, they seem lucky. But if you look more closely, they have a habit of putting themselves in the right position by looking two or three steps ahead (as I think Adam D'Angelo's talk @ Startup School 2010 was partly getting at). But then they insist on revalidating things from the ground up (e.g., Paul B's 'winging it' and deriving the overgeneralized nature of advice without a particular context, etc.). Anyway, they all make it look easy. But if you're smart, I think you look at them as real inspiration in terms of getting things done the right way.

Re: Gmail Creator Paul Buchheit Leaves Facebook for Y Combinator

#22
post #18
post #12

Earlier quoted context omitted.

Paul is a very smart guy. He is a tech visionary, and is extremely practical financially. He will be a huge boon for YC even more than he already has been, and a loss for Facebook. He previously stated he was not involved in any e-mail platform for Facebook, but the timing is interesting indeed. Great news.

I have no idea what Paul was working on at Facebook, but I believe the timing has to be coincidental, because we drove it. The reason this had to get announced today is that interviews for w2011 start on Monday.

Well, he was at FB at least 1 year, so there was some vesting I assume? Not entirely incidental, is it?

Re: Gmail Creator Paul Buchheit Leaves Facebook for Y Combinator

#23
Forget about Facebook, etc, YC is the news. I've been following it (and HN) for close to three years now, it went from a locally cool incubator to a place where people look up for world-class innovation.

Someone should write an in-depth story about the rise of YC, would be an excellent read!

Re: Gmail Creator Paul Buchheit Leaves Facebook for Y Combinator

#26
post #14

Earlier quoted context omitted.

I would LOVE to see that

logicalmoron@news.ycombinator.com

Question --- I haven't done much webdev stuff so this may sound silly, but --- why can't PMs work that way? Like, why can't I send markbao a private message by sending an email to markbao@news.ycombinator.com? And then the site could forward it on to his email address, or if the site wants to get fancy they'd store it in a database and display them as "comments" in the target user's "editing profile" screen (whenever you edit your own profile).

More than that though, I'd like to learn about the nitty-gritty of e-mail. As a game developer I do mostly C++ application code, so everyone else probably has way more knowledge than I... But for example I'd like to be able to embed the ability for my programs to send emails (as a debugging mechanism). Or even receive emails! (Imagine taking down some number of your servers, for patching purposes, by sending a "console command" as an email to servers+someadminpassword@yourservice.com. Or running queries on your servers by sending the query as an email, and then they email back the response.

How would I write a C++ function like:

  bool SendEmail( const tchar* destination_email_address, const tchar* subject, const tchar* body );

Re: Gmail Creator Paul Buchheit Leaves Facebook for Y Combinator

#28
post #26
post #14

Earlier quoted context omitted.

logicalmoron@news.ycombinator.com

Question --- I haven't done much webdev stuff so this may sound silly, but --- why can't PMs work that way? Like, why can't I send markbao a private message by sending an email to markbao@news.ycombinator.com? And then the site could forward it on to his email address, or if the site wants to get fancy they'd store it in a database and display them as "comments" in the target user's "editing profile" screen (whenever…

A primary reason why a site wouldn't support PMs to markbao@news.ycombinator.com is that there is no access control. The address would get spammed too easily from senders with no affiliation with Hacker News. The current mechanism of only supporting messaging within the site limits this.

Re: Gmail Creator Paul Buchheit Leaves Facebook for Y Combinator

#29

"Y Combinator, the increasingly famous Silicon Valley incubator.." What an odd modifier.

Not particularly. What's odd about it?

It's slightly more complex than desirable for good writing, but it's certainly well within normal bounds for size, especially for news articles. News articles do that sort of thing a lot.

Re: Gmail Creator Paul Buchheit Leaves Facebook for Y Combinator

#30
post #26
post #14

Earlier quoted context omitted.

logicalmoron@news.ycombinator.com

Question --- I haven't done much webdev stuff so this may sound silly, but --- why can't PMs work that way? Like, why can't I send markbao a private message by sending an email to markbao@news.ycombinator.com? And then the site could forward it on to his email address, or if the site wants to get fancy they'd store it in a database and display them as "comments" in the target user's "editing profile" screen (whenever…

When I've needed to send mail from C, I just call a CLI mail user agent like http://en.wikipedia.org/wiki/Mailx, and configure it to talk to a local MTA (traditionally sendmail), which buffers messages locally before sending them to a real mail server on the internet (I use authsmtp). Python has a nice builtin library for talking to my local SMTP server like, I suspect, many other modern languages.

There's no technical reason why email addresses like markbao@news.ycombinator.com can't work. In fact, I'd argue Tumblr/Posterous have some of the same core ideas you're proposing.

Post reply on HN