Live data from Hacker News

How I Got My First 1000 Users in 1 Day

popcornryan.tumblr.com

21–30 of 124 posts

Re: How I Got My First 1000 Users in 1 Day

#21
post #8
post #4

Earlier quoted context omitted.

His second main takeaway: > If your post doesn’t gain traction on Hacker News initially, delete it and try posting another day. This probably holds true for sites like Reddit as well. Which makes me a little uneasy..

why?

It's promoting repeated posting of the same article in attempts to get lucky. It borders in the grey area of spam.

Spam works. But it's still spam.

Re: How I Got My First 1000 Users in 1 Day

#22
post #18
post #17

Please add push notifications? If you log in, and no one is around, the app gets closed pretty quickly. I have checked back multiple times, and always seem to miss everyone chatting. I would love to know if someone close by is online or chatting, so that I don't have to sit there hoping someone sees my tepid 'Hello?'. I don't know if push notifications are the correct answer, but letting me know that there was activi…

Yes, you're absolutely right. I was kickin myself all day yesterday because push notifications weren't working. I couldnt figure out why but my guess was it had to do with the provisioning profile. i resubmitted late last night, and requested expedited review. hopefully itll be out in the next few days. either way, thanks for the constructive feedback!

How did you implement it?

I was writing that comment, and kept thinking of the possible annoying implementations. For example, I probably don't want a notification every single time someone within 1 mile sends a message.

Some seemingly sane ideas off the top of my head, which I think would be useful and not too annoying:

* A timeout, where I get a notification if there is a new message, after a period where no messages were sent near me

* Notification if I send a message with no reply, close the app, and then someone replies

* Notification if there is a particularly active conversation around me

Re: How I Got My First 1000 Users in 1 Day

#25
post #12

I have a side project (dmtri.com). It lacks active users right now. I don't mind not having too many registered users as the website doesn't require you to sign up. I just wish that people would visit more and write more. Obviously the problem is that there isn't much going on actively on the site. However, I detest the thought of spamming every facebook groups and such. I tried organically growing by writing really…

As someone with several side projects, I feel your pain.

You probably need to make the site appear more active, until there's enough interesting content to keep visitors there a while and encourage them to post.

Re: How I Got My First 1000 Users in 1 Day

#26
post #19

Users.all.count made me cringe.

what would you use ?

You should use "User.count", which will do something like "select count(*) from users".

"Users.all.count" will needlessly read in all users into memory and then return a count. That might work OK for 1000 users, but beyond that?

Re: How I Got My First 1000 Users in 1 Day

#27
post #19

Users.all.count made me cringe.

what would you use ?

In Rails 4, User.count and User.all.count both do the same thing:

  SELECT COUNT(*) FROM "users"
In earlier versions, User.all.count executes:

  SELECT "users".* FROM "users"
because it is pulling back all fields from all users into memory, instead of just asking the database to check the index for a count.

Re: How I Got My First 1000 Users in 1 Day

#28
post #8

Earlier quoted context omitted.

why?

It's promoting repeated posting of the same article in attempts to get lucky. It borders in the grey area of spam. Spam works. But it's still spam.

the post got 112 upvotes yesterday and stayed on the front page all day. that many upvotes is an indicator of relevant content, not spam.
Post reply on HN