Search Results

10
votes

What Perl module would you be lost without?

There are many modules whose absence would make my Perl programmer life quite a lot less comfortable. If I were to enumerate those, the result would be virtually identical to …
1
vote

Using Yahoo! Pipes

The one thing I have really used Y! Pipes for (rather than just playing around with it) is to clean up item titles, merge and finally de-dupe the feeds I got from querying multiple blog search engi …
42
votes

What are your favorite Vim tricks?

da< Delete the HTML tag the cursor is currently inside of – the whole tag, regardless of just where the cursor is. ci" …
3
votes

Useful Perl modules

For database work, I would not work directly with DBI any more. Instead I always use DBIx::Simple. This is not an ORM or a …
2
votes

Useful Perl modules

If you want to write SQL in your programs, and you aren’t interested in ORMs or other large abstractions, do investigate SQL::Interp …
1
vote

Useful Perl modules

Someone mentioned HTML::TreeBuilder for scraping. Here’s a hot tip that uses TreeBuilder under the covers: Web::Scraper. W …
1
vote

Greenspunning: Most impressive extension of a language you have made and whether it was worth it

Moose is a Perl 6-style object system for Perl 5 written on top of Perl 5’s Python-style object system; in turn it spawned …
15
votes

What are your favorite git features or tricks?

My favourite feature, hands down, is the index. Since my initial surprise about it abated and I got used to it, I have wondered why anyone would want to work without this concept. The initia …
3
votes

Do you prefer “if (var)” or “if (var != 0)”?

For numeric value scalars, I tend to write if ( $num_foo ) when $num_foo is in my control. If it’s user input or passed in from outside I either numify it first or spell o …