Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
neelesh
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
6 ms
·
1.
▲
by
neelesh
17y ago
Agree. What we probably need is a nice way to switch between deployment/development setups, possibly by splitting settings.py like rails
2.
▲
by
neelesh
17y ago
"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 create a sample medi
3.
▲
by
neelesh
17y ago
This is good. The end-users/web devs will benefit. We have more options, more competition and hopefully better browsers because of the competition.
4.
▲
by
neelesh
17y ago
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?
5.
▲
by
neelesh
17y ago
May be franchise your service to other HN'ers in other countries? :)
6.
▲
by
neelesh
17y ago
I would upvote this a million times if possible
7.
▲
by
neelesh
19y ago
reasonably good with PyDev. Not as good as NB for RoR though
8.
▲
by
neelesh
19y ago
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. The obvious limitat
9.
▲
by
neelesh
19y ago
Ubuntu ,NetBeans(for RoR), Eclipse(for Python/Django, Java)
10.
▲
by
neelesh
19y ago
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.
11.
▲
by
neelesh
19y ago
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 experience, I can say tha
12.
▲
by
neelesh
19y ago
The preview is awesome! Hats off to your dedication!
13.
▲
by
neelesh
19y ago
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 n # stil
14.
▲
by
neelesh
19y ago
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.