orokusaki

76
Reputation
26 views

Registered User

Name orokusaki
Member for 5 months
Seen Nov 25 at 16:55
Website
Location Jupiter, Florida
Age
Nov
25
revised Reasons not to use django
More details
Nov
25
answered Correct place to put extra startup code in django?
Nov
25
comment Resize image twice in Django using PIL
Oh, nice! That will save a lot of memory too right?
Oct
8
awarded  Commentator
Oct
8
comment How do I override delete() on a model and have it still work with related deletes
true indeed, but Django does a database level mass delete on all waiters without triggering each of their delete methods, which is less expensive, but also less conventional.
Oct
8
answered How do I override delete() on a model and have it still work with related deletes
Oct
8
revised How do I override delete() on a model and have it still work with related deletes
changed description
Oct
8
asked How do I override delete() on a model and have it still work with related deletes
Oct
7
comment A way to use method parameters in django templates?
Thanks for your answer. I strongly disagree with their philosophy, but I don't have time to build a full stack framework, so I'll live with it. The guys over at Django HQ should take a look at the Velocity project if they want to see what is the best template system in the world. That's not subjective. It's a fact. I'll have to pickup Cheetah and attach that instead.
Oct
7
comment Why is Ruby more suitable for Rails than Python?
Don't forget these two important points: google.com/trends?q=django%2C+ruby+on+rails&c… google.com/trends?q=python%2C+ruby
Oct
7
answered Why is Ruby more suitable for Rails than Python?
Oct
7
asked A way to use method parameters in django templates?
Oct
1
accepted Good opensource django project for learning…
Sep
30
awarded  Supporter
Sep
30
answered Good opensource django project for learning…
Sep
28
answered Has anyone ever given a developer interview online?
Sep
28
awarded  Teacher
Sep
28
answered Django template dir switching
Sep
28
comment What are the Worst Software Project Failures Ever?
They wanted the shop to be a mall of other people's shops (some sort of large-scale affiliate system), with a personalized feel (based on some ridiculous profiling algorithms.
Sep
28
comment Resize image twice in Django using PIL
Thanks, image.copy() was exactly what I needed. I'm too ridiculous to scroll down and notice that method in the docs, so I was trying to clone the UploadedFile object myself and reuse it :)
Sep
28
revised Resize image twice in Django using PIL
syntax error
Sep
28
awarded  Editor
Sep
28
revised Resize image twice in Django using PIL
more code
Sep
28
asked Resize image twice in Django using PIL
Sep
27
asked Grab an image via the web and save it with Python
Aug
30
answered Reasons not to use django
Aug
29
comment How do I form a URL in Django for what I’m doing
So this is as tricky as I thought then. Thanks Daniel.
Aug
29
comment How do I form a URL in Django for what I’m doing
I need similar CMS functionality in my URLs but I'm not building a CMS. Thanks for the list though
Aug
29
asked How do I form a URL in Django for what I’m doing
Aug
29
comment How do I decipher a dynamic URL magic in Django
The only problem with that is that I'm using this as my current <sku> regex: url(r'^([a-zA-Z0-9/_-]+)/(?P<sku>[a-zA-Z0-9_-]+)\.html$', 'product_display', name='product_display'), I have the ([a-zA-Z0-9/_-]+)/ at the beginning because the url could be anything at all as long as it has the somesku.html at the end and I want to be able to pull the sku out (from the dot back to the last slash). This because I want the following to be possible: mysite.com/collection/sub-collection (matches a collection) mysite.com/collection/sub-collection/… (matches a sku)
Aug
27
asked How do I decipher a dynamic URL magic in Django
Jul
4
answered How do you do something after you render the view? (Django)
Jul
4
comment How do I store multiple values in a single attribute
Thanks man. I was just reading "Python Web Development with Django" today and came to that conclusion, but have been trying to figure out all day if it was correct. Thank you.
Jul
2
asked How do I store multiple values in a single attribute
Jun
26
awarded  Scholar
Jun
26
comment DJANGO - How do you access the current model instance from inside a form.
Thank you for your answer too. I didn't try because I was a bit confused, but going forward I don't think I want that coupled with the form itself because then if I use the form without an instance, it'll throw an error.
Jun
24
asked DJANGO - How do you access the current model instance from inside a form.
Jun
24
answered What are the Worst Software Project Failures Ever?