Coder’s Eye

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

Coder’s Eye header image 4

Entries Tagged as 'Languages'

Howto use Satchmo as an App

January 10th, 2007 · 3 Comments

I’m going to be using Satchmo to power the backend of a highly customized store that I’m building for a new client.

[Read more →]

Tags: Best Practices · Django · Open Source · Python

Django Newforms HiddenInput Values

January 3rd, 2007 · 4 Comments

I really like Django’s newest module for forms, “newforms”. Despite its currently lacking documentation, it is well worth learning.It feels much more “Pythonic” than the old manipulator-based method. Less magic is going on, and less constant reference to the manual is needed.

[Read more →]

Tags: Django · Python

Django Formatter Mixin Class

December 27th, 2006 · No Comments

I’ve always disliked having to write __repr__ methods for my classes. In Django, it is especially important, since the admin pages use that method to give you Python is moderately unusual in that it allows classes to have multiple inheritance.

[Read more →]

Tags: Tips · Django · Open Source · Python

Simple, degradable Flash embedding using jQuery

December 24th, 2006 · 7 Comments

Now that I am doing professional web layouts for clients, I find myself appreciating the quick, easy, and well-documented jQuery library. I just don’t have time to hassle with Dojo and its size, widgets I don’t need, and messy documentation.

[Read more →]

Tags: Languages · Best Practices · Javascript

Using Dojo for a simple show/hide toggle effect.

November 25th, 2006 · 4 Comments

Without a doubt, my favorite Javascript library is Dojo Toolkit.

[Read more →]

Tags: Javascript

Stats on a larger Django project

September 29th, 2006 · No Comments

A Django website that took (a lot) more than 20 minutes. Interesting writeup of a meta-forum app, including code samples and time breakdown.
Found via Django Forums.
Technorati Tags: django

[Read more →]

Tags: Django · Python

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

Google Checkout - Initial Impressions from a developer

August 7th, 2006 · 2 Comments

This weekend I wrote my first Google Checkout integration module.

[Read more →]

Tags: Reviews · Best Practices · Python

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