Intro to Python and Django Presentation

I recently gave a talk at a DjangoMaine meetup introducing folks to Python and Django. There wasn’t enough time to go over everything, so I tried to pick and choose the parts that I felt where important to go over, in order to have a good overview of what Python and Django is all about. I hope this was useful to the folks that attended. If so, it would be really helpful to know what parts you would like to know more about.

Read more

Share

New Pelican Based Blog

I have recently changed my Django based blog to a statically generated blog based on Pelican, and hosted by GitHub Pages. This is for a couple of reasons. The first reason was because my blog is really simple, it was just a bunch of reStructuredText documents that were converted to HTML. I didn’t need the Django-admin features and I always felt it was a little overkill for my blog. The second reason was because I wanted to host my blog contents on GitHub so that others could change/update/edit my blog posts and send me pull requests if they have something good to add.

Read more

Share

Deploying my Django application to dotCloud: Part 2

As I mentioned in a recent blog post, in the 11 months since I wrote my first post on dotCloud, I now work there. Besides me working there, there has been a lot of other changes at dotCloud, and I wanted to take the time to update my original post so that it was up to date and had all the recent information. I’m going to completely rewrite the old blog post here, with updated information, and leave the old one around for posterity.

Read more

Share

I'm now working for dotCloud

A lot has happened in the 11 months since I wrote my first blog article on dotCloud. There was an Egyptian revolution, a royal wedding, a new iPhone and iPad, Osama bin Laden was killed, and on a more personal note, I left my job at CashStar and I now work for dotCloud. In the grand scheme of things, my job change was nothing compared to those big events of the past 11 months, but it was pretty big for me.

Read more

Share

Running sentry on DotCloud

Sentry is a realtime event logging and aggregation platform. At it’s core it specializes in monitoring errors and extracting all the information needed to do a proper post-mortum without any of the hassle of the standard user feedback loop. The main feature of sentry and the ability to send all of your application logs to one place, and then aggregate them, so that you only get one error email for the same error.

Read more

Share

The Developers Guide to PCI Compliant Web applications

last updated: 12-07-2012 by Ken Cochrane Update: 12-07-2012 I have added the youtube video and slides from a recent talk I did on Building PCI Complaint Django Applications. Update: 04-05-2012 This article has been translated into chinese , by Wujun Shen (吴峻申) When I first started working at CashStar.com three and a half years ago, I had heard about PCI before, but I didn’t really know what that meant. Since we were building an ecommerce platform that was going to be accepting credit cards over the internet, I knew we needed to make sure we were fully PCI compliant.

Read more

Share

Getting DjangoCMS up and running on ActiveState's Stackato

ActiveState has recently started their own PAAS based on CloudFoundry this blog post is to help you get up and running quickly with a Django CMS installation, and hopefully give you enough information to get your own applications on there as well. To keep things simple, I’ll just go through the steps that are required in order to get this up and running and add some comments along the way.

Read more

Share

Installing a Django application on Red Hat's OpenShift PAAS

It seems like everyone has their own PAAS solution these days, and if they don’t have one yet, it is just a matter of time before they will. Red Hat has recently joined in on the fun with their OpenShift platform. I decided to take it for a test drive, and share my results with you. This service is still in beta and things are changing all of the time, so these notes might not work in the future, take that into consideration when using it as a guide.

Read more

Share

Installing DjangoCMS on Heroku in 13 easy steps

Do you want to use Django-cms on Heroku but don’t know where to start? All you need to do is follow these 13 easy steps, and they will get you on your way. Create a place to store your project \$ mkdir -p ~/projects Go into the projects directory \$ cd ~/projects Clone git repo from github, requires git client. \$ git clone git://github.com/kencochrane/django-cms-heroku.git

Read more

Share

Installing DjangoCMS on dotCloud in 12 easy steps

Do you want to use Django-cms on dotcloud but don’t know where to start? All you need to do is follow these 12 easy steps, they will get you on your way. Create a place to store your project \$ mkdir -p ~/projects Go into the projects directory \$ cd ~/projects Clone git repo from github, requires git client. \$ git clone git://github.com/kencochrane/django-cms-dotcloud.git Go into the new project directory

Read more

Share