Category: Programming

  • Perl Twitter Feed

    Last August, when I was writing my talk Proud to Use Perl for YAPC::Europe, I wanted to get a feel for what real people were actually saying about Perl. It’s all very well claiming that people say Perl is dead, but I wanted to get some real quotations to use in the talk. I came…

  • What is Wrong With this Picture?

    I’ve just found a number of subroutines defined this way in the code that I’m working on. sub do_something () { my $parameter = shift; … } I discovered the problem because I started getting errors about “too many parameters”. I knew what the problem was (the empty prototype) but it took a couple of…

  • CPAN Web Feeds

    I’m still thinking about adding stuff to this blog. I’d like to add some web feeds to the sidebar. In particular, I’d like a feed of my CPAN uploads. I don’t expect it to be a particularly busy feed (although having such blatant evidence of my laziness might galvanise me into being a bit more…

  • Testing Syntax Highlighting

    Right. I think I might have got this cracked now. Here’s some Perl code. #!/usr/bin/perl use strict; use warnings; print “Hello World\n”; That’s pretty cool, isn’t it. I wonder what it’ll look like in the web feed. I’ll try to feed my fixes back to the author of the plugin.

  • Syntax Highlighting

    One of the nice things about moving away from use.perl to your own site is that you can install whatever toys you want. I’ll eventually get round to posting code on this blog. And when I do it would be nice if it had some nice syntax highlighting. I could, of course, write my own…