Live data from Hacker News

Ask HN: What are you working on today?

news.ycombinator.com

271–280 of 314 posts

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

#271
post #17

I'm creating a log parser for yellowpages.ca with Redis.

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.

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

#272
post #154

Same project I've been working on for the better part of 3 months, unfortunately: a web based chat using GWT to replace a flash based one. The primary reasons are: we wanted to control the source code and remove dependecy on third-party products and becase we want the chat to work on iPad so flash is out. Running into tons of stumbling blocks primarily around keeping the app near realtime and stable. It's GWT on the…

The client interface is up to you, but no need to re-invent the serverside part: From http://xmpp.org/extensions/xep-0124.html This specification defines a transport protocol that emulates the semantics of a long-lived, bidirectional TCP connection between two entities (such as a client and a server) by efficiently using multiple synchronous HTTP request/response pairs without requiring the use of frequent polling or…

As an aside: If you're not willing to make that substantial kind of change to your system at this point, I would at least recommend basing your messaging system on something that's designed to do it (i.e. a message queue) as opposed to a relational database. RabbitMQ has had quite good reviews from what I've seen, with clustering and persistence available.

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

#274

Earlier quoted context omitted.

That's a given (otherwise he wouldn't go). The question is -- why does patio11 enjoy Japan?

If you moved my friends, my church, my town, and my community to Kansas, then I'd enjoy living in Kansas, too.

What is so special in your church/town/community in Japan that just in a few years you got so much accustomed to it?

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

#277
post #84

working on the ui components of the next gen Kindle :P Other than that, finishing up the ipad/iphone version of a children story I have been working at home. Almost there.... kinda cute actually.

What is storyfun.com? It says "coming in June 2010".

Something I do for fun. Children's stories. I need to update the site, but yeah I am behind as I have been really busy on my job. It should say "September" or better, "sometime soon..." :P

http://www.storyfun.com/spacecat/

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

#278
I'm the biz cofounder at Timetric, so I've spent quite a bit of time on local and transatlantic phonecalls and taking meetings.

We're a really technical company, though; the three of us who founded it met as postdoc researchers doing materials simulation. That means we all can code, though my cofounders are way stronger than I am, but today I've got the chance to do some programming. Internal editorial-awareness tools, mostly.

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

#279
So my customer has a critical production database that was hit by excessive locking issue on a table that slowed everything to a halt. It looks like an abuse of existing feature, so I worked on collecting enough information to help the developers find the broken feature and abusing users.

This also seems to be impacting parts of the app that shouldn't be touching that table, and I'm trying to figure out why that is happening.

Life is exciting at operations :)

Post reply on HN