I'm in Python. I'm happiest just doing import cgi ... I always feel guilty though.
Ask HN: What web framework(s) do you guys use?
61–70 of 142 posts
Re: Ask HN: What web framework(s) do you guys use?
#62Re: Ask HN: What web framework(s) do you guys use?
#63A full web service to implement '/add/1/2' is just
require 'sinatra'; get('/add/:a/:b') { params[:a].to_i + params[:b].to_i }
Re: Ask HN: What web framework(s) do you guys use?
#64Earlier quoted context omitted.
Sure, maybe if you've never done it before because it's a learning experience, but it's a patently horrible idea otherwise.
It isn't a horrible idea. Using a ready made framework all the time without regard if it's right for the job is a horrible idea. For some apps which have a certain level of complexity and require some extra flexibility, you end up wasting more time fighting the framework than getting the job done. It helps if you have a well defined standard in place, for python, that means WSGI. Coupled with good libraries, it's har…
Maybe you end up writing a couple scripts to tie them together or something, but it's hardly a framework. And in many cases, yes, it is a better choice than a framework. And still a better choice than writing your own framework.
Re: Ask HN: What web framework(s) do you guys use?
#65Write your own!
Re: Ask HN: What web framework(s) do you guys use?
#66codeigniter and more recently kohana. I like codeigniter a lot because you have more control over things. Frameworks that get things done extremely fast are nice, but I like to have more control over things. And Kohana was modeled after codeigniter, but in completely PHP5, which is why I like it the most.
Re: Ask HN: What web framework(s) do you guys use?
#67Re: Ask HN: What web framework(s) do you guys use?
#68I use LeftParen ( http://leftparen.com ), a PLT Scheme web framework (that I happen to maintain).
Re: Ask HN: What web framework(s) do you guys use?
#69Re: Ask HN: What web framework(s) do you guys use?
#70Cappuccino. Because we created it. ;)