Earlier quoted context omitted.
How do you know it? Http header viewer shows Reddit use lighttpd/1.4.13.
He is referring to: http://reddit.com/info/29qac/comments/c29rpx Summary if you don't know the story: aaronsw wrote web.py, founded Infogami (yc funded) and merged with Reddit. Then he had a falling out with spez and kn0thing (original founders of Reddit). When Reddit was rewritten, web.py was not used. I personally like web.py. Any of you using it for your startup/projects? (May be we can swap tips) If you are not u…
Move over mod_python, here comes mod_wsgi.
11–18 of 18 posts
Re: Move over mod_python, here comes mod_wsgi.
#12Earlier quoted context omitted.
He is referring to: http://reddit.com/info/29qac/comments/c29rpx Summary if you don't know the story: aaronsw wrote web.py, founded Infogami (yc funded) and merged with Reddit. Then he had a falling out with spez and kn0thing (original founders of Reddit). When Reddit was rewritten, web.py was not used. I personally like web.py. Any of you using it for your startup/projects? (May be we can swap tips) If you are not u…
Steve is too lazy (in the good sense) to have ditched web.py for anything except legitimate technical reasons.
Re: Move over mod_python, here comes mod_wsgi.
#13Earlier quoted context omitted.
Steve is too lazy (in the good sense) to have ditched web.py for anything except legitimate technical reasons.
Thank you. This is exactly what I was wondering about and wanted to know from someone in the know.
Re: Move over mod_python, here comes mod_wsgi.
#14Earlier quoted context omitted.
Thank you. This is exactly what I was wondering about and wanted to know from someone in the know.
Spez had mentioned, off-handedly, that there tend to be painful bugs in the main web.py distributions: http://programming.reddit.com/info/14v8a/comments/c14y1i
Re: Move over mod_python, here comes mod_wsgi.
#15Earlier quoted context omitted.
Spez had mentioned, off-handedly, that there tend to be painful bugs in the main web.py distributions: http://programming.reddit.com/info/14v8a/comments/c14y1i
Thanks nos`. Are you still using Pylons? And templates? Would you recommend MochiKit for js lib?
For templates, we use Mako after having previously used Cheetah, same as the rewritten Reddit. Mako is a very well-done, well-thought-out library. There were some things that Cheetah had a lot of trouble with (like unicode support and fragment libraries) that Mako handles without breaking a sweat.
For JS lib, we eventually settled on jQuery after having tried out Prototype, YUI, and Mootools (never used Mochikit, sorry). This was largely because that seems to be where the momentum is these days. Also, jQuery has a very elegant selector + plugin architecture and a growing collection of plugins. And it's the first JavaScript library I've seen that's intimately aware of namespace issues and tries to balance ease-of-use (no silly YAHOO.widgets.slider.SliderThumb chains here) and not-breaking-anything. This has been a major issue at my day job - we use several Prototype-dependent libraries and they all seem to be incompatible with each other, along with any other JS libraries.
On the downside, jQuery is still fairly immature, so you may have to write some widgets yourself that are provided with other libraries. That's changing quickly though, since many people are writing plugins now.
Re: Move over mod_python, here comes mod_wsgi.
#16Earlier quoted context omitted.
How do you know it? Http header viewer shows Reddit use lighttpd/1.4.13.
He is referring to: http://reddit.com/info/29qac/comments/c29rpx Summary if you don't know the story: aaronsw wrote web.py, founded Infogami (yc funded) and merged with Reddit. Then he had a falling out with spez and kn0thing (original founders of Reddit). When Reddit was rewritten, web.py was not used. I personally like web.py. Any of you using it for your startup/projects? (May be we can swap tips) If you are not u…
Re: Move over mod_python, here comes mod_wsgi.
#17Earlier quoted context omitted.
He is referring to: http://reddit.com/info/29qac/comments/c29rpx Summary if you don't know the story: aaronsw wrote web.py, founded Infogami (yc funded) and merged with Reddit. Then he had a falling out with spez and kn0thing (original founders of Reddit). When Reddit was rewritten, web.py was not used. I personally like web.py. Any of you using it for your startup/projects? (May be we can swap tips) If you are not u…
I've been using web.py for about a month for a small side project. I like it very much, but there are some pretty big things that are missing. Like, having to write a GET handler to serve images, for instance.
Re: Move over mod_python, here comes mod_wsgi.
#18Earlier quoted context omitted.
I've been using web.py for about a month for a small side project. I like it very much, but there are some pretty big things that are missing. Like, having to write a GET handler to serve images, for instance.
If you keep your images (and CSS, and Javascript) in a /static directory, the built-in webserver will serve them automatically. When you deploy to production you can setup aliases in your HTTP conf to handle it.