Feeds:
Posts
Comments

Archive for April, 2007

I’ve had the chance to interview a few people lately. It’s just getting started, my calendar includes 3 interviews this week.
There are 2 parts to the interviews I give. In the first part, I like to talk about general interest in what’s going on in our field. In the second part, I ask people to [...]

Read Full Post »

One of the tricks I’ve been using recently is:

vim `!!`

` (backtick) which is used on the command-line to substitute, in-place, the result of a command
!! (double-exclamation) which is replaced by the history mechanism by “previous command”

In short: open in vim the result of the previous command, which would be a list of files.
When I’m programming [...]

Read Full Post »

Part of my journey, over the last year or so, to understand functional programming have led me to paradigm shifts and discoveries. One such discovery was: any? and all?.
Before going into the reasons of why these functions must be part of your toolkit, let me show you example code.

list = ['cat', 'dog', 'snake', 'crocodile', 'spider']

# [...]

Read Full Post »