Coder’s Eye

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

Coder’s Eye header image 4

Entries Tagged as 'Libraries'

Why I didn’t switch from jQuery to ExtJS after all

June 4th, 2008 · 9 Comments

A while back, I wrote an article about why I was switching to ExtJS from jQuery. This remains one of the top ten pages on the site, despite the fact that I never really did switch. Checking it just now, I am certain that it is the most heavily commented article on the site.
The fact […]

[Read more →]

Tags: Libraries · Open Source · Javascript

Updated Weewarify for Adobe AIR

June 3rd, 2008 · No Comments

Using the free AIR code signing certificates offered by Adobe AIR Marketplace I’ve signed Weewarify 2.1 so that it doesn’t give nasty “UNKNOWN PUBLISHER” warnings when one goes to install it. Evidently, I’ll now be able to publish updates as well, and have them be automatically offered as available, so long as I use the […]

[Read more →]

Tags: Adobe AIR · Satchmo

Fixing a category assigned with itself as parent in Satchmo

June 3rd, 2008 · 1 Comment

One annoying possibility in Satchmo is that administrators sometimes accidentally set a category as its own parent. This causes an infinite loop and hangs the site. So you can’t even use Django to fix the error.
Luckily, the solution is simple. At the commandline do like so:

/opt/webapps/mystore $ ./manage.py dbshell
mysql> update product_category set parent_id=null where id=parent_id;
mysql> […]

[Read more →]

Tags: Satchmo

Amazon Payments for Satchmo

January 16th, 2008 · 1 Comment

I’m not sure how I missed it before, but PayPal has a new competitor in Amazon Payments.
I applied this evening to the beta “Flexible Payment Service” so that I can develop a plugin for Satchmo, using Amazon Payments.
It looks really interesting. The base features will be a snap to do in python/Satchmo, of course. But […]

[Read more →]

Tags: Satchmo · Libraries

Linux.com article

November 15th, 2007 · No Comments

I’m quoted heavily in a Linux.com article about http://oohgabooga.com, the webstore I launched this summer.
If you want to hire me for your dream webstore, I’d love to talk to you. Please send an inquiry through http://solidsitesolutions.com.

[Read more →]

Tags: Satchmo · Django · Open Source

Trackbacks on Banjo

November 11th, 2007 · 4 Comments

Working on Banjo Blog, nearly the only thing remaining before my initial release is a trackback/pingback system.
Oddly enough, there isn’t any django trackback app in the wild, at least not any I could find. So, I looked around and found only half-written stuff, hacky garbage and tblib, which is too old, not Django aware, and […]

[Read more →]

Tags: Banjo · Django · Python

Importing Wordpress to Banjo

October 22nd, 2007 · 3 Comments

Thanks to Andy C I’ve finished the Wordpress import script for Banjo.
That article gives instructions for direct SQL loading of a somewhat different blog database. I couldn’t use it directly for Banjo, partially because I’m through with using MySQL. I just can’t take all the UTF problems any more. I’ve gone all […]

[Read more →]

Tags: Banjo · Django · Wordpress

Setting up Satchmo on a Debian Server

August 23rd, 2007 · 2 Comments

At the request of people on the satchmo-users mailing list, here’s my step-by-step guide to installing Satchmo on a Debian server.Debian is a wonderful base for Satchmo, much easier to set up and maintain than RedHat in my opinion.

[Read more →]

Tags: Satchmo · Lighttpd · OS · Hosting · Linux · Django · Python

Pushing toward a Satchmo Release

July 8th, 2007 · No Comments

I’ve been enjoying being a core developer on the Satchmo e-commerce engine built on the Django framework. Finally, we’re pushing toward our first major release, tentatively numbered 0.5.

My major contribution to this release is the payment module system. The idea is to allow for flexible development of payment modules for most any style of […]

[Read more →]

Tags: Satchmo · OS · Django

New record, three patches accepted in one week.

May 7th, 2007 · No Comments

I have this wonderful client who hired me to build a world-class e-commerce site for him. He gave me carte blanche to use whatever framework I wished, so I chose Satchmo, an ecommerce app for Django.
This was a bit gutsy, as I don’t think there are any live Satchmo stores in the wild just […]

[Read more →]

Tags: Satchmo · Django