Coder’s Eye

A site about one of the three passions in my life.

Coder’s Eye header image 4

Entries Tagged as 'Django'

Zyons Forum for Django

September 16th, 2006 · Comments Off

This summer, I’ve been converting my biggest site, Invisible Castle, from Cheetah to straight Cheetah templates to Django. I’m a total Django convert, as is obvious from this site.

[Read more →]

Tags: Django · Python

A Django Killer App - Web Table Data

September 12th, 2006 · 2 Comments

Yet another great use for Django is to make trivial the creation of shared tables & forms for internal projects.

[Read more →]

Tags: OS · Tips · Django

Speedy Django Development

July 7th, 2006 · 3 Comments

As I’ve mentioned before, I am building my own web store using Django. The coding is going extremely quickly, thanks to the excellence of the framework.
I find myself marvelling at how quickly and simply various elements come together, especially when I contrast this to my previous experience doing the same thing with Java for […]

[Read more →]

Tags: Languages · Django · Python · Java

Magic Removal Success!

May 1st, 2006 · No Comments

I’m pleased to report that the Django magic removal branch is now much easier to use. It feels stable, the docs are getting complete, and I see now that the branch has now been merged to the head.My magic-removed code works great, and is passing all its tests with flying colors. Total time taken for three apps was approximately 4 hours.

[Read more →]

Tags: Django · Libraries · Python

Django Magic Removal, this time for real

April 27th, 2006 · No Comments

Despite my earlier initial successes using the Django Magic-Removal Branch, I had to roll back. The branch code was stuck in an unusable state for a couple weeks when I was really wanting to crank out some functionality on my storefront.
I’ve long since learned that when you have a strong urge to code, […]

[Read more →]

Tags: Django · Python

Django on Rimuhosting

April 13th, 2006 · No Comments

This is just a quick post to confirm that Django does indeed work perfectly on Rimuhosting with very little effort required to set up. It is fast, it connected to my Mysql db without a peep of a complaint, and it is making me a happy developer.
Setup details
I’m using Rimu’s “MiroVPS3″ plan. It […]

[Read more →]

Tags: Hosting · Tips · Django · Python · Uncategorized

Django and Dreamhost - not now

April 11th, 2006 · 4 Comments

Argh! I simply cannot get Django to work on Dreamhost. I hereby eat my words.
I’m really not worried about it, to be honest.
I tried for hours, and the best I got was extremely spotty results. Even the simple “hello.fcgi” directly copied from the Dreamhost Wiki only works about 30% of the time. […]

[Read more →]

Tags: Hosting · Django

Why am I writing an ecommerce engine from scratch?

April 4th, 2006 · 4 Comments

Sometimes I have to remind myself why I am writing a brand-new shopping cart and product management system.

[Read more →]

Tags: Design · Django

Django and multipart emails

March 26th, 2006 · No Comments

As part of the Django Storefront system I am writing, I needed to send multipart messages. The base Django mail functionality doesn’t seem to do this, at least not with my version of Python.

[Read more →]

Tags: Django · Open Source

Django and authenticated smtp

March 22nd, 2006 · 1 Comment

I just sent off my first patch for Django. It adds the ability to send mail via SMTP servers which require authentication. I need this for Dreamhost, which has authentication on its mail servers.
The modifications were simple, and the code I was modifying was refreshingly clean. Better yet, the Django project site […]

[Read more →]

Tags: Django · Python