Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

RE: Be a monkey!

by lindex (Friar)
on Aug 30, 2000 at 22:35 UTC ( [id://30373]=note: print w/replies, xml ) Need Help??


in reply to Be a monkey!

Ok I havent slept in a lil over 20 hours so this could be completly wacked out code
but here it is :)
#!/usr/bin/perl use strict; no strict qw(refs); use Fcntl qw(:flock); use Lingua::Ispell qw( spellcheck ); die "$0: <logfile>\n" unless(@ARGV==1); open(LOG,">>$ARGV[0]") || die "$!: $ARGV[0]"; flock(LOG,LOCK_EX) || die "Can not get lock on: $ARGV[0]"; my(@keys) = ('a'..'z',' ',' ',' ',' ',' '); my($word,$chr,$count); while($chr=$keys[rand @keys]) { if ($chr eq ' ' || length(($word)? $word : 1) ==15) { print $word,"\n" if((spellcheck($word))->{'type'} eq 'ok'); $word = ""; } $word .= $chr if($chr ne ' '); } close(LOG); exit();



lindex
/****************************/ jason@gost.net, wh@ckz.org http://jason.gost.net /*****************************/

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://30373]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (6)
As of 2024-04-23 12:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found