Don't understand german? Read or subscribe to my english-only feed.

Archive for August, 2012

How geeks celebrate a birthday AKA bin2dec

Thursday, August 30th, 2012

Far away from Rosetta Code, but that’s what Frank and I came up with when explaining 100000₂: Guile: guile <<< \#b100000 guile -c ‘((@@ (ice-9 format) format) #t “~d~%” #b100000)’ Racket: racket -e ‘#b100000’ Ruby: ruby -e ‘puts “100000”.to_i(2)’ Python: python -c ‘print int(“100000”, 2)’ Perl: perl -e ‘print 0b100000’ Zsh: zsh -c ‘print $((2#100000))’ […]

100000₂

Wednesday, August 29th, 2012

jenkins-debian-glue: Continuous Integration for Debian and Ubuntu made easy

Monday, August 27th, 2012

jenkins-debian-glue is an open source project of mine which recently celebrated its first birthday and it’s time to finally write about it. jenkins-debian-glue allows you to build Debian and Ubuntu packages directly from the Jenkins continuous integration system. It retrieves package sources from a version control repository, adjusts debian/changelog (handle version number + mention changes […]