zgoda

2,921
Reputation
291 views

Registered User

Name zgoda
Member for 1 year
Seen 9 hours ago
Website
Location Warsaw, Poland
Age 38

I just love to write code. Thanks God, people still want to pay me for that. :)

Buzzwords: Python, WSGI, Django, Werkzeug, Jinja, javascript, jQuery, Google AppEngine.

Oct
12
comment Using Python locale or equivalent in web applications?
These belong to l10n (localization), not i18n. I can recommend Babel - babel.edgewall.org, it has nice Django integration and is much more accurate than python's built in locale module.
Oct
12
answered Using Python locale or equivalent in web applications?
Oct
9
accepted Django: ajax response for valid/available username/email during registration
Oct
9
comment Django: ajax response for valid/available username/email during registration
Exactly, sir. :)
Oct
8
answered How to deal with query parameter’s encoding?
Oct
8
answered Django: ajax response for valid/available username/email during registration
Oct
6
revised Deploying Django: How do you do it?
edited body
Sep
24
answered Tons of false positives from Django’s CSRF middleware?
Sep
17
awarded  Yearling
Sep
9
answered django newb, not seeing postback
Sep
8
awarded  Popular Question
Sep
3
comment Center Google Map Based on geocoded IP
Works for me like charm.
Sep
1
accepted Django: When saving, how can you check if a field has changed?
Sep
1
answered Django: When saving, how can you check if a field has changed?
Aug
31
comment Python: Memory leak debugging
Try with the code from SVN, the leak has been fixed but update has not been released yet.
Aug
28
answered Python: Memory leak debugging
Aug
28
answered Why does django enforce all model classes to be in models.py?
Aug
28
comment Python: Memory leak debugging
If you use Django ORM, you use extension module - DB-API database driver. Is this MySQLdb? Current version has known cursor memory leak when connection is established with use_unicode=True (which is the case for Django>=1.0).
Aug
28
accepted django, google maps integration.
Aug
26
comment Gender problem in a django i18n translation
Python gettext library does not support contexts, see bugs.python.org/issue2504. Babel does not help here too, since msgctx support is planned for 1.0 release, see babel.edgewall.org/milestone/1.0
Aug
25
comment Django i18n and python locales (and dates)
I'd say it does "i18n" as advertized. Formatting dates and monetary values is "l10n" (localization) which is absent in Django anyways. That's the domain of Babel library. :)
Aug
24
accepted Django i18n and python locales (and dates)
Aug
24
accepted Alter django admin change list title text
Aug
24
answered Django i18n and python locales (and dates)
Aug
21
answered Alter django admin change list title text
Aug
21
comment How can I tell whether my Django application is running on development server or not?
Another META field that is specific for dev server: SERVER_SOFTWARE has strings WSGIServer and Python on dev and anything you configure in your HTTP server on "deployed".
Aug
21
answered Running a python script outside of Django
Aug
20
awarded  Nice Answer
Aug
10
awarded  Nice Answer
Jul
3
comment How to open a file on app engine patch?
This does not mean app-engine-patch has anything in common - this is the whole call stack that leads to this error. Paste your tracebask somewhere, we'll try to help (eg. at paste.pocoo.org).
Jun
25
answered OpenID in django without local site accounts
Jun
23
accepted Is it possible to override the method used to call Django’s admin delete confirmation page?
Jun
20
comment Optimizing Jinja2 Environment creation
Thanks, Rodrigo, that's exactly what I've been looking for. :)
Jun
19
comment Timestamp conversion is off by an hour
This reminds that you should use UTC internally and convert it to local time for output only (like display). Pytz to the rescue.
Jun
19
comment How do I replace whitespaces with underscore and vice versa?
Remember to urllib.quote() the output of your urlify() - what if s contains something non-ascii?
Jun
19
answered Http verb decorator for Django?
Jun
19
accepted Django : Know if property is the default value
Jun
19
comment Django : Know if property is the default value
Sure, I didn't even know such method exists for Meta. I always used fields() for iteration over the complete list of fields, never tried to access single field attributes. :)
Jun
18
answered Is it possible to override the method used to call Django’s admin delete confirmation page?
Jun
18
comment Django : Know if property is the default value
Anything with name beginning with underscore should be considered internal. Anyway, it did not change between 1.0 and 1.1.
Jun
18
comment What is the easiest way to see if a process with a given pid exists in Python?
And only on Linux.
Jun
18
answered Django : Know if property is the default value