uswaretech

813
Reputation
191 views

Registered User

Name uswaretech
Member for 5 months
Seen 3 hours ago
Website
Location
Age
4h
asked easy_install PIL fails
Nov
25
asked Django formwizard - IS there a way to get more than one Form on a single page
Nov
25
comment Jquery form validation - available options
You can give class="required email" to trigger both validations, email and required, that you you dont hav eto write the rule in javascript.
Nov
25
asked Jquery form validation - available options
Nov
22
comment Populating values in module namespace
But how would you do this from within mymodule?
Nov
22
asked Populating values in module namespace
Nov
21
comment Does a exception with just a raise have any use?
Thanks. Did not know that UnicodeDecodeError is a subclass of ValueError. That helps.
Nov
21
asked Does a exception with just a raise have any use?
Nov
21
comment Metaclass not being called in subclasses
Ah, ok, that work. But shouldnt return super(Z, cls).__new__ be equivalent to type.__class__.new whis is equivalent to type.__new__ which should be same as creating a new class via type?
Nov
20
asked Metaclass not being called in subclasses
Nov
17
comment How to kill headless X server started via Python?
Yes, but if I am looping within the webkit2png.py, it wont die itself.
Nov
17
revised How to kill headless X server started via Python?
Clarified - Last version had wrong info; deleted 1 characters in body
Nov
17
asked How to kill headless X server started via Python?
Nov
14
asked Migrating a svn repo to git. Multiple app in svn repo need to broken into separate git repos.
Nov
13
comment I want to start reading the Python source code. Where should I start.
I added a comment to original question, which will help me "go nuts"..
Nov
13
comment I want to start reading the Python source code. Where should I start.
Eg: If someone asked me how should I go about reading a Django project, my answer would be .. Start with the urls.py, see what urls the app/project responds to. Next look at the model to get an idea of the problem domain. Now look at the views corresponding to each url ... I want a similar answer to how it is structured.
Nov
13
awarded  Nice Question
Nov
13
asked I want to start reading the Python source code. Where should I start.
Nov
12
comment Python dictionary simple way to add a new key value pair
Ned: This is a common django pattern, return render_to_resp('template', {'a':a, 'b":b, 'c':c}). Wont it be better if I could do, render_to_resp('template', func(a, b, c, d))
Nov
12
asked What is the Yahoo openid discovery endpoint
Nov
11
awarded  Tumbleweed
Nov
8
comment Are all HttpError in python subclasses of IOError
> "Do you mean something like "all the exceptions raised by the urllib library" instead?" Umm, yes.
Nov
8
comment Are all HttpError in python subclasses of IOError
How are you finding out it is a socket error? MY code is something like: try:risky_code(); except IOError: logger.debug('...'); raise; As I am assuming that HttpError is a subclass of IOError, when I get that exception, I am assuming that it be logged. There is nothing in my logs. > So it looks like it's not a HTTPError exception at all. It looks to me like it's actually a socket.error. This class is indeed a subclass of IOError since Python 2.6. I am on python 2.5
Nov
8
revised Are all HttpError in python subclasses of IOError
added stacktrace
Nov
8
asked Are all HttpError in python subclasses of IOError
Nov
4
asked Django Tests fail with InternalError: no such savepoint. DB: Postgres, passes on mysql
Nov
4
comment Experience with Django
When you say " the automatic admin interface is fine for simple things, but eventually you'll want to create a very costumized interface for managing your website, and the auto admin site just won't cut it.", As a Django fan boy, let me ask you, which other framework gives you a Admin which is even close to what Django gives you. What will you have an Admin which is hard to customise, or no admin at all? Also Admin is just a contrib app, not a core part of Django (Although one which everyone uses).
Nov
4
asked YUI replacements for jQuery.replaceWith and jquery.append
Nov
3
asked What is a good yui replacement for jquery.live
Nov
2
asked Disable boto logging without modifying the boto files.
Oct
30
asked Doctest failing inspite of having correct output
Oct
30
comment Why do so many apps/frameworks keep their configuration files in an un-executed format?
Matthieu: Thats not the python way though. "We are all consenting adults here."
Oct
30
comment How to assert that zeo or only one of N given arguments is passed
Thank you. Your solution works, I just found Scott's answer more explicit and simple so accpted it.
Oct
30
comment How to assert that zeo or only one of N given arguments is passed
Thanks. Short, sweet and simple. Me like.
Oct
30
comment Given a latitude and longitude, and distance, I want to find a bounding box
Nicolai: Only want it to work over short distances, so can assume a flat earth etc. Also for longitude comparison we are doing a pradius division, so doesnt it take into account the change near the poles?
Oct
30
comment Given a latitude and longitude, and distance, I want to find a bounding box
Heh.. obvious now that you mention it, but then latMin = lat - halfSide/radius seems wrong. 1Km != 1000/6371 latitude distance as 1deg change in latitude is ~110 km change in distance.
Oct
30
asked How to assert that zeo or only one of N given arguments is passed
Oct
30
asked Given a latitude and longitude, and distance, I want to find a bounding box
Oct
29
comment Why do so many apps/frameworks keep their configuration files in an un-executed format?
A bare django settings file is nothing more than a key = value thing. So the power is optional. Why take it away without any benefit.
Oct
29
comment Why do so many apps/frameworks keep their configuration files in an un-executed format?
Sure if you are writing a umm game or business app maybe. But my question was specifically for users who are programmers, hence the appengine and Django reference.
Oct
29
comment Why do so many apps/frameworks keep their configuration files in an un-executed format?
app.yaml is Python only. Java has app.xml, I believe.
Oct
29
asked Why do so many apps/frameworks keep their configuration files in an un-executed format?
Oct
28
asked How am I able to assign a value to a literal? (’a’ = 10)
Oct
26
comment Python debugging tips
tab completion for one.
Oct
21
comment Daemon dies unexpectedly
I will probably add something like monit for monitoring, but I wnat to debug, why it fails so frequently. daemontools ... well its written by djb, so I am just wary of the configuration it is going to require. :)
Oct
21
asked Daemon dies unexpectedly
Oct
21
comment Difference between returning modified class and using type().
If your intent is is to show a html form which allows editing the names of all employees of a dept, inline formset is what you want. However, if fro some dept, you want to show a commission, and not for others, this is the way to do it. Both are orthogonal, and can be matched together.
Oct
21
comment Difference between returning modified class and using type().
I think the reason for dict(EmployeeForm.__dict__) was that earlier forms.Form used to return a DictProxy not a dict.
Oct
21
asked How to use beyond compare as a external svn diff tool
Oct
12
asked How to save a model without sending a signal?