Re: [Boston.pm] Put similarities in code and differences in data

2006-04-03 Thread Uri Guttman
TS == Tolkin, Steve [EMAIL PROTECTED] writes: TS I am looking for the best and/or original wording of this programming TS maxim: Put similarities in code and differences in data and i have also heard it the other way around, put similarities in data and differences in code. you can

Re: [Boston.pm] Put similarities in code and differences in data

2006-04-03 Thread Jeremy Muhlich
On Mon, 2006-04-03 at 14:02 -0400, Tolkin, Steve wrote: I am looking for the best and/or original wording of this programming maxim: Put similarities in code and differences in data data-driven programming ? -- Jeremy ___ Boston-pm mailing list

Re: [Boston.pm] Put similarities in code and differences in data

2006-04-03 Thread Greg London
one of my favorite maxims: Always... no, no... never... forget to check your references. From: [EMAIL PROTECTED] on behalf of Jeremy Muhlich Sent: Mon 4/3/2006 5:05 PM To: boston-pm@mail.pm.org Subject: Re: [Boston.pm] Put similarities in code and differences

Re: [Boston.pm] Put similarities in code and differences in data

2006-04-03 Thread John Abreau
Greg London wrote: one of my favorite maxims: Always... no, no... never... forget to check your references. Or another classic from the same source: You're not supposed to park your car on campus... -- John Abreau / Executive Director, Boston Linux Unix ICQ 28611923 / AIM abreauj /

Re: [Boston.pm] Put similarities in code and differences in data

2006-04-03 Thread Duane Bronson
As long as everyone else is being silly #!/usr/bin/perl -w print _DATA; put data in code _DATA -or- #!/usr/bin/perl -w sub put_code { eval $_[0]; } while (my $in_data = ) { put_code($in_data); } Tolkin, Steve wrote: I am looking for the best and/or original wording of