User zuber - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T20:41:17Zhttp://stackoverflow.com/feeds/user/9812http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/110378/change-the-width-of-form-elements-created-with-modelform-in-django/110414#11041416Answer by zuber for Change the width of form elements created with ModelForm in Djangozuber2008-09-21T06:44:02Z2009-12-01T07:28:48Z<p><strong>The easiest way for your use case is to use CSS</strong>. It's a language meant for defining presentation. Look at the code generted by form, take note of ids for fields that interest you, and change appearance of these fields through CSS.</p>
<p>Example for <code>long_desc</code> field in your ProductForm (when your form does not have a custom prefix):</p>
<pre><code>#id_long_desc {
width: 300px;
height: 200px;
}
</code></pre>
<p><strong>Second approach</strong> is to pass <code>attrs</code> keyword to your widget constructor.</p>
<pre><code>class ProductForm(ModelForm):
long_desc = forms.CharField(widget=forms.Textarea(attrs={'cols': 10, 'rows': 20})
short_desc = forms.CharField(widget=forms.Textarea)
class Meta:
model = Product
</code></pre>
<p>It's <a href="http://docs.djangoproject.com/en/dev/ref/forms/widgets/#django.forms.Widget.attrs" rel="nofollow">described in Django documentation</a>.</p>
<p><strong>Third approach</strong> is to leave the nice declarative interface of newforms for a while and set your widget attributes in custom constructor.</p>
<pre><code>class ProductForm(ModelForm):
long_desc = forms.CharField(widget=forms.Textarea)
short_desc = forms.CharField(widget=forms.Textarea)
class Meta:
model = Product
# Edit by bryan
def __init__(self, *args, **kwargs):
super(ProductForm, self).__init__(*args, **kwargs) # Call to ModelForm constructor
self.fields['long_desc'].widget.attrs['cols'] = 10
self.fields['long_desc'].widget.attrs['cols'] = 20
</code></pre>
<p>This approach has the following advantages:</p>
<ul>
<li>You can define widget attributes for fields that are generated automatically from your model without redefining whole fields.</li>
<li>It doesn't depend on the prefix of your form.</li>
</ul>
http://stackoverflow.com/questions/158769/best-books-to-learn-about-design17Best books to learn about designzuber2008-10-01T17:32:55Z2009-03-18T16:08:49Z
<p>What books do you recommend for a programmer who wants to learn about design? </p>
<p>Every programmer needs to evolve and learn things outside of his specialization. I would like to collect a list of the best material in the field of design for such programmers.</p>
<p><strong>Some guidelines:</strong></p>
<ul>
<li>I'm interested both in <strong>graphic design</strong> (use of whitespace, fonts and colors) and <strong>human-computer interaction</strong> (usability, accessibility and user experience).</li>
<li><strong>In-depth books</strong> describing specific areas of design are preferred to shallower, more generic ones.</li>
<li>Assume reader who is not afraid to learn. <em>Design for Dummies</em> books are not what I'm searching for.</li>
</ul>
http://stackoverflow.com/questions/181855/integrating-prolog-with-c/181936#1819365Answer by zuber for Integrating Prolog with C#zuber2008-10-08T09:27:18Z2008-10-08T09:27:18Z<p>You can take a look at <a href="http://yieldprolog.sourceforge.net/" rel="nofollow">Yield Prolog</a>. </p>
<p>Yield Prolog uses <code>yield</code> keyword in C# (and Python, and JavaScript) and custom <code>Variable</code> class to simulate Prolog machine. This way, you get a Prolog API in your favourite language. You don't need to connect your main language with P# or similiar projects.</p>
http://stackoverflow.com/questions/158769/best-books-to-learn-about-design/159563#1595631Answer by zuber for Best books to learn about designzuber2008-10-01T20:31:47Z2008-10-01T20:31:47Z<p><a href="http://bartekd.blip.pl/" rel="nofollow">bartekd</a> (who is not yet a member of StackOverflow) recommended me the <a href="http://www.smashingmagazine.com/2008/01/24/usability-and-interface-design-books/" rel="nofollow">list of books about usability and user experience on Smashing Magazine</a>.</p>
<p>A lot of the books on this list were already mentioned in answers to my question. Here is the rest:</p>
<ul>
<li><a href="http://www.useit.com/prioritizing/" rel="nofollow">Prioritizing Web Usability</a>, Jakob Nielsen</li>
<li><a href="http://www.designofsites.com/" rel="nofollow">The Design of Sites. Patterns for Creating Winning Web Sites</a>, Douglas Van Duyne, James Landay, Jason Hong</li>
<li><a href="http://www.designingforinteraction.com/" rel="nofollow">Designing for Interaction: Creating Smart Applications and Clever Devices</a>, Dan Saffer</li>
<li><a href="http://www.designinginteractions.com/book" rel="nofollow">Designing Interactions</a>, Bill Moggridge</li>
<li><a href="http://www.edwardtufte.com/tufte/books_ei" rel="nofollow">Envisioning Information</a>, Edward R. Tufte</li>
</ul>
http://stackoverflow.com/questions/154592/python-module-for-wiki-markup/154972#1549723Answer by zuber for Python module for wiki markupzuber2008-09-30T20:38:04Z2008-09-30T23:06:51Z<p>You should look at a good parser for <a href="http://wikicreole.org/" rel="nofollow">Creole</a> syntax: <a href="http://wiki.sheep.art.pl/Wiki%20Creole%20Parser%20in%20Python" rel="nofollow">creole.py</a>. It can convert Creole (which is "a common wiki markup language to be used across different wikis") to HTML.</p>
http://stackoverflow.com/questions/130061/book-and-tutorial-recommedations-for-django-1-0/130301#13030110Answer by zuber for Book and tutorial recommedations for Django 1.0zuber2008-09-24T22:21:23Z2008-09-24T22:21:23Z<p>If you prefer screencasts to written documentation, there is a new serie of tutorials "Django From The Ground Up" on <a href="http://thisweekindjango.com/screencasts/" rel="nofollow">This Week in Django</a>.</p>
http://stackoverflow.com/questions/115844/recommended-python-publish-subscribe-dispatch-module/116703#1167034Answer by zuber for Recommended Python publish/subscribe/dispatch module ?zuber2008-09-22T18:44:43Z2008-09-22T18:44:43Z<p><a href="http://pydispatcher.sourceforge.net/" rel="nofollow">PyDispatcher</a> is used heavily in <a href="http://pydispatcher.sourceforge.net/" rel="nofollow">Django</a> and it's working perfectly for me (and for whole Django community, I guess). </p>
<p>As I remember, there are some performance issues:</p>
<ul>
<li>Arguments checking made by PyDispatcher is slow.</li>
<li>Unused connections have unnecessary overhead.</li>
</ul>
<p>AFAIK it's very unlikely you will run into this issues in a small-to-medium sized application. So these issues may not concern you. If you think you need every pound of performance (premature optimization is the root of all evil!), you can look at modifications done to PyDispatcher in Django.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/35499/ajax-polling/111130#1111302Answer by zuber for Ajax polling.zuber2008-09-21T14:34:31Z2008-09-21T14:57:15Z<p>There is a very good server for handling message pushing from server to browser (dubbed <a href="http://en.wikipedia.org/wiki/Comet_(programming)" rel="nofollow">Comet</a>) - <a href="http://orbited.org/" rel="nofollow">Orbited</a>. It's easily integrated with other technologies (Django, Rails, PHP etc.) just like memcached.</p>
<p>You really should check it if you want to handle serious load. Otherwise, simple Ajax polling is the best way.</p>
http://stackoverflow.com/questions/108193/union-and-intersect-in-django/110437#1104376Answer by zuber for Union and Intersect in Djangozuber2008-09-21T07:03:07Z2008-09-21T07:03:07Z<p>Please don't reinvent the wheel and use <a href="http://code.google.com/p/django-tagging/" rel="nofollow">django-tagging application</a> which was made exactly for your use case. It can do all queries you describe, and much more.</p>
<p>If you need to add custom fields to your Tag model, you can also take a look at <a href="http://www.bitbucket.org/zuber/django-newtagging" rel="nofollow">my branch of django-tagging</a>.</p>
http://stackoverflow.com/questions/67454/serving-dynamically-generated-zip-archives-in-django11Serving dynamically generated ZIP archives in Djangozuber2008-09-15T22:00:31Z2008-09-17T07:53:29Z
<p>How to serve users a dynamically generated ZIP archive in Django?</p>
<p>I'm making a site, where users can choose any combination of available books and download them as ZIP archive. I'm worried that generating such archives for each request would slow my server down to a crawl. I have also heard that Django doesn't currently have a good solution for serving dynamically generated files.</p>
http://stackoverflow.com/questions/75798/django-vs-grails-vs/77693#776936Answer by zuber for Django -vs- Grails -vs- ???zuber2008-09-16T22:02:55Z2008-09-16T23:35:24Z<blockquote>
<p>However it's written in Python which
means there's little real support in
the way of deployment/packaging,
debugging, profilers and other tools
that make building and maintaining
applications much easier.</p>
</blockquote>
<p>Python has:</p>
<ol>
<li>a <a href="http://docs.python.org/lib/module-pdb.html" rel="nofollow">great interactive debugger</a>, which makes very good use of Python <a href="http://en.wikipedia.org/wiki/REPL" rel="nofollow">REPL</a>. </li>
<li><a href="http://peak.telecommunity.com/DevCenter/EasyInstall" rel="nofollow">easy_install</a> anv <a href="http://pypi.python.org/pypi/virtualenv" rel="nofollow">virtualenv</a> for dependency management, packaging and deployment.</li>
<li><a href="http://docs.python.org/lib/profile.html" rel="nofollow">profiling features</a> comparable to other languages</li>
</ol>
<p>So IMHO you shouldn't worry about this things, use Python and Django and live happily :-)</p>
<p>Lucky for you, newest version of <a href="http://blog.leosoto.com/2008/08/django-on-jython-its-here.html" rel="nofollow">Django runs on Jython</a>, so you don't need to leave your whole Java ecosystem behind.</p>
<p>Speaking of frameworks, I evaluated this year:</p>
<ol>
<li><a href="http://pylonshq.com/" rel="nofollow">Pylons</a> (Python)</li>
<li><a href="http://webpy.org/" rel="nofollow">webpy</a> (Python)</li>
<li><a href="http://www.symfony-project.org/" rel="nofollow">Symfony</a> (PHP)</li>
<li><a href="http://www.cakephp.org/" rel="nofollow">CakePHP</a> (PHP)</li>
</ol>
<p>None of this frameworks comes close to the power of Django or Ruby on Rails. Based on my collegue opinion I could recommend you <a href="http://www.kohanaphp.com/home" rel="nofollow">kohana</a> framework. The downside is, it's written in PHP and, as far as I know, PHP doesn't have superb tools for debugging, profiling and packaging of apps.</p>
<p><strong>Edit:</strong> Here is a very good <a href="http://bud.ca/blog/pony" rel="nofollow">article about packaging and deployment of Python apps</a> (specifically Django apps). It's a hot topic in Django community now.</p>
http://stackoverflow.com/questions/78217/managing-large-user-databases-for-single-signon/78255#78255-1Answer by zuber for Managing large user databases for single-signon.zuber2008-09-16T23:14:00Z2008-09-16T23:19:09Z<p>You can always implement your own <a href="http://openid.net/what/" rel="nofollow">OpenID</a> server. There is already a <a href="http://openidenabled.com/python-openid/" rel="nofollow">Python library for OpenID</a> so it should be fairly easy. </p>
<p>Of course you don't need to accept logins authorized by other servers in your applications. Accept credentials authorized only by your own server.</p>
<p><strong>Edit:</strong> I have found an <a href="http://trac.nicolast.be/djangoid" rel="nofollow">implementation of OpenID server protocol in Django</a>.</p>
<p><strong>Edit2:</strong> There is an obvious advantage in implementing OpenID for your users. They will be able to login to StackOverflow with their logins :-)</p>
http://stackoverflow.com/questions/72945/how-to-create-a-triple-join-table-with-django/77898#778985Answer by zuber for How to create a triple-join table with Djangozuber2008-09-16T22:22:52Z2008-09-16T22:22:52Z<p><strong>zacherates</strong> writes:</p>
<blockquote>
<p>I'd model Role as an association class between Users and Roles (...)</p>
</blockquote>
<p>I'd also reccomed this solution, but you can also make use of some syntactical sugar provided by Django: <a href="http://docs.djangoproject.com/en/dev/topics/db/models/#extra-fields-on-many-to-many-relationships" rel="nofollow">ManyToMany relation with extra fields</a>.</p>
<p>Example:</p>
<pre><code>class User(models.Model):
name = models.CharField(max_length=128)
class Event(models.Model):
name = models.CharField(max_length=128)
members = models.ManyToManyField(User, through='Role')
def __unicode__(self):
return self.name
class Role(models.Model):
person = models.ForeignKey(User)
group = models.ForeignKey(Event)
date_joined = models.DateField()
invite_reason = models.CharField(max_length=64)
</code></pre>
http://stackoverflow.com/questions/61451/does-django-have-html-helpers/67808#678080Answer by zuber for Does Django have HTML helpers?zuber2008-09-15T23:05:10Z2008-09-15T23:05:10Z<p>Here is a <a href="http://docs.djangoproject.com/en/dev/ref/templates/builtins/" rel="nofollow">list of all template tags and filters built into Django</a>. Django core doesn't have as much HTML helpers as Rails, because Django contributors assumed that web developer knows HTML very well. As stated by saturdaypalace, it's very unlikely for AJAX helpers to be added to Django, because it would lead to coupling Django with a specific JavaScript library.</p>
<p>It's very easy to <a href="http://docs.djangoproject.com/en/dev/howto/custom-template-tags/#howto-custom-template-tags" rel="nofollow">write your own template tags</a> in Django (often you need just to define one function, similiar to Rails). You could reimplement most of Rails helpers in Django during a day or two.</p>
http://stackoverflow.com/questions/67631/how-to-import-module-from-file-name/67693#676930Answer by zuber for How to import module from file namezuber2008-09-15T22:41:24Z2008-09-15T22:41:24Z<p>You can use the </p>
<pre><code>load_source(module_name, path_to_file)
</code></pre>
<p>method from <a href="http://docs.python.org/lib/module-imp.html" rel="nofollow">imp module</a>.</p>
http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/407415#407415Comment by zuber on What's your most controversial programming opinion?zuber2009-02-04T23:08:11Z2009-02-04T23:08:11ZBut there is already one statically-typed Python-like language. Tt's called C# ;-)http://stackoverflow.com/questions/158769/best-books-to-learn-about-design/158866#158866Comment by zuber on Best books to learn about designzuber2008-10-01T18:21:26Z2008-10-01T18:21:26ZIndeed. I already knew about The Design of Everyday Things before asking this question so I must have missed it's recommendation. Sorry!http://stackoverflow.com/questions/158769/best-books-to-learn-about-design/158866#158866Comment by zuber on Best books to learn about designzuber2008-10-01T18:04:05Z2008-10-01T18:04:05ZFirst book mentioned in this thread that is not directly connected to computers! I would give you 2 points if I could.http://stackoverflow.com/questions/90032/reasons-not-to-use-django/90084#90084Comment by zuber on Reasons not to use djangozuber2008-09-19T09:54:25Z2008-09-19T09:54:25ZThat's the whole point of the 1.0 release!