Live data from Hacker News

Ask HN: feedback on my app - search your Twitter timeline

news.ycombinator.com

1–10 of 18 posts

Ask HN: feedback on my app - search your Twitter timeline

#1
I'm a developer at IndexTank, we are having an internal contest similar to the public one we had with Heroku a few days ago. My entry is an app to search your personal twitter timeline, something I've been wanting Twitter to do but for some reason they don't. Does anyone find this useful?

http://friendtweets.heroku.com/

Re: Ask HN: feedback on my app - search your Twitter timeline

#5
Definitely something that I have been wanting for years. Not sure about your implementation, though. You are aware that twitter search only goes back a couple of weeks? Somehow I couldn't find the things I expected to find.

Should I be more patient waiting for results (in case your app loads all my friend's tweets incrementally)? Then maybe you should display a spinner or something.

Re: Ask HN: feedback on my app - search your Twitter timeline

#7
post #5

Definitely something that I have been wanting for years. Not sure about your implementation, though. You are aware that twitter search only goes back a couple of weeks? Somehow I couldn't find the things I expected to find. Should I be more patient waiting for results (in case your app loads all my friend's tweets incrementally)? Then maybe you should display a spinner or something.

Twitter seems to be over capacity, that's probably preventing your timeline from being indexed.

Re: Ask HN: feedback on my app - search your Twitter timeline

#8
post #5

Definitely something that I have been wanting for years. Not sure about your implementation, though. You are aware that twitter search only goes back a couple of weeks? Somehow I couldn't find the things I expected to find. Should I be more patient waiting for results (in case your app loads all my friend's tweets incrementally)? Then maybe you should display a spinner or something.

I'm fetching your timeline, you friends timelines, and indexing them with IndexTank.

It's incremental, so it may take a while. There's a limited number of allowed twitter API calls per hour, so in case you have lots of friends it'll take some time to have them all indexed.

About the status, there's a status bar on the upper right corner.

Re: Ask HN: feedback on my app - search your Twitter timeline

#9
post #5

Definitely something that I have been wanting for years. Not sure about your implementation, though. You are aware that twitter search only goes back a couple of weeks? Somehow I couldn't find the things I expected to find. Should I be more patient waiting for results (in case your app loads all my friend's tweets incrementally)? Then maybe you should display a spinner or something.

You can get around the twitter's search limit, by requesting their timelines, which goes up to 3200 of their tweets - you can get 200 tweets per API call.

I believe http://snapbird.org/ does this for "searching beyond Twitter history".

But if you try this on all of your friends, it soon becomes very, very slow. Eg if you have 100 people you follow, and they all have ~2000 tweets (or that's how deep you want to go), you'll have 1000 API requests. That's for one users' friends timeline.

Re: Ask HN: feedback on my app - search your Twitter timeline

#10
post #9
post #5

Definitely something that I have been wanting for years. Not sure about your implementation, though. You are aware that twitter search only goes back a couple of weeks? Somehow I couldn't find the things I expected to find. Should I be more patient waiting for results (in case your app loads all my friend's tweets incrementally)? Then maybe you should display a spinner or something.

You can get around the twitter's search limit, by requesting their timelines, which goes up to 3200 of their tweets - you can get 200 tweets per API call. I believe http://snapbird.org/ does this for "searching beyond Twitter history". But if you try this on all of your friends, it soon becomes very, very slow. Eg if you have 100 people you follow, and they all have ~2000 tweets (or that's how deep you want to go), y…

I'm doing something like that on my app. Even requesting 200 tweets per API call, it takes a while to index when you have lots of friends.
Post reply on HN