Live data from Hacker News

Ask HN: What are you working on today?

news.ycombinator.com

291–300 of 314 posts

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

#291

Working on a few things: Starting to get the word out for GISQuery.com, a Q&A site for GIS professionals using OSQA. Having an interesting time getting the word out on this one since I need participation for the site to grow. Learning CodeIngniter as a PHP framework to help get a few other ideas off the ground (a revamped 140Pl.us and a new beer website). I am getting tired of trying to build highly functioning sites…

I would recommend Symfony as a PHP framework.

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

#293
post #291

Working on a few things: Starting to get the word out for GISQuery.com, a Q&A site for GIS professionals using OSQA. Having an interesting time getting the word out on this one since I need participation for the site to grow. Learning CodeIngniter as a PHP framework to help get a few other ideas off the ground (a revamped 140Pl.us and a new beer website). I am getting tired of trying to build highly functioning sites…

I would recommend Symfony as a PHP framework.

I like symfony as well but as of late I've found several things in the documentation to be segmented - such that you need to read around in several parts to find the secret recipe that actually works. I'm planning to contribute to the docs soon hopefully but with a brand new baby boy I haven't had a tremendous amount of time.

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

#294
post #41

Writing some systems integration stuff to allow US ecommerce companies to sell to Latin America.

would love to hear more about that...

Http://BorderJump.com

We are already helping companies sell to Latin America. I am working to make it easier for us to do it.

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

#296
post #85

Earlier quoted context omitted.

I'm surprised that was your conclusion. Why do you blame HTTP if the point of failure in your case seems to be the database?

That's a good question. I suppose it's because even with Memcached taking the load off the database, we still have other issues. For example, because we're dealing with stateless connections here, it's hard to know if a client is still connected to the chat. We're polling from the client to the webservice every few seconds to 'pull' new messages and also tell the server, "Hey, I'm still alive". In order to determine…

To get new messages, you could simply use long polling so it becomes push instead of pull. For checking if the user is online (I'm assuming your clients are running in web browsers), you can use the onbeforeunload to send a HTTP request that the user is leaving. Of course, you still have to poll at regular intervals because the user might have put his computer to sleep which wouldn't trigger onbeforeunload but your interval can now even be as high as 60 seconds because most clients will trigger onbeforeunload.

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

#297
post #115
post #91

Earlier quoted context omitted.

This sounds cool. Real-time auctions on the web should be a lot of fun. Post a link whenever you're done.

Genuinely curious: how is eBay not a real-time auction?

I assume they mean like an in-person auction. People increasingly bid until their max and when there are no more bids, the auction ends.

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

#298
post #246
post #238

Earlier quoted context omitted.

That's why I like binding in Flex -- making something bindable is as simple as plopping [Bindable] in front of it. And binding also isn't all or nothing, you can easily do something like text="{loan.interestRate}%" . It also has code completion for anything you put in the binding, although not quite as robust as elsewhere.

Interesting. I actually don't know the first thing about Flex. I think you've inspired me to look into it.

Flex 4 is pretty interesting -- they separated layout from the core of container components. So for example in XAML you have Grid, Canvas, Stack, etc. In Flex 4 you just have Group, which then has a layout property -- there's a few basic ones like basic(canvas) vertical, horizontal, and tile, but you can easily code your own... and then switch them on the fly.

Flex is basically a really damn good system for UI coding and design, but the ActionScript that backs it up is pretty weak compared to C#. If I could mix C# with MXML I would be in coding heaven...

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

#299

Now: drinking coffee and laying in bed reading HN. In an hour: Building an iPhone app in tandem with its Rails backend for a client.

I must say that your personal site/portfolio is fantastic. I LOVE the design.

Thanks! It was $22 from themeforest.net: http://themeforest.net/item/twicet-business-portfolio-templa...

I took the theme, converted it into Haml and SCSS, and slapped it on top of a Rails app.

It also manages my client proposals. I'm planning on adding time tracking, invoicing, and other features I need to manage client accounts sometime in future (Basecamp integration, LH integration, etc.). I might end up turning it into a SaaS product down the road. Not sure yet.

I hate getting nickeled and dimed by 37Signals, Proposable, Blinksale, and all of the other SaaS products I need to use, and would rather have everything integrated into a single stack.

Post reply on HN