User akaihola - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:15:44Zhttp://stackoverflow.com/feeds/user/15770http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/913589/django-forms-inheritance-and-order-of-form-fields/1703912#17039120Answer by akaihola for Django forms, inheritance and order of form fieldsakaihola2009-11-09T21:22:10Z2009-11-09T21:22:10Z<p>Alternate methods for changing the field order:</p>
<p>Pop-and-insert:</p>
<pre><code>self.fields.insert(0, 'name', self.fields.pop('name'))
</code></pre>
<p>Pop-and-append:</p>
<pre><code>self.fields['summary'] = self.fields.pop('summary')
self.fields['description'] = self.fields.pop('description')
</code></pre>
<p>Pop-and-append-all:</p>
<pre><code>for key in ('name', 'summary', 'description'):
self.fields[key] = self.fields.pop(key)
</code></pre>
<p>Ordered-copy:</p>
<pre><code>self.fields = SortedDict( [ (key, self.fields[key])
for key in ('name', 'summary' ,'description') ] )
</code></pre>
<p>But Selene's approach from the Django CookBook still feels clearest of all.</p>
http://stackoverflow.com/questions/577376/django-how-do-i-not-dispatch-a-signal/1420789#14207890Answer by akaihola for Django - how do I _not_ dispatch a signal?akaihola2009-09-14T10:39:02Z2009-09-14T10:39:02Z<p>You can also call <code>instance.save_base(raw=True)</code> and check for the <code>raw</code> argument in your <code>pre_save</code> or <code>post_save</code> signal handler:</p>
<pre><code>def my_post_save_handler(instance, raw, **kwargs):
if not raw:
heavy_logic()
</code></pre>
<p>You can add some sugar and get your perfect interface:</p>
<pre><code>class MyModel:
def save(self, dispatch_signal=True, **kwargs):
self.save_base(raw=not dispatch_signal, **kwargs)
</code></pre>
<p>Note that <code>save_base()</code> is not part of the public API of Django, so it might change in a future version.</p>
http://stackoverflow.com/questions/464463/qt-being-now-released-under-lgpl-would-you-recommend-it-over-wxwidgets/465190#4651908Answer by akaihola for Qt being now released under LGPL, would you recommend it over wxWidgets ?akaihola2009-01-21T12:57:50Z2009-09-04T10:04:05Z<p>Please note that, as of Jan 2009, while Qt 4.5 was to be available under LGPL, Riverbank Computing hadn't made any announcement about licensing for future versions of <a href="http://www.riverbankcomputing.co.uk/software/pyqt/download" rel="nofollow">PyQt</a>. PyQt is still only <a href="http://www.riverbankcomputing.co.uk/static/Docs/PyQt4/pyqt4ref.html#license" rel="nofollow">commercial/GPLv2/GPLv3</a>.</p>
<p>As noted in comments for this answer, Nokia announced the LGPL-licensed <a href="http://www.pyside.org/" rel="nofollow">PySide</a> project in August 2009.</p>
http://stackoverflow.com/questions/529054/how-to-escape-extended-pathname-expansion-patterns-in-quoted-expressions0How to escape extended pathname expansion patterns in quoted expressions?akaihola2009-02-09T17:20:33Z2009-06-05T04:47:11Z
<p>In addition to the basic <code>*</code>, <code>?</code> and <code>[...]</code> patterns, the Bash shell provides extended pattern matching operators like <code>!(pattern-list)</code> ("match all except one of the given patterns"). The <code>extglob</code> shell option needs to be set to use them. An example:</p>
<pre><code>~$ mkdir test ; cd test ; touch file1 file2 file3
~/test$ echo *
file1 file2 file3
~/test$ shopt -s extglob # make sure extglob is set
~/test$ echo !(file2)
file1 file3
</code></pre>
<p>If I pass a shell expression to a program which executes it in a sub-shell, the operator causes an error. Here's a test which runs a sub-shell directly (here I'm executing from another directory to make sure expansion doesn't happen prematurely):</p>
<pre><code>~/test$ cd ..
~$ bash -c "cd test ; echo *"
file1 file2 file3
~$ bash -c "cd test ; echo !(file2)" # expected output: file1 file3
bash: -c: line 0: syntax error near unexpected token `('
bash: -c: line 0: `cd test ; echo !(file2)'
</code></pre>
<p>I've tried all kinds of escaping, but nothing I've come up with has worked correctly. I also suspected <code>extglob</code> is not set in a sub-shell, but that's not the case:</p>
<pre><code>~$ bash -c "shopt -s extglob ; cd test ; echo !(file2)"
bash: -c: line 0: syntax error near unexpected token `('
bash: -c: line 0: `cd test ; echo !(file2)'
</code></pre>
<p>Any solution appreciated!</p>
http://stackoverflow.com/questions/851636/django-admin-filter/920320#9203201Answer by akaihola for django admin filterakaihola2009-05-28T11:09:28Z2009-05-28T11:09:28Z<p>Note that if instead of pre-selecting a filter value you want to always pre-filter the data before showing it in the admin, you should override the <code>ModelAdmin.queryset()</code> method instead.</p>
http://stackoverflow.com/questions/712295/how-to-implement-a-secured-download-system/803700#8037000Answer by akaihola for How to implement a secured download system?akaihola2009-04-29T18:42:47Z2009-04-29T18:42:47Z<p>You could also use <a href="http://wiki.nginx.org/" rel="nofollow">nginx</a> and its <a href="http://wiki.nginx.org/NginxXSendfile" rel="nofollow">X-Accel-Redirect</a> feature. It's simple, and nginx is even more ridiculously fast and lightweight than lighttpd. A common setup at least in the Ruby and Python web world is to run nginx in front of lighttpd or Apache. nginx serves all static media and proxies dynamic request to the web server behind it.</p>
http://stackoverflow.com/questions/540779/problem-embedding-tinymce-in-django-any-help/549026#5490261Answer by akaihola for Problem embedding TinyMCE in Django, any help?akaihola2009-02-14T12:16:50Z2009-02-14T12:16:50Z<p>A useful first check with JavaScript problems is to make sure all scripts are loaded. Take a look at the HTML source of the generated page in the browser, find all <code><script src="..."></code> tags and check that their paths are accessible.</p>
<p>You could also look at the terminal where you run the Django development server, or the <code>"Net"</code> tab of Firebug.</p>
http://stackoverflow.com/questions/542594/should-i-use-djangos-contrib-applications-or-build-my-own/549021#5490215Answer by akaihola for Should I use Django's contrib applications or build my own?akaihola2009-02-14T12:10:03Z2009-02-14T12:10:03Z<p>I'd also check out third-party re-usable apps before building my own. Many are listed on <a href="http://djangoplugables.com/" rel="nofollow">Django Plug(g)ables</a>, and most are hosted on <a href="http://code.google.com/search/?q=django#q=django" rel="nofollow">Google Code</a>, <a href="http://github.com/search?type=Repositories&language=python&q=django&repo=&langOverride=&x=15&y=15&start_value=1" rel="nofollow">GitHub</a> or <a href="http://bitbucket.org/repo/all/?name=django" rel="nofollow">BitBucket</a>.</p>
http://stackoverflow.com/questions/544791/django-postgresql-how-to-reset-primary-key/549003#5490031Answer by akaihola for Django + PostgreSQL: How to reset primary key?akaihola2009-02-14T11:57:03Z2009-02-14T11:57:03Z<p>I view auto-increment primary keys as purely internal identifiers for database records, and I don't like exposing them to users. Granted, it's a common design to use them as part of URLs, but even there slugs or other identifiers feel more appropriate.</p>
http://stackoverflow.com/questions/546753/multiple-instance-django-forum-software/548988#5489883Answer by akaihola for Multiple-instance Django forum softwareakaihola2009-02-14T11:45:31Z2009-02-14T11:45:31Z<p>I once created a <a href="http://code.djangoproject.com/wiki/ForumAppsComparison" rel="nofollow">feature matrix of all Django forum apps I could find. It might be a bit outdated now, though (contributions welcome).</p>
<p>At least django-threadedcomments</a> uses generic foreign keys, so you can attach a message thread to any database object, including users. </p>
http://stackoverflow.com/questions/537762/django-form-variable/540698#5406980Answer by akaihola for django form variableakaihola2009-02-12T10:10:20Z2009-02-12T10:10:20Z<p>Django's <a href="http://docs.djangoproject.com/en/dev/topics/forms/" rel="nofollow">form handling library</a> is a great tool for managing your HTML forms. It will pull the options from the database, generate the HTML code for the drop down box and save the selection into the database for you with minimal code.</p>
http://stackoverflow.com/questions/539899/custom-django-widget-decompress-arg-not-populated/540678#5406780Answer by akaihola for Custom django widget - decompress() arg not populated.akaihola2009-02-12T10:00:40Z2009-02-12T10:00:40Z<p>I can't reproduce the problem:</p>
<pre><code>>>> class MyForm(forms.Form):
... t = forms.TimeField(widget=MilitaryTimeWidget())
...
>>> print MyForm(data={'t_0': '13', 't_1': '34'})
******** 13:34:00
<tr><th><label for="id_t_0">T:</label></th><td><select name="t_0" id="id_t_0">
<option value="0">00</option>
[...]
<option value="13" selected="selected">13</option>
[...]
<option value="23">23</option>
</select><select name="t_1" id="id_t_1">
<option value="0">00</option>
[...]
<option value="34" selected="selected">34</option>
[...]
<option value="59">59</option>
</select></td></tr>
</code></pre>
<p>Check that your request.POST is correct.</p>
<p>As a sidenote, are you sure this widget gives good usability? Four mouse clicks and possible scrolling of the minutes combobox...</p>
http://stackoverflow.com/questions/540482/well-designed-django-example-code-to-learn-from/540650#5406502Answer by akaihola for Well designed Django example code to learn fromakaihola2009-02-12T09:48:26Z2009-02-12T09:48:26Z<p>The <a href="http://code.djangoproject.com/browser/djangoproject.com/django_website/" rel="nofollow">code for the djangoproject.com website</a> is open source and it works on Django 1.0. It's also written by Django core developers.</p>
http://stackoverflow.com/questions/540482/well-designed-django-example-code-to-learn-from/540647#5406470Answer by akaihola for Well designed Django example code to learn fromakaihola2009-02-12T09:46:32Z2009-02-12T09:46:32Z<p>Several open source Django projects are <a href="http://code.djangoproject.com/wiki/DjangoResources#Open-SourceDjangoprojects" rel="nofollow">listed in the Django wiki</a>. The list might not be up-to-date though, so expect to find pre-Django-1.0 code among the projects.</p>
<p>In case you find really good code to look at, it would be a good idea to contribute the links into that list. You'll be able to edit it once you've created an account on the <a href="http://code.djangoproject.com/" rel="nofollow">code.djangoproject.com</a> site.</p>
http://stackoverflow.com/questions/540482/well-designed-django-example-code-to-learn-from/540641#5406412Answer by akaihola for Well designed Django example code to learn fromakaihola2009-02-12T09:42:23Z2009-02-12T09:42:23Z<p><a href="http://www.satchmoproject.com/" rel="nofollow">Satchmo</a> is another large-scale project worth looking at after you've checked out some smaller ones.</p>
http://stackoverflow.com/questions/466135/how-to-make-a-model-instance-read-only-after-saving-it-once/531541#5315411Answer by akaihola for How to make a model instance read-only after saving it once?akaihola2009-02-10T08:57:23Z2009-02-10T08:57:23Z<p>Suggested reading: The Zen of Admin in <a href="http://www.djangobook.com/en/1.0/chapter17/" rel="nofollow">chapter 17 of the Django Book</a>.</p>
<p>Summary: The admin is not designed for what you're trying to do :(</p>
<p>However, the 1.0 version of the book covers only Django 0.96, and good things have happened since.</p>
<p>In Django 1.0, the <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/" rel="nofollow">admin site</a> is more customizable. Since I haven't customized admin myself, I'll have to guess based on the docs, but I'd say <a href="http://docs.djangoproject.com/en/dev/ref/contrib/admin/#form" rel="nofollow">overriding the model form</a> is your best bet.</p>
http://stackoverflow.com/questions/466286/generated-template-not-rendering-correctly/531516#5315161Answer by akaihola for generated template not rendering correctlyakaihola2009-02-10T08:47:22Z2009-02-10T08:47:22Z<p>The syntax of boolean attributes is different in HTML and XHTML. Apparently you're outputting HTML, and need to use</p>
<pre><code><option ... selected ...>
</code></pre>
<p>In XHTML you would use</p>
<pre><code><option ... selected="selected" ...>
</code></pre>
<p>It's unfortunate that we have the whole HTML/XHTML and MIME types mess with horribly non-standards-compliant browsers. You just have to know this stuff to be sure you're spitting out pages that render correctly on most browsers.</p>
http://stackoverflow.com/questions/467985/adding-a-generic-image-field-onto-a-modelform-in-django/531501#5315010Answer by akaihola for Adding a generic image field onto a ModelForm in djangoakaihola2009-02-10T08:38:50Z2009-02-10T08:38:50Z<p>Django does support your use case at least up to a point:</p>
<ul>
<li>formsets display repeated forms</li>
<li>model formsets handle repeated model forms</li>
<li>inline formsets bind model formsets to related objects of an instance</li>
<li><em>generic inline formsets</em> do the same for generic relations</li>
</ul>
<p>Generic inline formsets were introduced in <a href="http://code.djangoproject.com/changeset/8279" rel="nofollow">changeset [8279]</a>. See <a href="http://code.djangoproject.com/changeset/8279#file4" rel="nofollow">the changes to unit tests</a> to see how they are used.</p>
<p>With generic inline formsets you'll also be able to display multiple already saved images for existing rooms in your form.</p>
<p>Inline formsets seem to expect an existing parent instance in the <code>instance=</code> argument. The admin interface does let you fill in inlines before saving the parent instance, so there must be a way to achieve that. I've just never tried that myself.</p>
http://stackoverflow.com/questions/467985/adding-a-generic-image-field-onto-a-modelform-in-django/531471#5314710Answer by akaihola for Adding a generic image field onto a ModelForm in djangoakaihola2009-02-10T08:28:03Z2009-02-10T08:28:03Z<p>What about using two forms on the page: one for the room and one for the image?</p>
<p>You'll just have to make the generic foreign key fields of the image form not required, and fill in their values in the view after saving the room.</p>
http://stackoverflow.com/questions/501719/dynamically-adding-a-form-to-a-django-formset-with-ajax/529873#5298732Answer by akaihola for Dynamically adding a form to a Django formset with Ajaxakaihola2009-02-09T20:49:11Z2009-02-09T20:49:11Z<p>Simulate and imitate:</p>
<ul>
<li>Create a formset which corresponds to the situation <strong>before</strong> clicking the "add" button.</li>
<li>Load the page, view the source and take a note of all <code><input></code> fields.</li>
<li>Modify the formset to correspond to the situation <strong>after</strong> clicking the "add" button (change the number of extra fields).</li>
<li>Load the page, view the source and take a note of how the <code><input></code> fields changed.</li>
<li>Create some JavaScript which modifies the DOM in a suitable way to move it from the <strong>before</strong> state to the <strong>after</strong> state.</li>
<li>Attach that JavaScript to the "add" button.</li>
</ul>
<p>While I do know formsets use special hidden <code><input></code> fields and know approximately what the script must do, I don't recall the details off the top of my head. What I described above is what I would do in your situation.</p>
http://stackoverflow.com/questions/505868/django-how-do-you-turn-an-inmemoryuploadedfile-into-an-imagefield/529809#529809-2Answer by akaihola for Django - how do you turn an InMemoryUploadedFile into an ImageField ?akaihola2009-02-09T20:35:01Z2009-02-09T20:35:01Z<p>If the documentation falls short, take a look at the Django source code.</p>
<p>I mean really.</p>
<p>It's mostly quite readable and you'll obtain better understanding of the system than by only poking with <code>help()</code> and <code>dir()</code>.</p>
http://stackoverflow.com/questions/517614/with-django-whats-the-correct-way-to-set-up-paths-to-the-admin-content-and-stat/529431#5294312Answer by akaihola for With Django, what's the correct way to set up paths to the admin content and static content?akaihola2009-02-09T19:06:23Z2009-02-09T19:06:23Z<p>I just use</p>
<pre><code>Alias /media /home/akaihola/usr/lib/python2.4/site-packages/django/contrib/admin/media/
Alias /static /home/akaihola/mysite/public/static/
</code></pre>
<p>but I do it in a real Apache configuration file instead of <code>.htaccess</code> and I use mod_wsgi, although I don't know if it makes a difference.</p>
http://stackoverflow.com/questions/524392/is-there-any-reason-why-you-cant-compare-a-template-filter-to-a-string-in-django/529341#5293411Answer by akaihola for Is there any reason why you can't compare a template filter to a string in Django template syntax?akaihola2009-02-09T18:47:05Z2009-02-09T18:47:05Z<p>See <a href="http://code.djangoproject.com/ticket/5756" rel="nofollow">ticket #5756</a> and links in its comments for more information. A patch for Django in <a href="http://code.djangoproject.com/ticket/7295" rel="nofollow">ticket #7295</a> implements this functionality. A broader refactoring of the template system based on <a href="http://code.djangoproject.com/ticket/7295" rel="nofollow">#7295</a> is proposed in <a href="http://code.djangoproject.com/ticket/7806" rel="nofollow">ticket #7806</a>, and it would fix this issue among others.</p>
<p>I don't think making such comparisons to work would be against the design philosophy of Django templates.</p>
http://stackoverflow.com/questions/470715/generate-numbers-in-range/485479#4854790Answer by akaihola for Generate Numbers in Rangeakaihola2009-01-27T21:56:01Z2009-01-27T21:56:01Z<p>In Python 2.x you'll want to say e.g.</p>
<pre><code>>>> for n in xrange(1111111, 9999999): do something with n
</code></pre>
<p>instead of using <code>range()</code> to avoid allocating megabytes of memory.</p>
http://stackoverflow.com/questions/409769/parsing-fixed-format-data-embedded-in-html-in-python/485465#4854651Answer by akaihola for Parsing fixed-format data embedded in HTML in pythonakaihola2009-01-27T21:52:46Z2009-01-27T21:52:46Z<p>Further suggestions for splitting the string <code>s</code> into 26-character blocks:</p>
<p>As a list:</p>
<pre><code>>>> [s[x:x+26] for x in range(0, len(s), 26)]
['AAA 123 888 2008-10-30 ABC',
'BBB 987 2009-01-02 JSE',
'A4A 288 AAA']
</code></pre>
<p>As a generator:</p>
<pre><code>>>> for line in (s[x:x+26] for x in range(0, len(s), 26)): print line
AAA 123 888 2008-10-30 ABC
BBB 987 2009-01-02 JSE
A4A 288 AAA
</code></pre>
<p>Replace <code>range()</code> with <code>xrange()</code> in Python 2.x if <code>s</code> is very long.</p>
http://stackoverflow.com/questions/481862/extracting-info-from-large-structured-text-files/485417#4854170Answer by akaihola for Extracting info from large structured text filesakaihola2009-01-27T21:42:46Z2009-01-27T21:42:46Z<p>Another version with only one combined regular expression:</p>
<pre><code>#!/usr/bin/python
import re
import pprint
import sys
class Despacho(object):
"""
Class to parse each line, applying the regexp and storing the results
for future use
"""
#used a dict with the keys instead of functions.
regexp = re.compile(
r'No.(?P<processo>[\d]{9}) (?P<data>[\d]{2}/[\d]{2}/[\d]{4}) (?P<despacho>.*)'
r'|Tit.(?P<titular>.*)'
r'|Procurador: (?P<procurador>.*)'
r'|C.N.P.J./C.I.C./N INPI :(?P<documento>.*)'
r'|Apres.: (?P<apresentacao>.*) ; Nat.: (?P<natureza>.*)'
r'|Marca: (?P<marca>.*)'
r'|Clas.Prod/Serv: (?P<classe>.*)'
r'|\*(?P<complemento>.*)')
simplefields = ('processo', 'data', 'despacho', 'titular', 'procurador',
'documento', 'apresentacao', 'natureza', 'marca', 'classe')
def __init__(self):
"""
'complemento' is the only field that can be multiple in a single
registry
"""
self.__dict__ = dict.fromkeys(self.simplefields)
self.complemento = []
def parse(self, line):
m = self.regexp.match(line)
if m:
gd = dict((k, v) for k, v in m.groupdict().items() if v)
if 'complemento' in gd:
self.complemento.append(gd['complemento'])
else:
self.__dict__.update(gd)
def __repr__(self):
# defines object printed representation
return pprint.pformat(self.__dict__)
def process(rpi):
"""
read data and process each group
"""
d = None
for line in rpi:
if line.startswith('No.'):
if d:
yield d
d = Despacho()
d.parse(line)
yield d
def main():
arquivo = file('rm1972.txt') # file to process
for desp in process(arquivo):
print desp # can print directly here.
print '-' * 20
if __name__ == '__main__':
main()
</code></pre>
http://stackoverflow.com/questions/484940/achieving-emailing-between-website-users-without-mailing-server-configuring/485234#4852342Answer by akaihola for Achieving emailing between website users without "Mailing Server" configuring?.akaihola2009-01-27T21:00:33Z2009-01-27T21:00:33Z<p>If you want users to be able to create e-mail accounts in <a href="http://www.djangoproject.com/" rel="nofollow">Django</a>, you need Django, your <a href="http://en.wikipedia.org/wiki/Mail_transfer_agent" rel="nofollow">MTA</a> and your <a href="http://en.wikipedia.org/wiki/IMAP" rel="nofollow">IMAP</a>/POP server to use the same user account database.</p>
<p>I've successfully used the following setup:</p>
<ul>
<li><a href="http://www.postgresql.org/" rel="nofollow">PostgreSQL</a> as the user database</li>
<li><a href="http://www.postfix.org/" rel="nofollow">Postfix</a> as the MTA</li>
<li><a href="http://www.postfix.org/" rel="nofollow">Dovecot</a> as the IMAP server</li>
<li>a custom Django app as the user account management front-end</li>
<li>virtual mail user accounts (not using Unix accounts)</li>
</ul>
<p>I've only used the Django admin interface to let administrators manage the mail accounts, but a management UI for users is trivial to implement as well.</p>
<p>Some tips and sources of information for such a setup:</p>
<ul>
<li>Design your database schema carefully. I based mine on howtos mentioned below with modifications for easier Django integration.</li>
<li>Take care that all components use the same encryption for user passwords.</li>
<li>two howtos (<a href="http://www.lxtreme.nl/index.pl/docs/linux/dovecot_postfix_pam" rel="nofollow">first</a>, <a href="http://www.gjdv.at/snippets/linux/virtual_mail_hosting" rel="nofollow">second</a>) describing how Dovecot and Postfix can authenticate users using PAM and PostgreSQL as backend</li>
<li>a <a href="http://www.tuxj0b.de/HOWTO_Mailserver_mit_Postfix_Dovecot_Antispam_und_PostgreSQL_Backend" rel="nofollow">howto in German</a> for Dovecot/Postfix/PostgreSQL</li>
<li>a <a href="http://wiki.dovecot.org/HowTo/DovecotPostgresql" rel="nofollow">howto</a> for gluing together virtual user/domain support for Debian, Postfix 2 with SMTP AUTH, SASL2 with libpam-pgsql for Postfix, PostgreSQL and Dovecot </li>
<li>the <a href="http://www.postfix.org/PGSQL_README.html" rel="nofollow">Postfix PostgreSQL howto</a></li>
</ul>
<p>You might also want to check out the <a href="http://vmm.localdomain.org/" rel="nofollow">Virtual Mail Manager</a> command line tool for managing domains, accounts and aliases with a Dovecot/Postfix/PostgreSQL setup.</p>
http://stackoverflow.com/questions/482146/replace-nested-for-loops-or-not/483186#4831861Answer by akaihola for Replace Nested For Loops... or notakaihola2009-01-27T12:15:51Z2009-01-27T12:15:51Z<p>It doesn't exactly answer the question, but this would return the <code>n</code>th combination for the given maximum length and characters in the alphabet to use:</p>
<pre><code>#!/usr/bin/python
def nth_combination(n, maxlen=4, alphabet='abc'):
"""
>>> print ','.join(nth_combination(n, 1, 'abc') for n in range(3))
a,b,c
>>> print ','.join(nth_combination(n, 2, 'abc') for n in range(12))
a,aa,ab,ac,b,ba,bb,bc,c,ca,cb,cc
>>> import string ; alphabet = string.ascii_letters + string.digits
>>> print ','.join(nth_combination(n, 4, alphabet) for n in range(16))
a,aa,aaa,aaaa,aaab,aaac,aaad,aaae,aaaf,aaag,aaah,aaai,aaaj,aaak,aaal,aaam
>>> print ','.join(nth_combination(n, 4, alphabet)
... for n in range(0, 14000000, 10**6))
a,emiL,iyro,mKz2,qWIF,u8Ri,zk0U,Dxav,HJi9,LVrM,P7Ap,UjJ1,YvSE,2H1h
"""
if maxlen == 1:
return alphabet[n]
offset, next_n = divmod(n, 1 + len(alphabet)**(maxlen-1))
if next_n == 0:
return alphabet[offset]
return alphabet[offset] + nth_combination(next_n-1, maxlen-1, alphabet)
if __name__ == '__main__':
from doctest import testmod
testmod()
</code></pre>
<p>This of course makes sense only if you need random access to the set of combinations instead of always iterating through them all.</p>
<p>If <code>maxlen</code> is high, some speed optimization could be achieved e.g. by getting rid of string concatenation and re-calculating the length of <code>alphabet</code> and <code>maxlen-1</code> at each level of the recursion. A non-recursive approach might make sense, too.</p>
http://stackoverflow.com/questions/918/how-to-learn-python-good-example-code/467298#4672981Answer by akaihola for How to learn Python: Good Example Code?akaihola2009-01-21T22:25:10Z2009-01-21T22:25:10Z<p>Read the Python Standard Library! Many modules are written in pure Python, and they are readily available on your machine if you have Python installed.</p>
<p>Sure, some of the modules show their age and haven't been updated much along the way, so they might not utilize newer features of the language. But at least the library is written in a very Pythonic style.</p>
http://stackoverflow.com/questions/465144/tools-for-creating-text-as-bitmaps-anti-aliased-text-custom-spacing-transparen1Tools for creating text as bitmaps (anti-aliased text, custom spacing, transparent background)akaihola2009-01-21T12:45:55Z2009-01-21T14:36:45Z
<p>I need to batch create images with text. Requirements:</p>
<ol>
<li>arbitrary size of bitmap</li>
<li>PNG format</li>
<li>transparent background</li>
<li>black text anti-aliased against transparency</li>
<li>adjustable character spacing</li>
<li>adjustable text position (x and y coordinates where text begins)</li>
<li>TrueType and/or Type1 support</li>
<li>Unix command line tool or Python library</li>
</ol>
<p>So far I've evaluated the following:</p>
<ul>
<li><a href="http://www.pythonware.com/library/pil/" rel="nofollow">Python Imaging Library</a>: fails 5.</li>
<li><a href="http://www.imagemagick.org/" rel="nofollow">ImageMagick</a> ("caption" option): hard to figure out 6.</li>
<li><a href="http://www.cairographics.org/documentation/pycairo/" rel="nofollow">PyCairo</a>: fails 5.</li>
<li><a href="http://www.w3.org/Graphics/SVG/" rel="nofollow">SVG</a> + <a href="http://www.imagemagick.org/script/convert.php" rel="nofollow">ImageMagick convert</a>: most promising, although requires multiple tools</li>
</ul>
<p>The problem with PIL is that e.g. the default spacing for Verdana is way too sparse. I need the text to be a bit tighter, but there's no way to adjust it in PIL.</p>
<p>In ImageMagick I haven't found an easy way to specify where in the image the text begins (I'm using -size WIDTHxHEIGHT and caption:'TEXT'). Adding a transparent border will move the text away from the corner it's achored to, but</p>
<ul>
<li>image size needs to be adjusted accordingly since border adds to the extents</li>
<li>it's not possible to adjust horizontal and vertical offset independently</li>
</ul>
<p>Have I missed some obvious alternatives or failed to find necessary features from the above mentioned?</p>
http://stackoverflow.com/questions/913589/django-forms-inheritance-and-order-of-form-fields/1133470#1133470Comment by akaihola on Django forms, inheritance and order of form fieldsakaihola2009-11-09T21:11:33Z2009-11-09T21:11:33ZIt seems to work, and proves wrong the assumption that SortedDict "doesn't provide any way to reorder key:value pairs".http://stackoverflow.com/questions/913589/django-forms-inheritance-and-order-of-form-fields/913748#913748Comment by akaihola on Django forms, inheritance and order of form fieldsakaihola2009-11-09T21:07:06Z2009-11-09T21:07:06ZIn most cases this doesn't make sense, e.g. when subclassing a form defined in a reusable app.http://stackoverflow.com/questions/66132/imap-in-emacs-rmailComment by akaihola on IMAP in emacs rmail?akaihola2009-09-16T07:59:35Z2009-09-16T07:59:35ZThis question would suit better in Stack Overflow's sister site superuser.com.http://stackoverflow.com/questions/449541/how-do-you-merge-selective-files-with-git-merge/449632#449632Comment by akaihola on How do you merge selective files with git-merge?akaihola2009-09-04T10:44:00Z2009-09-04T10:44:00ZDid you intend to write <code>HEAD^</code> instead of <code>^HEAD</code>, or does the latter have a distinct meaning?http://stackoverflow.com/questions/449541/how-do-you-merge-selective-files-with-git-merge/891222#891222Comment by akaihola on How do you merge selective files with git-merge?akaihola2009-09-04T10:42:05Z2009-09-04T10:42:05ZPlease 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.http://stackoverflow.com/questions/932818/retrieving-a-variables-name-in-python-at-runtime/932835#932835Comment by akaihola on retrieving a variable's name in python at runtime?akaihola2009-08-19T05:00:08Z2009-08-19T05:00:08ZD. probably intended to say "If all that you have is <code>1</code> [...]"http://stackoverflow.com/questions/442040/pre-populate-an-inline-formset/1273914#1273914Comment by akaihola on Pre-populate an inline FormSet?akaihola2009-08-17T06:10:28Z2009-08-17T06:10:28Zthis should be a comment to James's anwerhttp://stackoverflow.com/questions/554957/parameterised-regular-expression-in-python/554989#554989Comment by akaihola on Parameterised regular expression in Pythonakaihola2009-06-24T08:08:04Z2009-06-24T08:08:04ZA quick timeit test shows no performance gain from using [0-9]+ instead of \d+ -- is there another reason not to use the shorter form?http://stackoverflow.com/questions/851636/django-admin-filter/891614#891614Comment by akaihola on django admin filterakaihola2009-05-29T14:47:12Z2009-05-29T14:47:12ZThis solution has the drawback that although the "All" choice is still displayed in the UI, selecting it still applies the default filtering.http://stackoverflow.com/questions/851636/django-admin-filter/891614#891614Comment by akaihola on django admin filterakaihola2009-05-21T20:14:31Z2009-05-21T20:14:31ZExtremely cool. I needed exactly this just 13 hours after you had submitted the answer. Thanks Paolo, thanks Stack Overflow, thanks Google, thanks Django.http://stackoverflow.com/questions/524805/how-do-i-enlarge-a-picture-so-that-it-is-300-dpi/524862#524862Comment by akaihola on How do I enlarge a picture so that it is 300 DPI?akaihola2009-03-06T20:07:08Z2009-03-06T20:07:08ZWhat sense does it make to resample a low resolution image to a higher resolution?http://stackoverflow.com/questions/346718/get-access-to-foreignkey-objects-at-parent-save-in-djangoComment by akaihola on Get access to ForeignKey objects at parent save in Djangoakaihola2009-02-27T20:05:39Z2009-02-27T20:05:39ZSomething wrong with code formatting in the questionhttp://stackoverflow.com/questions/542980/i-would-like-a-separate-process-to-when-django-starts-is-there-an-accepted-wayComment by akaihola on I would like a separate process to when django starts - is there an accepted way of doing this?akaihola2009-02-14T12:01:18Z2009-02-14T12:01:18ZThe title of the question doesn't make sense. Is there a typo?http://stackoverflow.com/questions/544597/problem-ordering-by-votes-with-django-voting/547787#547787Comment by akaihola on problem ordering by votes with django-votingakaihola2009-02-14T11:58:42Z2009-02-14T11:58:42ZIs that a too complex query to be implemented with the recently added aggregate support in Django's ORM?http://stackoverflow.com/questions/546017/how-do-i-run-another-script-in-python-without-waiting-for-it-to-finish/546024#546024Comment by akaihola on How do I run another script in Python without waiting for it to finish?akaihola2009-02-14T11:51:57Z2009-02-14T11:51:57Z@nosklo Is this a good thing to do in the context of a web server? I've seen advice to run a separate service for long-running jobs and communicate with a queue mechanism.