Pretty much all the ‘work’ applications I’ve built in the last couple of years can be split into 2 parts:
1) CRUD: The database, and a UI for manipulating the data in it
2) LOGIC: The actual application functionality. (i.e. the reason for the app to exist)
These days I’m finding that the amount of actual logic/functionality I […]
Read Full Post »
Posted in Python, Django, OpenID on Jan 6th, 2006 5 Comments »
I’ve been experimenting with adding openid authentication to django. I couldn’t find another software package to do this (although I did see this, which implies there is some other code out there)
Anyway - here’s mine so far.
The main problem I’ve hit is that the username column in the django authentication db schema (v0.90) […]
Read Full Post »
Posted in General, Python, Django on Jan 3rd, 2006 2 Comments »
I’ve been porting my jamvat software to the django platform. Django looks cool and I hope it will get me some
Get jamvat running on the windows platform
Provide some UI, connection pooling, security and debugging goodies
Remove some setup documentation burden (since it’s a ‘django app’)
Anyway, I was immediately hit by the problem that the django […]
Read Full Post »