Oli

13,263
Reputation
1025 views

Registered User

Name Oli
Member for 1 year
Seen 1 hour ago
Website
Location England
Age 25
I'm a freelance webdeveloper, open source contributor, Linux user and I also run ThePCSpy.com
1h
comment Is Google App Engine better than Webfaction for a beginner in Django dev?
Webfaction and Google App Engine are "the best choices for Django"? Since when? I find my VPS does an amazing job with tons more flexibility than either WebFaction or GAE give you.
5h
accepted Only validate certain fields if a BooleanField is set
5h
answered Only validate certain fields if a BooleanField is set
1d
revised Only validate certain fields if a BooleanField is set
added 1004 characters in body; added 595 characters in body
1d
comment Only validate certain fields if a BooleanField is set
I had an idea about thatm Nick. Instead of calling self.cleaned_data['field_name'], called self.clean_field_name() - That way you're guaranteed a result (unless your custom cleans have messy circular dependencies). It's a little more work for the CPU but it should always work.
2d
answered Only validate certain fields if a BooleanField is set
2d
asked Only validate certain fields if a BooleanField is set
2d
revised Get type of Django form widget from within template
added 197 characters in body
2d
comment Get type of Django form widget from within template
Welcome to SO btw.
2d
revised Get type of Django form widget from within template
added 353 characters in body
2d
asked Get type of Django form widget from within template
Nov
27
accepted How would you compare Apache Tomcat & Glassfish as production servers?
Nov
26
revised What’s the difference between ‘var $x’ and ‘var x’ in jQuery?
Nothing to do with jQuery - removing jquery tag
Nov
26
answered What’s the difference between ‘var $x’ and ‘var x’ in jQuery?
Nov
26
comment Pitfalls of Object oriented programming
The "question" isn't a question; it's rhetorical. Seeing people rant on about over-using something being bad grinds my nuts. You don't *have* to over-OOP things, just as you don't *have* to over-normalise. If you're drowning in OOP, you've gone too far. You've abused it. Simple as that.
Nov
25
awarded  Nice Answer
Nov
23
comment Good resources for experienced web developers moving to PHP?
I'm not saying don't migrate - Just migrate to something else if you can. Django is miles better than ASPNET was when I used it (v2) IMO. But it's very different and that can be intimidating.
Nov
23
answered Good resources for experienced web developers moving to PHP?
Nov
23
comment Good resources for experienced web developers moving to PHP?
To people reading the above: I'm not ragging on PHP just because I hate it - I used it professionally for many years after years on ASP.NET. I have done this exact migration and was very unhappy with it. I wish Django was as mature as it is now back then. I'd be happier and richer now.
Nov
23
comment Good resources for experienced web developers moving to PHP?
Don't. Seriously, know it or not, you get a lot of structure from ASP.NET that you take for granted. PHP is a mess. You can do certain advanced things but even just on a language basis, it's a joke. If you have the choice, choose something with a real language behind it like Django (Python is awesome) or Ruby on Rails. Much faster for building websites and they're maintainable (something that is painful 6months on in PHP).
Nov
20
comment Calling small app in template : Django
Nothing? Template tags do something.
Nov
20
answered Calling small app in template : Django
Nov
20
awarded  Notable Question
Nov
19
answered ASP vs. ASP.NET ( Thin client vs. thick client )
Nov
19
revised ASP vs. ASP.NET ( Thin client vs. thick client )
just a few typos - no major edits
Nov
19
answered Facebook app shows a blank page
Nov
18
comment Check a phrase is not in an <a> (or other) element
Indeed. I'm not trying to parse the HTML so much as just check an phrase is rendered text and isn't inside invalid elements. Sure the answer may be to parse the HTML to find that out, but telling us what not to do, doesn't get us any nearer to the best solution for this problem.
Nov
18
asked Check a phrase is not in an <a> (or other) element
Nov
18
awarded  Good Answer
Nov
17
awarded  Popular Question
Nov
6
revised How to mimic DropBox functionality with Ruby script?
added 279 characters in body
Nov
6
answered How to mimic DropBox functionality with Ruby script?
Nov
6
answered Obfuscating your jquery code.
Nov
6
revised Format numbers in django templates
edited body; edited tags
Nov
3
comment Edit Django User admin template
Thanks Gabriel!
Nov
3
comment Edit Django User admin template
Top stuff. For bonus points, any idea how to get the current user? Ie the object that is being processed.
Nov
3
comment Edit Django User admin template
I mean it's not form-data - it's report data. I want to show some user activity from other models on the User page.
Nov
3
asked Edit Django User admin template
Nov
2
awarded  Nice Answer
Oct
28
revised Slice a string after a certain phrase?
added 181 characters in body
Oct
28
comment Slice a string after a certain phrase?
Mark with the split, what happens if there is no code in the string (a slightly although existing possibility)? And with both is there not a better way to check multiple codes at once. Both examples only appear to deal with one at a time.
Oct
27
asked Slice a string after a certain phrase?
Oct
23
awarded  Popular Question
Oct
20
awarded  Nice Answer
Oct
10
comment Delete multiple files matching a pattern
I'd be tempted to compile the regex before entering into the loop... But yeah, that looks good.
Oct
10
asked Delete multiple files matching a pattern
Oct
7
comment For list unless empty in python
That's an interesting idea that might actually fit into my crazy flow. I'll play and get back to you.
Oct
7
revised For list unless empty in python
added 280 characters in body
Oct
7
comment For list unless empty in python
Added another layer of down-stripping. The for processing can (and probably aught to) be done externally. And I'll need to return so I can cut out the else, guard-style
Oct
7
revised For list unless empty in python
added another version