Training, Open Source computer languages

PerlPHPPythonMySQLhttpd / TomcatTclRubyJavaC and C++LinuxCSS

Search our site for:
Home Accessibility Courses Diary The Mouth Forum Resources Site Map About Us Contact
Dont just convert to Perl - re-engineer!
There's a difference between converting a program from one language to another and re-engineering a program to make best use of a new language - and I had a couple of clear examples of that on our Perl for Larger Projects course today.

The following is "converted" code ...

if (! open (FH,"../Desktop/access_log.xyz")) {
print STDERR "We have a weeny problem there!\n";
exit (1);
}


Or "re-engineered" you can write ...

open (FH,"../Desktop/access_log.xyz")
   or die "We have a weeny problem there!\n";


The following is "converted" code again ...

while ($line = <FH>) {
   if (index($line,"cliad") > -1) {
      print "$line";
   }
}


which is much better written as

@info = <FH>;
@matched = grep(/cliad/,@info);
print @matched;


or perhaps even

print (grep(/cliad/,<FH>));

Why re-engineer?
• Performance
• Maintainability
• Readability
• Extendability
(written 2007-10-18 23:37:05)

 
Associated topics are indexed under
P704 - Managing Perl Projects
P711 - An Introduction to Standards in Perl

Back to
Business to Business Networking - North and West Wilts / Melksham
Previous and next
or
Horse's mouth home
Forward to
Using PHP to upload images / Store on MySQL database - security questions

Some other Articles
Pictures Framed
Someone else's wedding
Perl - progress bar, supressing ^C and coping with huge data flows
Using PHP to upload images / Store on MySQL database - security questions
Dont just convert to Perl - re-engineer!
Business to Business Networking - North and West Wilts / Melksham
First Alternative / what has happened there?
Autumnal lighting on a London trip
Ordnance Survey Grid Reference to Latitude / Longitude
Converting from postal address to latitude / longitude
1694 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34 at 50 posts per page


This is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price.

Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).

© WELL HOUSE CONSULTANTS LTD., 2008: Well House Manor • 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho