Live data from Hacker News

Ask HN: What are you working on today?

news.ycombinator.com

301–310 of 314 posts

Re: Ask HN: What are you working on today?

#301
post #271

Earlier quoted context omitted.

oh, interesting. I wanted to use redis for log-parsing, but was scared by the prospect of keeping everything in ram. Ended up using mongodb instead, but I'd be interested to hear how you get on with redis.

If you know what stats you want to collect before parsing, the memory usage is very low. The most resource intensive part in this application is loading the filtered logs for all machines into a sorted set (which is necessary to get all the events in chronological order). That key is only temporary though. That said, Redis 2.x supports virtual memory so it's less of a problem for a longer-term data-store.

That's useful information; thanks for answering!

Re: Ask HN: What are you working on today?

#302
post #83

a hacker news rss filter written in haskell that uses redis to store feed information. i've found a few filters that are like "only show feeditems which have 10+ votes" etc. I'm going for something a little more complicated - most popular n posts by hour, day, week and month.

I've been thinking about something like this. Basically, seeing the Top 'N' posts for a given time period. Like a digest of the Top 20 posts for the previous 24 hours delivered by email or RSS. I want an option to retrieve some/all of the comments for these stories as well. Does something like this exist already? RSS is not an optimal delivery method for crowd sourced news sites like HN, Reddit, etc.

I already use something like this on a weekly basis for reddit.

http://weeklyreddit.appspot.com/

yeah basically you want some sort of digest, unfortunately weekly is often too slow to contribute, so dayly is pretty good. I personally don't mind if its done via rss.

Re: Ask HN: What are you working on today?

#303
post #111

Today I released my three-day project "I Write Like". You paste some text, it analyzes it and tells you what famous writer you write like. Link: http://iwl.me

Nice idea. I'd be intrigued to know what features of the writing (other than vocabulary) you're comparing. [some advanced work in this area, plus a perfect UI, could be a really interesting project to work on, and something you could sell]

Other than vocabulary: number of words, commas, and semicolons in sentences, number of sentences with quotation marks and dashes.

Re: Ask HN: What are you working on today?

#304
post #241

Earlier quoted context omitted.

This is a lot of fun but the great variety of results I received left me without any sense of who I may actually write like. I analyzed a series of correspondence, all written within several weeks, and similar in tone, and I was told that I write like: Dan Brown, James Joyce, Isaac Asimov, Stephen King and Douglas Adams. Anyway, I love the concept. Please add Robert Louis Stevenson (Strange Case) to your collection.…

Thanks! I'll add Stevenson on the next update.

Done.

Re: Ask HN: What are you working on today?

#305
post #130

Earlier quoted context omitted.

I just spent about 15 minutes messing around with this. Very neat. I then made the unfortunate decision to show it to my girlfriend, who is now angry at me that it said she writes like Dan Brown. I'd be curious to know how large the pool of authors is.

:-) Currently 29 authors. Will feed it with more.

Now 40.

Re: Ask HN: What are you working on today?

#307
post #166

Client side image resizing for an image uploader, part of a larger web app build. Saves a ton of time/bandwidth/CPU. So far its turned really well. Its pretty easy actually, thanks to the most recent beta of SWFUpload. If you want to implement yourself, make sure to grab the patched .swf or you may have trouble queueing uploads. SWFUpload 2.5 Beta: http://code.google.com/p/swfupload/downloads/detail?name=SWF... Patch…

I looked into this but does it degrade well for non-flash users?

Re: Ask HN: What are you working on today?

#309
Last night, I set up IMAP, TLS/SSL, and webmail on a server for myself, to liberate myself from third parties (i.e. GMail) having a searchable corpus of my email history.

In addition to that, I recently adjusted my fork of RVM[1] to work with Gentoo again (installed and managed systemwide as root, with users read-only).

Also, for the past week or two, I've been helping with RDBI[2], a new project aiming to be to database access what Rack is to web servers and web frameworks.

[1]: http://rvm.beginrescueend.com/

[2]: http://github.com/RDBI

Re: Ask HN: What are you working on today?

#310
post #111

Today I released my three-day project "I Write Like". You paste some text, it analyzes it and tells you what famous writer you write like. Link: http://iwl.me

Cool. A couple suggestions: When you get your result, make the name clickable, and go to some sensible place, like a Wikipedia page, or such. Also, to be able to see a listing of all possible names, and perhaps a few stats (how many people get each name as a result, etc.) would be cool. :)

Good work; show me more (I subscribed).

Post reply on HN