| |||||||||||
| |||||||||||
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")) {Or "re-engineered" you can write ... open (FH,"../Desktop/access_log.xyz") The following is "converted" code again ... while ($line = <FH>) {which is much better written as @info = <FH>;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 ProjectsP711 - An Introduction to Standards in Perl
Some other Articles
Pictures FramedSomeone 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 pageThis 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). |
| ||||||||||
PH: 01144 1225 708225 • FAX: 01144 1225 707126 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho | |||||||||||