zeemonkee2 | 14 years ago | on: Why Django Sucks
zeemonkee2's comments
zeemonkee2 | 14 years ago | on: Why Django Sucks
zeemonkee2 | 14 years ago | on: Why Django Sucks
For example, my typical use case: unique email address for logins, no usernames:
I suppose you could subclass User with a longer username, and sync the username with the email address using a signal, for example.
Still, it's a chunk of workaround I end up doing one way or another with each new project. Hopefully soon (based on discussions on django-developers group) we'll see some kind of pluggable User model.
zeemonkee2 | 14 years ago | on: Why Django Sucks
My own observation is that bad codebases are the result of bad development practices regardless of framework. In my last job the code quality was so poor (and the management processes so broken) that whether they'd used Django, Flask or roll-your-own would not have made a whit of difference.
zeemonkee2 | 14 years ago | on: Why Django Sucks
zeemonkee2 | 14 years ago | on: Why Django Sucks
zeemonkee2 | 14 years ago | on: Why Django Sucks
At this point I'd prefer to work on a well-managed, professionally coded project written in PHP than one written using <insert-python-framework-du-jour-here> run by idiot managers.
zeemonkee2 | 14 years ago | on: Why Django Sucks
zeemonkee2 | 14 years ago | on: Why Django Sucks
No, they have a different idea of what a framework should do or not do. Doesn't mean they have some utopian idea just because it's not Django.
zeemonkee2 | 14 years ago | on: Why Django Sucks
Template execution speed is unlikely to be the bottleneck for the vast majority of sites. I prefer Jinja2 for the flexibility (macros etc) rather than the performance.
zeemonkee2 | 14 years ago | on: Why Django Sucks
zeemonkee2 | 14 years ago | on: Why Django Sucks
Django auth was designed around the typical use case ca. 2005. The world's moved on a bit since then.
What I end up doing nowadays is roll my own (and re-use bits of contrib.auth where appropriate, such as password hashing) using a custom auth backend and keep a separate site for the Django admin which uses contrib.auth models. As long as I don't have to use 3rd party apps that rely on auth.User I'm fine.
zeemonkee2 | 14 years ago | on: Infallible Formula to Create a Money-Making Startup
- you really need contacts. As the OP points out, this involves working with them some time (in the inside, as contractor, selling to them, whatever). If you haven't, find a salesman who has the right contacts and experience: "don't call X, he's retiring next year and doesn't want to rock the boat with a new purchase. He'll just string you along. Call Y instead, he's new to the company and wants to prove himself - I play golf with him next Saturday".
- decision making at BigCo is at a frustrating, glacial pace. If you're used to the instant feedback of throwing something up in an app store or HN or whatever, you'll be disappointed.
- lots and lots and lots of meetings. Incredibly inane and the lead times are ridiculous.
- once you've proven yourself, it can be a real gravy train.