Quotidien Hebdomadaire Mensuel

Quotidien Shaarli

December 28, 2013

Measure Anything, Measure Everything « Code as Craft

Introduction à statd, démonstration par l'exmeple que l'on peut grapher tout et n'importe quoi

jquery.adaptive-backgrounds.js • A jQuery plugin for extracting dominant colors from images and applying it to its parent

Plugin jquery qui extrait la couleur dominante d'une image et l'applique à son parent en backgroud

StatD | Simple daemon for easy stats aggregation
thumbnail

Démon NodeJs pour grapher tout et n'importe quoi

Easy, proactive monitoring of processes, programs, files, directories and filesystems | Monit

Système de monitoring simple

Delete Merged Branches with git
thumbnail

Alias git pour supprimer toutes les branches déjà mergé avec master :

[alias]
delete-merged-branches = "!f() { git checkout --quiet master && git branch --merged | grep --invert-match '\*' | xargs -n 1 git branch --delete; git checkout --quiet @{-1}; }; f"

Encore mieux :
http://rob.by/2013/remove-merged-branches-from-git/