Some programming projects Mailing List Here are some programming projects listed which I programmed in my spare time. Some may be usefull and others may not. Please use the Development Mailing List for any considerations. Github My Github page is github.com/rantanplan and my open source report card is http://osrc.dfm.io/rantanplan Git (backup) repository You may go to gitweb for browsing some of the repositories. It is a mirror of all the repositories on github. Due to legacy issues some projects are not on Github yet but only on git.buetow.org. Deb repository Some projects provide packages in .deb format. Please check out each individual project site for available architecture and so on. Basically the debian repository is available via [deb|deb-src] http://deb.buetow.org/apt DISTRIBUTION main Where DISTRIBUTION may be squeeze, wheezy.... To trust the repo please run: curl http://deb.buetow.org/apt/pubkey.gpg | sudo apt-key add - Project list All hosts ending with .foo are most likely dev, test or PoCs. Don't expect to find anything usefull there. # Ugly but works for now my $hostroot = $config->get_hostroot(); sub getf ($) { open my $f, $_[0] or die "$!: $_[0]\n"; my @slurp = !!LT!!$f!!GT!!; close $f; @slurp; } sub nl () { "!!LT!!br /!!GT!!\n" } sub list (*) { my $tag = shift; my @found = sort `find $hostroot -name $tag`; my $ret = ''; for my $found (@found) { $found =~ /.*hosts.(.*?).$tag/; my $host = $1; my @content = getf $found; $ret .= "!!LT!!b!!GT!!!!LT!!a href=http://$host!!GT!!$host!!LT!!/a!!GT!!!!LT!!/b!!GT!!" . nl;; if (@content) { $ret .= join " ", @content; $ret .= nl; } $ret .= nl; } $ret; } my $ret = list PROJECT; $ret .= "!!LT!!b!!GT!!!!LT!!i!!GT!!Older projects (not active at the moment):!!LT!!/i!!GT!!!!LT!!/b!!GT!!" . nl x 2; $ret .= list OLDPROJECT; $ret .= "!!LT!!b!!GT!!!!LT!!i!!GT!!Obsolete projects (no work will be done anymore and the software may be broken):!!LT!!/i!!GT!!!!LT!!/b!!GT!!" . nl x 2; $ret .= list OBSOLETEPROJECT; $ret;