First swiss.py

Yesterday evening we had the very first swiss.py. Thanks to Uche Mennel for doing a very interesting presentation about Traits. I was really happy about the number and diversity of people who showed up. The next swiss.py will take place on March 31 with Florian Bösch doing a presentation related to OpenGL programming in Python. Details and location will follow.

February 25, 2009 · Patrice Neff

Pragmatic code review

Code reviews are an important instrument to keep the code quality high. There are all kinds of schools on how to do this. For the local.ch frontend we made pre-checkin code reviews mandatory for a few core components including the Okapi framework. For all other components and applications, developers can request code reviews if they wish. For this to work without the developers being annoyed with the process, code reviews must be super-easy. When first starting with code reviews at local.ch I tested a ton of tools. But none of them quite fit our workflow. In the end we went for LodgeIt. LodgeIt is “only” a pastebin application. But it works amazingly well for code reviews because it has some advanced functionality such as replying and then diffing the reply to the original. ...

February 23, 2009 · Patrice Neff

How I'm saving almost CHF 1000 for public transport

I currently work at a startup which we’re financing from our own pockets. So I’m always looking for a way to save some money. And I found a way to save almost 1000 Swiss Francs on my public transport bills this year. The GA is the train flat-rate as sold by the Swiss train company SBB. There is complicated tariff jungle for how much it costs. This is how I bought the GA so far: ...

February 23, 2009 · Patrice Neff

OS X clipboard access from the shell

Chris Siebenmann motivated me to finally do something about the situation of my web site passwords. So I needed some nice password generation process. I looked at 1password but didn’t find it terribly attractive. Instead I’m using the OSX keychain. For generating passwords I use the excellent apg. And since today this shell function: clippass() { apg -M SNCL -m 15 -n 1 | pbcopy pbpaste } This creates a long and safe password, pastes it to the clipboard using pbcopy and then shows it on the command line by pasting it again from the clipboard using pbpaste. ...

February 20, 2009 · Patrice Neff

Architecture of news.local.ch

Intro Probably my favourite project at local.ch was news.local.ch. That’s a site which crawls Swiss newspapers for news and classifies them by town. It only shows news which can be associated with any Swiss town. This leads to a good news collection even for very small villages. In this post I’m going to outline the architecture and how we used Amazon’s web services to make building this a lot easier than it could have been. There will be a follow-up detailing how we used Python in this project. ...

February 20, 2009 · Patrice Neff

iphonomist

I really love The Economist. It’s a must-read for me every week. Many weeks it’s the only news I read. But lately I’ve been wanting to read it in the train on my iPhone, especially as the online version is up one night before I got my print edition. But the online version of The Economist is just too fat. Tons of Javascript and ads which make it a slow experience. The Tabulate bookmarklet helped a little to ease the pain. But not much. ...

February 17, 2009 · Patrice Neff

Switched to PyBlosxom, no comments anymore

I’ve just switched this blog from typo to PyBlosxom. There is one change I’m adding at the same time: I don’t accept comments anymore. My mail address is in the sidebar column on the right, feel free to mail me. And you can of course voice your opinions on your own blog and link back to me - I’ll probably link back to you from the original post if I find yours. Basically I got tired of fighting spam in my blog, but I already do a good job of filtering it in my mail inbox. ...

February 15, 2009 · Patrice Neff

Python overview presentation

This evening I did a Webtuesday presentation about Python. Got nice feedback and lots of discussion afterwards. Thank you guys! You can download the presentation (PDF).

February 10, 2009 · Patrice Neff

Continuous testing with Python

Back when I did some Ruby on Rails development I was a big fan of autotest. With it I could stay in my editor while the project test suite got executed with every change. Setup Now that I’m working in Python I was looking for something similar and I was successful. You’ll need the following: Mac OS X Growl nose nosegrowl tdaemon Then you can execute tdaemon like this in your project directory: ...

February 7, 2009 · Patrice Neff

A/B Testing presentation

I spent the day at StartupCamp in Basel yesterday. I thoroughly enjoyed the conference and would love to see it happen again. This being a BarCamp I did a presentation as well. Mine was about A/B testing or multivariate testing. It’s not exactly the same thing but I tend to lump them together. I collected all the background material on delicious with the abtest tag. You can download the presentation (PDF, 2MB). There were some more nice pictures in my live presentation but I stripped them for online consumption for copyright reasons. ...

February 1, 2009 · Patrice Neff