What the heck is a Wide Finder, anyway?
Posted in haskell on September 25th, 2007 9 Comments »
Tim Bray has recently been writing about a simple log file processing
task, giving his efforts the (decidedly peculiar) name of Wide
Finder.
The task at hand is to count popular links in an Apache log file.
Here’s my two minutes’ worth of hat in the ring, in Haskell.
> main = do
> args <- getArgs
> [...]
