Live data from Hacker News

Ask HN: I built a site that just went ridiculously viral. What do I do now?

news.ycombinator.com

111–120 of 195 posts

Re: Ask HN: I built a site that just went ridiculously viral. What do I do now?

#111
post #95

Earlier quoted context omitted.

>To be fair, Reddit has a noted capacity for charity and generosity Understatement of the year.

>Understatement Entirely necessary here, even a hint of hyperbole and the pedants come out of the woodwork.

Entirely necessary?

Re: Ask HN: I built a site that just went ridiculously viral. What do I do now?

#112
post #85
post #78

Earlier quoted context omitted.

Last week I optimized some MySQL queries which triggered the 'not-using-index' warning, even when I had all fields which were used for selecting and sorting indexed. I think a JOIN on a nested subselect somehow confused MySQL: when I duplicated some extra restraining WHERE clauses into the subselect, response shot up from 800msec to 12msec per query. Very nice. But the query still shows up as 'not-using-index', which…

MySQL's query plan is odd at times. What does an explain look like on that query? If any portion of the query, including subselects isn't able to use an index, it will report it. You can try to force indicies with USE INDEX/FORCE INDEX which can sometimes help.

Ah, I was having trouble with another slow query; however, the EXPLAIN showed that the correct indices were used. I managed to speed it up by restricting the size of the inner SELECT with some extra constraints. From 4 seconds downto 0.1 seconds!

Re: Ask HN: I built a site that just went ridiculously viral. What do I do now?

#113
post #89
post #13

Heh, I was wondering what this was when I first saw it a few hours ago. I've seen 5-6 people I follow on Tumblr use this thing already. I suggest migrating it to Heroku. Push your code, copy over the database, and crank your dynos up. They charge by the hour, so as an example if you have ~10 dynos running (roughly equivalent to 10 thin instances, but slightly better) for 5 days (or however long it takes for the initi…

There's a bit of magic involved with things like compass/sass and Paperclip on Heroku (you have to use Amazon S3 for storage and there is some other setting I can check on). Anyway Mark, I have a bunch of apps on Heroku that use all kinds of wacky stuff—including the aforementioned gems—so email me at jarin (at) robotmodehq.com if you decide to try out Heroku and get stuck. I can send over working code snippets that…

I got a few emails about the Compass/SASS on Heroku thing, so I posted it up on my blog in case anyone who didn't email me needs it. Compass and SASS are notoriously painful to get up and running on Heroku, and everyone says to use the Hassle gem but it never works. So here's the SUPER MAGIC WAY: http://jarinheit.posterous.com/the-ultimate-secret-to-gettin...

Re: Ask HN: I built a site that just went ridiculously viral. What do I do now?

#114
post #94

About monetizing: you could show the first 2 words only, and charge a small fee for the third ? I guess people would pay to see what is said about them at least.

This is a terrible terrible terrible idea. You don't want your users to feel that you are exploiting them. It will just pi$$ them off. Just go with a bunch of well placed ads.

Re: Ask HN: I built a site that just went ridiculously viral. What do I do now?

#115
post #55

I don't suppose this traffic will sustain. Slap an ad right in the center and monetize the hell out of it. Or get a sponsor. Also, for the short term, Amazon EC2 would be the best option to handle the traffic.

I'll sponsor, or more accurately, DDG will.

Re: Ask HN: I built a site that just went ridiculously viral. What do I do now?

#117
post #68

http://markbao.com/about You're 17/18? Kids these days. Geeze. Fine work sir, though I don't have much advice to offer beyond what has already been stated.

Yeah, and I met Mark 3 or 4 years ago and he had already started at least one and maybe 2 successful startups.

According to http://juniorbiz.com/interview-mark-bao (February this year) Mark has started 11 businesses and 3 foundations, and sold 3 of them already.

Re: Ask HN: I built a site that just went ridiculously viral. What do I do now?

#118
post #38

Adsense. With only about 10k hits a day, my bedtime calculator http://sleepyti.me brings in $10-$20/day. At the rate you're getting users, you could probably bring in a significant load of cash. Good luck!

Depends on the niche and the website. I have made a blogspot blog and brought it to 4% CTR and $20 CPM. That's +$200 a day.

those are good stats. Care to share the URL?

Re: Ask HN: I built a site that just went ridiculously viral. What do I do now?

#119

FYI: Heroku is fantastic for scaling apps. But if it's your database that's the bottleneck...you've got problems. Because your options with SQL are scaling up or sharding, each quite painful. If you want any advice, ping me.

Perhaps rewriting the database to use MongoDB? Their http://www.mongodb.org/ tutorial took about 10 minutes and is really easy to get to know.

As a DB they say it's designed for SPEED and SCALE. It might be worth looking at. (who's got the time right?) :)

Re: Ask HN: I built a site that just went ridiculously viral. What do I do now?

#120
post #95

Earlier quoted context omitted.

>To be fair, Reddit has a noted capacity for charity and generosity Understatement of the year.

>Understatement Entirely necessary here, even a hint of hyperbole and the pedants come out of the woodwork.

This starts the Pink Panther theme playing in my head.
Post reply on HN