Live data from Hacker News

Ask HN: What web framework(s) do you guys use?

news.ycombinator.com

101–110 of 142 posts

Re: Ask HN: What web framework(s) do you guys use?

#103
post #7

Django, because it has magical powers, who can beat that?

I like Python and I like the way Django does controllers (not so much the template engine though). But I cannot use Django or any Python, Ruby or PHP setup in my current project because I'm keeping a lot of data in memory and that doesn't work with multi-process architectures.

So I'm using a very small dispatcher Servlet to pass JSON messages on to POJOS and do all the templating in the browser using jquery.

I'm bored to death (and rather annoyed) by Java so I'm always looking for alternatives that support my architecture.

Re: Ask HN: What web framework(s) do you guys use?

#107

WebObjects. I don't like Java, or Eclipse, which makes it an odd choice, but it was Rails before Rails, and still has a lot of advantages over it. The ORM works hand-in-hand with the framework to do proper persistence, and while I rage against the tools sometimes, they're still better than being dumped back at a texteditor. If only Apple would give it some more love, it'd be killer.

WebObjects for me too :-) And I also don't like Java or Eclipse. But at least with DirectToWeb one can keep the Java code to a minimum.

Re: Ask HN: What web framework(s) do you guys use?

#109
post #4

If you do it yourself, does it count as a framework? Server: python, postgresql, cherrypy, simplejson Client: Javascript, HTML, CSS, Dojo, AJAX. All the HTML is loaded up front and then AJAX for all the rest. Dojo insulates me from browser quirks. TDD Python is what I use at work (and love) and is good for complex algorithms (language morphology, in arabic). I don't use an all-encompassing framework because I need to…

I'll never understand why people use DoJo. Its greatest strength are all the "widgets" i guess you'd call them. However they are all not created equal. Some are well polished and deliver acceptable performance levels and other times they are just demos and hacks.

What do you recommend, in terms of widgets?
Post reply on HN