- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Best Perl Editor and Tools
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-05-2008 12:15 PM
тАО02-05-2008 12:15 PM
I am learning Perl, newbie...
What tools, methods best practices the Perl guys out there use to creat scripts, design perl based solution ( XML, CGI , HTML ) etc..
What is the best perl editor who can get you all stuff required to design a web based solution or other non-web based solutions ?
Solved! Go to Solution.
- Tags:
- Perl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-05-2008 12:44 PM
тАО02-05-2008 12:44 PM
SolutionUse the CPAN and Perl CORE modules designed specifically for HTML and XML parsing. Web page parsing with regular expressions becomes complex and brittle very quickly. FOr CGI scripts, there is an excellent module too.
For Perl best practices, there is no better (in the opinion of many!) than Damian Conway's "Perl Best Practices" (PBP) book. That applies to good Perl regardless of the web.
An adjunct tool to the PBP book is the 'perltidy' module to standarize your code. Damian's discusses it. Download and install it from CPAN.
As for an editor, use your favorite (vi, vim, emacs).
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-05-2008 12:55 PM
тАО02-05-2008 12:55 PM
Re: Best Perl Editor and Tools
Emacs which is available for HP-UX has some syntax checkers.
Enhanced VIM for Linux also provides color coded syntax checking.
The open source world has several good perl editors at a good price $0 if you wish to use Linux to edit your source.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Tags:
- emacs
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-05-2008 01:49 PM
тАО02-05-2008 01:49 PM
Re: Best Perl Editor and Tools
While on windoze I like the crimson editor:
http://www.crimsoneditor.com/
It does the right things for me.
- syntax highlightting
- paranthesis maching
- indenting
- column or line basde cut & paste
- clever file format understanding (windoze vs unix)
- tabs
- free
Enjoy,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2008 06:12 AM
тАО02-06-2008 06:12 AM
Re: Best Perl Editor and Tools
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2008 06:27 AM
тАО02-06-2008 06:27 AM
Re: Best Perl Editor and Tools
By the way, if you want a rather large selection of 'vim' color schemes that are syntax-based, this is one place to fetch them:
http://www.cs.cmu.edu/~maverick/VimColorSchemeTest/index-pl.html
Schemes are available for Perl, HTML, C and Java.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2008 07:20 AM
тАО02-06-2008 07:20 AM
Re: Best Perl Editor and Tools
I tried using emacs, I really tried, but it got me into a constant flow of cursing as it does not support my style/layout, and my style/layout is sacred for me. Every other style is *wrong*, and disables me to maintain my own code. The big advantage of 'vim' over all the other (very good) vi clones (like my favourite 'elvis') is that vim is very actively maintained, and has got a huge user base and support groups, though still based on the great original vi.
"Best' is relative. So is worse. For me emacs is as bad to programming as bad is U2 to music. I'm sure many amongst you will reverse both statements. Not that I would understabd it :)
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-06-2008 09:05 AM
тАО02-06-2008 09:05 AM
Re: Best Perl Editor and Tools
I will try out all suggested. Actually I saw few perl editors on Windows when I googled it who offer sytax checking , execute the code besides other stuff with some price. I want a tool like or similar people use TOAD for Oracle :) I was thinking like writing a perl code with a set of input data and represent it html format on Windows . Then I guess I can port it to other OS like Linux and HPUX Solaris. I think plugins part is important to know to add and make use of the provided functionalities, makes life easy lol.
I am using Perl 5.10.0 on Windows XP
Thanks again.