Not My Idea — Snippets

Some code snippets about Linux / Php and Python

.NET related Feeds

Here is a list of interesting feeds about .Net (in OPML format):
It’ll be useful at least for Heaven
<?xml version="1.0" encoding="UTF-8"?>
<opml version="1.0">
    <head>
        <title>About .NET</title>
    </head>
    <body>
        <outline title=".Net" text=".Net">
            <outline text="Blog de Julien Dollon"
          [...]

Install Liferea from sources

Recently, I had to install liferea from sources, in order to have the google reader syncronisation.
This is not the last trunk version, but a version that works well on my system.
Here is the steps, on a Ubuntu 9.04 system:
Download / Extract
wget http://sourceforge.net/projects/liferea/files/Liferea%20Unstable/liferea-1.5.10.tar.gz/download
tar -xvzf liferea-1.5.10.tar.gz
Get dependencies
sudo apt-get build-dep liferea
sudo apt-get install -y libcurl4-gnutls-dev libwebkit-dev
Build
cd liferea-1.5.10
./configure
make
sudo make [...]