Follow tomcoates on Twitter
A weblog by Tom Coates concerning future media, social software and the web of data
Quote of the month: "This is not a brothel, there are no prostitutes here"
You can explore the archives, read the disclaimer or subscribe to an RSS feed

This is why we love

Posted March 12, 2001 3:57 PM.

This is why we love Cal.

####################################

#!/usr/bin/perl

@a = qw(c i k e);
@b = qw(o d u r a s);
@c = qw(n h);
@d = qw(a b f g j l m p q t v w x y z);

$dict = "/usr/dict/words";

foreach $a(@a){
 foreach $b(@b){
  foreach $c(@c){
   foreach $d(@d){
    $word  = "$a$b$c$d";
    push(@words,$word);
   }
  }
 }
}

print "done combinations!\n";

open(FILEONE,$dict) or die "can't open dict: $!";
while($w = ){
 chomp($w);
 foreach $word(@words){
  if ($w eq $word){
   print "match: $word\n";
  }
 }
}
close(FILEONE);

print "done matching!\n";

####################################

© 1999-2007 Tom Coates