Re: Perl is strange
Christoph: That’s
because =~ binds more tightly than +. This does what you meant:
$ perl -le 'print "yoo" if (1 + 1) =~ /3/'
perlop(1) has a useful table of precedence.
Christoph: That’s
because =~ binds more tightly than +. This does what you meant:
$ perl -le 'print "yoo" if (1 + 1) =~ /3/'
perlop(1) has a useful table of precedence.
To my horror, I recently saw this online SSH key generator.
I hope nobody reading this needs to be told why this is a bad idea. However, in case you do, here are a few reasons:
I hacked together a little timesaver for developers this morning: omni
completion for Launchpad bugs in Vim’s debchangelog mode. To use it,
install vim 7.1-138+1ubuntu3 once it hits the mirrors, open up a
debian/changelog file, type “LP: #”, and hit Ctrl-X Ctrl-O. It’ll think
for a …
See Encodings in man-db for context.
Yesterday, I uploaded man-db 2.5.1-1 to unstable. With this version, not only is it possible to install manual pages in UTF-8 (as with 2.5.0, although with fewer bugs), but it’s also possible to ask man to produce a …
Erich: I do sometimes wonder why we don’t relax the definition of “safe” upgrades to include installing new packages but still not removing old ones. I know that many of my uses of dist-upgrade are just for when something grows a new dependency that I didn’t previously have …
I’ve spent some quality upstream time lately with man-db. Specifically, I’ve been upgrading its locale support. I recently published a pre-release, man-db 2.5.0-pre2 mainly for translators, but other people may be interested in having a look at it as well. I hope to release 2.5 …
If your key has so many UIDs and such a combinatorially exploded number of
signatures on it that it takes gpg minutes just to start up in
--edit-key mode, then I probably won’t bother signing it. HTH, HAND.
I spent far too much of today cleaning up an upgrade bug to do with conffiles, which I suspect also affects other packages that have attempted to work around dpkg conffile prompts when moving conffiles between packages. If you maintain such a package, please review your code to make sure …
I’m mentoring Matheus Morais in the Google Summer of Code, porting d-i to the Hurd. We’ve exchanged a few mails and he has in hand all the preliminary (but not yet functional; wouldn’t want to make it too easy :-)) patches I’ve put together in the past …
Joey writes about the lack of new tools that fit into the Unix philosophy. My favourite of such things I’ve written is sponge. It addresses the problem of editing files in-place with Unix tools, namely that if you just redirect output to the file you’re trying to edit …