Stuff with the Perl Foundation. A couple of patches in the Perl core. A few CPAN modules. That about sums it up.
Well, it's not really data mining but I wrote a program that would list the interests my friends have, ordered by the popularity of the given interest. As far as I can tell, LJ does not have robust tools for gathering said data, so I was forced to resort to HTML parsing. Yuck. The program has bugs, but it was a fun little exercise. I ran it for a friend of mine and curiously, he discovered that the most common interest for his friends was "cats", but he's not particularly fond of them. I, on the other hand, have a rather large number of friends interested in piercing, corsets, and candles (not the top interests, though.) I'll not speculate as to what that means.
Cool DRY-inspired idiom (Score:1)
Thanks.
Re:Cool DRY-inspired idiom (Score:3, Insightful)
Thanks. I saw that in someone else's code and I realized that my has a return value: the variable that it's declaring. This is not exactly clear from the docs, though. Maybe I should submit a doc patch. Hmm.
Re:Cool DRY-inspired idiom (Score:2)
-Dom
Re:Cool DRY-inspired idiom (Score:3, Interesting)
Re:Cool DRY-inspired idiom (Score:3, Informative)
You can't do that because the variable doesn't come into scope until after the current statement finishes executing. Fortunately, that's an easy fix.
Re:Cool DRY-inspired idiom (Score:2)