Skip to content

Instantly share code, notes, and snippets.

@blerou
blerou / gitg_1104
Created October 17, 2011 14:58
Gitg 0.1.2 install script for Ubuntu 11.04
#!/bin/bash
apt-get install libgtk2.0-dev libgtksourceview2.0-dev gsettings-desktop-schemas-dev
cd /tmp
wget http://ftp.gnome.org/pub/gnome/sources/gitg/0.1/gitg-0.1.2.tar.gz
tar xzf gitg-0.1.2.tar.gz
cd gitg-0.1.2
./configure
make
@blerou
blerou / gitg_1110
Created October 17, 2011 14:55
Gitg 0.2.5 install script for Ubuntu 11.10
#!/bin/bash
apt-get install libgtk-3-dev libgtksourceview-3.0-dev gsettings-desktop-schemas-dev
cd /tmp
wget http://ftp.gnome.org/pub/gnome/sources/gitg/0.2/gitg-0.2.5.tar.bz2
tar xjf gitg-0.2.5.tar.bz2
cd gitg-0.2.5
./configure
make
@blerou
blerou / CouchDBLogger.php
Created February 24, 2010 15:53
CouchDB logger for symfony 1.4
<?php
/**
* Logger with CouchDB backend
*
* Available parameters:
* - url: the couchdb server url (optional, default: http://localhost:5984)
* - dbname: the name of the database (required)
* - timeout: seconds waiting for the server (optional, default: 0.5)
*