Skip to content

Instantly share code, notes, and snippets.

@notbenh
notbenh / springer-free-maths-books.md
Created December 30, 2015 23:36 — forked from bishboria/springer-free-maths-books.md
Springer made a bunch of books available for free, these were the direct links
@notbenh
notbenh / 99.pl
Created August 10, 2012 04:18 — forked from igal/99.pl
ben goofs off with 99 bottles ... now with moar minimalism.
#!/usr/bin/env perl
use strict;
use warnings;
sub bottles() { sprintf qq{%s bottle%s of beer}
, $_ || 'No'
, $_==1 ? '' : 's';
}
sub store() { $_=99; qq{Go to the store, buy some more...\n}; }
sub wall() { qq{ on the wall\n} }