monkut

3,635
Reputation
301 views

Registered User

Name monkut
Member for 1 year
Seen 1 hour ago
Website
Location Japan
Age 33
Grew up with macs, my dad brought home an old Lisa from work that was "my" first computer. Didn't really get started into anything other than games until a friend introduced me to the BBS scene and lent me my first 1200 baud modem. I had my own BBS running renegade within the year and a sparkling new 14.4 modem. First programmed with BASIC on the apple ][, studied Pascal, C++ in college. Picked-up perl and python at work. Pretty much any coding I do now is in python.
1h
comment Making Windows executables from Django applications
Sounds like all kinds of trouble to me, but I'm interested to see if there's a reasonable solution.
1h
answered Django : Error thrown by database : relation “_mytable” does not exist (for a content_type) . Lost app-name
Nov
25
awarded  Civic Duty
Nov
24
comment Searching for Python http lib
Update the question with specifics, you'll get better answers.
Nov
20
comment To understand Python’s optparse
Thanks, john. Yes, options.<option> is where items created with 'add_option' are accessed. Using the 'add_option' command I'm creating an option and defaulting it to None. This will evaluate to 'False' in the if-clause. So if all the options are not provided you will see the error message and 'help' will be displayed.
Nov
20
answered To understand Python’s optparse
Nov
13
comment Working with JSON in Python 2.6?
... which is just a list of keys anyway so pprint doesn't given you anything extra :p
Nov
13
comment Working with JSON in Python 2.6?
import pprint; pprint.pprint(mydict.keys())
Nov
13
revised Working with JSON in Python 2.6?
knew -> new
Oct
22
answered Pythonic way to print a table
Oct
20
answered Python binary data reading
Oct
18
accepted How to redirect the output of .exe to a file in python?
Oct
16
answered Using Sphinx to write personal websites and blogs
Oct
15
comment converting strptime into ‘X hours ago’
datetime makes dates/times much more manageable, I rarely find myself using time.
Oct
15
answered converting strptime into ‘X hours ago’
Oct
15
answered Django: How do I make fields non-editable by default in an inline model formset?
Oct
15
comment Does configuring django’s setting.TIME_ZONE affect datetime.datetime.now()?
Anyway, as you mention it sounds like a good idea just to use UTC time.
Oct
15
comment Does configuring django’s setting.TIME_ZONE affect datetime.datetime.now()?
I just tried to repeat your test here using the manage shell and it didn't seem to... strange. >>> datetime.datetime.now() datetime.datetime(2009, 10, 15, 15, 37, 47, 869000) >>> import settings >>> settings.TIME_ZONE 'Europe/Zurich' >>> datetime.datetime.now() datetime.datetime(2009, 10, 15, 15, 37, 59, 838000) >>> exit() PS D:\> date Thu Oct 15 15:38:25 TST 2009
Oct
15
asked Does configuring django’s setting.TIME_ZONE affect datetime.datetime.now()?
Oct
14
comment Python: imports at the beginning of the main program & PEP 8
yeah, just some fyi.
Oct
14
comment Python: imports at the beginning of the main program & PEP 8
optparse is available for command-line parsing, better than using sys.argv and doing your own parsing.
Oct
14
comment Can Python print a function definition?
And from interactive mode you can use help(function) to display the docstring for the function.
Oct
13
comment Optparse library - callback action while storing arg
If your using optparse it will generate the help info for you automatically. use "parser.print_help()".
Oct
13
revised python/django for loop creating database populated with 0000-9999
remove 'else' from for/else statement.
Oct
13
comment python/django for loop creating database populated with 0000-9999
I agree the 'else' statement there can be confusing, I'll remove it, but it should work fine. From the docs: Loop statements may have an else clause; it is executed when the loop terminates through exhaustion of the list (with for) or when the condition becomes false (with while), but not when the loop is terminated by a break statement.
Oct
9
comment python/django for loop creating database populated with 0000-9999
Strange, looks simple enough. Whats the full error?
Oct
9
answered python/django for loop creating database populated with 0000-9999
Oct
8
comment How make a better markdown for developer blog
Yes, in combination with sphinx (sphinx.pocoo.org) it's a great tool. If I remember correctly Doug Hellmann (doughellmann.com/PyMOTW) mentioned he uses rest/sphinx for the Python module of the week blog.
Oct
8
answered How make a better markdown for developer blog
Oct
6
revised Python and indentation, having touble getting started.
added classes tutorial link.
Oct
6
comment how to apply “catch-all” exception clause to complex python web-scraping script?
Or use stderr's write function directly, "sys.stderr.write('error')". Is there a difference?
Oct
5
answered Python and indentation, having touble getting started.
Oct
4
awarded  Yearling
Oct
2
answered urllib2: submitting a form and then redirecting
Oct
2
revised Django: How to set initial values for a field in an inline model formset?
added post-post method
Oct
1
comment Django: How to set initial values for a field in an inline model formset?
I think something similar to my question on dynamic fields (stackoverflow.com/questions/1409192/…) could provide a hacky workaround, but javascript would probably be cleaner.
Oct
1
comment Django: How to set initial values for a field in an inline model formset?
Sorry about that, did you see 'using-initial-data-with-a-formset'?
Oct
1
revised Django: How to set initial values for a field in an inline model formset?
changed.
Oct
1
answered Django: How to set initial values for a field in an inline model formset?
Oct
1
comment Django: How to set initial values for a field in an inline model formset?
Hmmm... I believe ModelForms will take the 'default' value, won't they? And standard form fields use initial as you show, but as far as I know there's no reason to go super() on it.
Sep
30
comment How close is Python to being able to wrap it in a workbook type skin?
Start a project and make it.
Sep
30
comment How to define a class in Python
You can dynamically add attributes as you wish, but if the Team class will always contain those attributes it's clearer to define them within the class and not externally.
Sep
29
comment Creating a news archive in Django
If your really don't know where to start I suggest doing the tutorial first, that should give you a good starting point: docs.djangoproject.com/en/dev/… If there's a specific point your stuck at, posting the code you have helps.
Sep
29
comment Comparing performance between ruby and python code
python does generate bytecode, btw...
Sep
24
awarded  Enlightened
Sep
24
accepted Why there is a difference in “import” vs. “import *” ?
Sep
22
accepted how to perform a basic arithmetics from unix csh/tcsh shell
Sep
18
revised Django beginner question: Table relationships
c
Sep
18
answered Django beginner question: Table relationships
Sep
17
answered possible to intercept and rewrite email on outlook client side using ironpython?