Blog Archives
Knowing and Doing
Reflections of an Academic and Computer Scientist www.cs.uni.edu/~wallingf/blog
Read Full Post | Make a Comment ( None so far )TODO
http://www.masteringemacs.org/ http://www.billthelizard.com/2008/12/books-programmers-dont-really-read.html How to test a random number generator
Read Full Post | Make a Comment ( None so far )The effective perler
www.effectiveperlprogramming.com by brian d foy
Read Full Post | Make a Comment ( None so far )Perl advent calendar 2011
Keeping the Packages Neatly Wrapped Up (local::lib) by Ricardo Signes (rjbs) Keeping up with the Joneses (App::cpanoutdated) by Ricardo Signes (rjbs) Keep it Clean (namespace::autoclean) by Ricardo Signes (rjbs) Warn Different (Carp::Always) by Ricardo Signes (rjbs) Stupid Command Line Tricks (perl -M) by Ricardo Signes (rjbs) Make all the combinations (Set::CrossProduct) by Ricardo Signes (rjbs) […]
Read Full Post | Make a Comment ( None so far )Extract branch to a new repo using git-format-patch
I know this should probably be done using git-filter-branch, but with format-patch, I don’t need to learn anything new. More importantly, filter-branch would give me more to forget Given a git repo with a branch ‘find-ls’ with history like this: * 10c757c (origin/master, master) handle errors better | * 073892b (HEAD, find-ls) don’t allow […]
Moose tips
init_arg – use alternate attribute name in new() # in package Foo has qw(bar is ro init_arg quux); … # elsewhere my $foo = Foo->new( quux => 1 ); Foo has an attribute named “bar”, but we pass “quux” to the constructor. See Moose::Manual::Attributes / Constructor parameters (init_arg) init_arg – ban setting an attribute in […]
Read Full Post | Make a Comment ( None so far )« Previous Entries Next Entries »