Agree. What we probably need is a nice way to switch between deployment/development setups, possibly by splitting settings.py like rails
"Why serving static files in development has to be a additional setup, as no developer wants to setup a server for serving static files, I am aware of ‘django.static.serve’ but still that is an additional setup, why not…
This is good. The end-users/web devs will benefit. We have more options, more competition and hopefully better browsers because of the competition.
It would be great if I can select a template for my mail.Definitely not on the landing page, it would clutter such a nice and clean page. May be a 'More...' option?
May be franchise your service to other HN'ers in other countries? :)
I would upvote this a million times if possible
reasonably good with PyDev. Not as good as NB for RoR though
I used a slightly different approach of combining acts_as_tree (for faster updates/inserts) and added a dotted_id for faster reads. The dotted id is a string,as in 0001.0002.0007. Index this column and its fairly fast.…
Ubuntu ,NetBeans(for RoR), Eclipse(for Python/Django, Java)
The 404 not found page is tomcat's default page. A custom page would be better. The favicon is again tomcat's default. As someone mentioned earlier, the image quality needs improvement.
We are consultants here in Bangalore and we have routinely done this on a Python/Django social networking web app and a Ruby on Rails web app. code-test-svn commit - svn export , pretty much. With a lot of java…
The preview is awesome! Hats off to your dedication!
That holds true for the given ruby implementation as well, since n is incremented only in the scope of foo and not in the calling scope. def foo (n) lambda {|i| n += i } end n=5 a = foo(n) puts a.call(3) #prints 8 puts…
The python implementation looks overly complicated. I was thinking that the ruby and python implementations would be very similar. Here it goes def foo(n): return lambda i:n+i Tried it (Python 2.5) and it works.
Agree. What we probably need is a nice way to switch between deployment/development setups, possibly by splitting settings.py like rails
"Why serving static files in development has to be a additional setup, as no developer wants to setup a server for serving static files, I am aware of ‘django.static.serve’ but still that is an additional setup, why not…
This is good. The end-users/web devs will benefit. We have more options, more competition and hopefully better browsers because of the competition.
It would be great if I can select a template for my mail.Definitely not on the landing page, it would clutter such a nice and clean page. May be a 'More...' option?
May be franchise your service to other HN'ers in other countries? :)
I would upvote this a million times if possible
reasonably good with PyDev. Not as good as NB for RoR though
I used a slightly different approach of combining acts_as_tree (for faster updates/inserts) and added a dotted_id for faster reads. The dotted id is a string,as in 0001.0002.0007. Index this column and its fairly fast.…
Ubuntu ,NetBeans(for RoR), Eclipse(for Python/Django, Java)
The 404 not found page is tomcat's default page. A custom page would be better. The favicon is again tomcat's default. As someone mentioned earlier, the image quality needs improvement.
We are consultants here in Bangalore and we have routinely done this on a Python/Django social networking web app and a Ruby on Rails web app. code-test-svn commit - svn export , pretty much. With a lot of java…
The preview is awesome! Hats off to your dedication!
That holds true for the given ruby implementation as well, since n is incremented only in the scope of foo and not in the calling scope. def foo (n) lambda {|i| n += i } end n=5 a = foo(n) puts a.call(3) #prints 8 puts…
The python implementation looks overly complicated. I was thinking that the ruby and python implementations would be very similar. Here it goes def foo(n): return lambda i:n+i Tried it (Python 2.5) and it works.