akaihola

1,080
reputation
89 views

Registered User

name akaihola
member for 1 year
seen 16 hours ago
website
location FI
age
See website for contact information
17h
answered Fork and sync google code svn into github
Dec
7
accepted Django: Filtering or displaying a model method in Django Admin
Dec
7
answered Django: How to initiate/gather field data from two models in one form definition
Dec
7
answered Django: Filtering or displaying a model method in Django Admin
Dec
6
accepted Pyjamas import statements
Dec
6
answered Django FlatPages vs Django-CMS
Dec
6
answered What is the best way to call Java code from Python?
Dec
6
answered How to find/replace text in html while preserving html tags/structure
Dec
6
answered How to find/replace text in html while preserving html tags/structure
Dec
4
answered Python bash pipe
Dec
4
comment Python: Change class type name
Please explain why classobj is not a good type name for an old-style class, and why you need to change that. Note that for new-style classes ("class bob(object):") the type name is type.
Dec
4
answered Advanced PDF Parsing Using Python (extracting text without tables, etc.): What’s the Best Library?
Dec
4
answered Do Python Dicts preserve iteration order if they are not modified?
Dec
4
answered Is pickle file of python cross-platform?
Dec
4
answered Pyjamas import statements
Dec
3
comment How to get list opened windows in PyGTK or GTK in Ubuntu?
Please clarify: do you want to get the list of directories shown in all tabs of all Nautilus windows?
Dec
3
comment How to get list opened windows in PyGTK or GTK in Ubuntu?
If your app is non-GUI, you can do while "gtk.events_pending(): gtk.main_iteration()" after "wnck.get_screen_default()" to flush events and be able to get the list of windows.
Nov
9
answered Django forms, inheritance and order of form fields
Nov
9
comment Django forms, inheritance and order of form fields
It seems to work, and proves wrong the assumption that SortedDict "doesn't provide any way to reorder key:value pairs".
Nov
9
comment Django forms, inheritance and order of form fields
In most cases this doesn't make sense, e.g. when subclassing a form defined in a reusable app.
Sep
18
awarded  Yearling
Sep
16
comment IMAP in emacs rmail?
This question would suit better in Stack Overflow's sister site superuser.com.
Sep
14
answered Django - how do I _not_ dispatch a signal?
Sep
4
comment How do you merge selective files with git-merge?
Did you intend to write HEAD^ instead of ^HEAD, or does the latter have a distinct meaning?
Sep
4
comment How do you merge selective files with git-merge?
Please edit your answer, select your code snippet and hit the "101 010" icon (3rd icon in the 2nd group of the toolbar) to indent it by four spaces. This will fix formatting.
Sep
4
revised Qt being now released under LGPL, would you recommend it over wxWidgets ?
Update (PySide, PyQT licensing)
Aug
19
comment retrieving a variable’s name in python at runtime?
D. probably intended to say "If all that you have is 1 [...]"
Aug
17
comment Pre-populate an inline FormSet?
this should be a comment to James's anwer
Jun
24
comment Parameterised regular expression in Python
A quick timeit test shows no performance gain from using [0-9]+ instead of \d+ -- is there another reason not to use the shorter form?