leonerd.livejournal.com
LeoNerd
http://leonerd.livejournal.com/tag/fur
Aug 18th, 2008 12:57 pm. In case anyone needs to know, here's what I'm doing:. Outbound: Wed, 27 Aug 1hr 45min Total time Depart London British Airways 902 Economy Boeing 767 1hr 45min 07:25 Heathrow airport (LHR) Arrive Frankfurt 10:10 Frankfurt Int'l Airport (FRA) Return: Mon, 1 Sep 1hr 40min Total time Depart Frankfurt British Airways 909 Economy Airbus A319 1hr 40min 17:10 Frankfurt Int'l Airport (FRA) Arrive London 17:50 Heathrow airport (LHR). May 26th, 2008 02:39 pm. Jan 15th, 2007 09:09 pm. It su...
leonerd.livejournal.com
Furry Survey - LeoNerd
http://leonerd.livejournal.com/11212.html
Furry Survey - LeoNerd. May 26th, 2008 02:39 pm. I don't usually do memes, but I think this one is worthy enough of note. It's a furry survey. An attempt to get some accurate numbers on statistics and things. No idea how well it will work, but likely the result will be better if more people respond. And yes I'm aware of the inherent self-selection towards LJ-users that'll come out in the result as a consequence of posting it on LJ. So don't point that out to me :P. 2008-05-26 02:11 pm (UTC).
leonerd.livejournal.com
LeoNerd
http://leonerd.livejournal.com/tag/geeky
Oct 25th, 2007 09:12 pm. I've been accused recently of not posting to my journal enough. If truth be told, it's largely because I don't think I ever do anything, or have anything to say, that would be of wider interest to many people at once. So perhaps I'll start writing some more specific things and see what the reaction is. To bind the thumb buttons on my mouse to send keyboard events to programs that wouldn't otherwise pay attention to these mouse buttons. Cough firefox YES I AM LOOKING AT YOU. To ru...
leonerd.livejournal.com
There's a meme going around: > 17. Who do you think would make a… - LeoNerd
http://leonerd.livejournal.com/11778.html
There's a meme going around: 17. Who do you think would make a - LeoNerd. Oct 2nd, 2008 11:13 am. There's a meme going around:. 17 Who do you think would make a better president? At one time it was a contest between a black guy, a woman, and an old guy. Surely we should instead settle on some kind of compromise choice and pick all three - I'd vote Oprah, but at only 54, is she really old enough? 2008-10-02 01:24 pm (UTC). PUT HER IN THE AGEING MACHINE!
leonerd.livejournal.com
Cheating on the 4th of July - LeoNerd
http://leonerd.livejournal.com/11515.html
Cheating on the 4th of July - LeoNerd. Cheating on the 4th of July. Jul 31st, 2008 06:13 pm. One of the above. A long time ago I wrote a list of songs I have with numbers in their title. I still don't exactly have a "four". but I wonder if anyone thinks U2's 4th Of July.
leonerds-code.blogspot.com
LeoNerd's programming thoughts: 2014/11
http://leonerds-code.blogspot.com/2014_11_01_archive.html
My thoughts, ideas, and sometimes rants, on Perl, C, Linux, terminals,. Printing function calls in Perl. Lately my favourite way to interpolate function calls into printed strings is to use the. Notation for embedding arbitrary expressions into strings:. Print "f($number) = ${ fibonacci($number) } n";. Other techniques include separate arguments:. Print "f($number) = ", fibonacci($number), " n";. Or a helper variable:. My $result = fibonacci($number); print "f($number) = $result n";. Paul is a Perl and C...
leonerds-code.blogspot.com
LeoNerd's programming thoughts: 2015/06
http://leonerds-code.blogspot.com/2015_06_01_archive.html
My thoughts, ideas, and sometimes rants, on Perl, C, Linux, terminals,. Turning a Hard Problem Into an Easy One. Recently I continued my stewardship (for want of a better word) of. By finally adding the last function in a useful set of the pairwise key/value list management functions, called. I had been intending to add to the set of. A sorting function called. To manage that I would first have to get around a slightly awkward interface requirement. Perl's regular. Pass the single items in via. And regul...
leonerds-code.blogspot.com
LeoNerd's programming thoughts: 2014/06
http://leonerds-code.blogspot.com/2014_06_01_archive.html
My thoughts, ideas, and sometimes rants, on Perl, C, Linux, terminals,. List: Util additions in Perl 5.20. For a while now, I have taken over maintaining. I have taken the four shortcutting reduce-like boolean test functions of. Use List: Util 1.33 qw( any ); if( any { $ = 0 } @numbers ) { say "The list of numbers includes zero"; }. As this module ships as part of the Perl core, it can reliably make use of the C compiler to build it, so most of the functions it contains are implemented in efficient XS co...