Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Re: Mnemonic Devices for Perl Programming

by YuckFoo (Abbot)
on Nov 17, 2001 at 01:59 UTC ( [id://125939]=note: print w/replies, xml ) Need Help??


in reply to Re: Mnemonic Devices for Perl Programming
in thread Mnemonic Devices for Perl Programming

If inclined, one could write a reverse acronymer. With Perl and a word list one could find mnemonics like:

seek frozen panda waffles
seek fattened pizza witches
seek fierce psychedelic wives

I never cared for 'Every good boy does fine'. Maybe I can lobby for 'Extinct goats burn dry footballs'?

YuckFoo

#!/usr/bin/perl use strict; my ($string, $num) = @ARGV; my ($DICT) = '/usr/share/dict/words'; my (%words, @chs, $ch, $line, $i); @chs = split('', $string); for $ch (@chs) { if (!defined($words{$ch})) { $words{$ch} = []; } } if (!open(IN, $DICT)) { print STDERR "\nError:$DICT\n\n"; exit; } while (chomp ($line = <IN>)) { $ch = substr($line, 0, 1); if (defined($words{$ch})) { push (@{$words{$ch}}, $line); } } for ($i = 0; $i < $num; $i++) { for $ch (@chs) { print "$words{$ch}->[rand(@{$words{$ch}})] "; } print "\n"; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (3)
As of 2024-04-20 15:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found