Archive for 'linux'
Using Git with Subversion: Tips that will make your life easier

Using Git with Subversion: Tips that will make your life easier

Posted 06 July 2011 | By | Categories: featured, git, linux, programming and tip | 10 Comments

  In the last couple of years I’ve been working on various projects that – unfortunately – still use Subversion as their version control system. I moved to git already a few years ago and I wanted to keep using it as much as possible. Luckily git-svn is an incredibly complete tool to interact with [...]

how to setup pinax with nginx

Posted 07 October 2009 | By | Categories: django, featured, linux, pinax and python | 8 Comments

Tonight I spent sometime getting Pinax – Django swiss army knife – to work on nginx via fastcgi on my Ubuntu 9.10 box. Here is a step by step guide. First of course we need to install nginx, pretty easy with Ubuntu: sudo apt-get install nginx Create a new file called <appname> in /etc/nginx/sites-available/ like [...]

my desktop during an intense coding session using xmonad

Posted 01 July 2009 | By | Categories: editors, linux and programming | 6 Comments

Here is what a coding session of mine looks like when I am in full swing. This is specifically the coding screen. That’s a 1920×1600 resolution screen-shot . I obviously also have a browsing screen not shown. In the image above I am immersed into integrating Compass into Pinax (full post on that will follow). [...]

idea for a useful tool for a web entrepreneur/developer

Posted 21 November 2008 | By | Categories: linux and programming | Comments Off

This is the scenario I was thinking about: I want to interact with a graphic designer remotely, who is very very good with Photoshop and HTML/CSS but who might have trouble setting up the Linux environment needed to run my web app. What I would like to build (or find if it already exists) is [...]

linux one liner to extract email addresses from a django log file

Posted 12 November 2008 | By | Categories: linux and tip | 1 Comment

Say something bad happened and your application sent emails that it shouldn’t have (ahem who? not me…) and you want to collect the emails to apologise. So you just copied the output of a log file in a text file (wrong.txt) like the following: sending message ‘Confirm email address for example.com’ to email1@test1.com sending message [...]