Antti Rasinen

946
Reputation
97 views

Registered User

Name Antti Rasinen
Member for 1 year
Seen Nov 26 at 13:50
Website
Location FI
Age 30
A friend of Python. Likes theoretical stuff and errs on the side of idealism. Abhors the fact that so many things in life are accidents of birth.
Oct
18
awarded  Nice Answer
Oct
9
awarded  Nice Answer
Sep
16
awarded  Yearling
Aug
6
comment How to fool git-svn to recognize merges made with svn?
Thanks! This is the first time I've heard of grafts. Always good to learn more.
Jun
30
awarded  
Jun
24
comment Django: Model name clash
Surely the app labels for the different apps should reduce the risk of conflict. Can you give more details about the error?
Jun
22
comment Django: Is there a better way to bold the current page link
I first found about this technique from here: 24ways.org/2005/auto-selecting-navigation
Jun
22
comment How do I build a custom “list-type” entry to request.POST
If my understanding of the source code is correct, you should be able .append() to the not_bases -list. Can you please clarify what you mean by "it won't work"?
Jun
18
answered implementing a template tag within a generic app - django
Jun
11
comment django import search path
Could you please clarify the question? How is the autocompletion in vim related to this? You don't need DJANGO_SETTINGS_MODULE if you don't actually run the Django framework and even then manage.py will often handle it for you. What is the actual problem caused by the missing environment variable?
Jun
11
answered Where does the widgets/foreign.html file reside in django trunk?
Jun
11
comment Django : Adding a property to the User class. Changing it at runtime and UserManager.create_user
It seems that the new release is coming out soon(ish). They now have about five bugs open for the 1.1 milestone. The number was 15 or so last week. See code.djangoproject.com/query?status=new&statu…
Jun
10
comment What’s a more elegant rephrasing of this cropping algorithm? (in Python)
This solved my problem exactly.
Jun
10
answered How to ensure that a javascript file is included only once in Django
Jun
8
answered Django : Adding a property to the User class. Changing it at runtime and UserManager.create_user
Jun
8
comment How to pull a random record using Django’s ORM?
I wouldn't create a new manager just to house one method. I'd add "get_random" to the default manager so that you wouldn't have to go through the all()[0] hoop everytime you need the random image. Furthermore, if author were a ForeignKey to a User model, you could say user.painting_set.get_random().
Jun
5
comment django: second for loop produces no elements
It seems as if the first loop almost exhausts an iterator but leaves one more in the pipeline. A sentinel? It'd be interesting to know more about the mystery object rendered in the second for loop. You can try to tease out its identity with {{ category|pprint }}. But the most useful thing would be, as others have said, to post information about the view and the categories -object.