Extractions: This was my own solo project from 1994 through 2000, and then for a few more years, it was nobody's project. Since then, Kathryn Andersen has made wonderful and much-needed improvements. The project is now mantained by her and is hosted at Sourceforge: txt2html.sourceforge.net Go there for the latest version. For historical interest and just in case someone needs it, you can still get my own last release of txt2html, which was version 1.28 , released on 23 May 2000. Also of note is , a text to LaTeX converter by Kalvis M. Jansons, based on txt2html. Wed Feb 25 02:14 GMT 2004
Howstuffworks "How Perl Works" perl is easy to use once you know the basics. It can be used to create DOS batchfiles, C shell scripts, CGI scripts for Web pages and more. http://computer.howstuffworks.com/perl.htm
Extractions: Perl is a fairly straightforward, widely known and well-respected scripting language. It is used for a variety of tasks (for example, you can use it to create the equivalent of DOS batch files or C shell scripts), but in the context of Web development it is used to develop CGI scripts One of the nice things about Perl is that, because it is a scripting language, people give away source code for their programs. This gives you the opportunity to learn Perl by example, and you can also download and modify thousands of Perl scripts for your own use. One of the bad things about Perl is that much of this free code is impossible to understand. Perl lends itself to an unbelievably cryptic style! This article assumes that you already know how to program (if you know the C programming language , this will be especially easy for you). Perl is easy to use once you know the basics. In this article, we're going to start at the beginning and show you how to do the most common programming tasks using Perl. By the end of this article, you will be able to write your own Perl scripts with relative ease, and read cryptic scripts written by others with somewhat less ease, but this will be a good starting point.
Www.modperl.com The home site of Writing Apache Modules with perl and C , a book about creatingWeb server modules using the Apache API, written by Lincoln Stein and Doug http://www.modperl.com/
Extractions: with Perl and C This is the home site of Writing Apache Modules with Perl and C , a book about creating Web server modules using the Apache API, written by Lincoln Stein and Doug MacEachern . The book (ISBN 1-56592-567-X) O'Reilly and Amazon.com We have made several of the chapters available online: The source code from the book, including modules, scripts and other items is available for download We have ported several Perl modules from the book to C modules that are not included in the book. Apache::Magick From Chapter 4: Content Handlers , a cool demo of Apache::Magick , an automatic image file format conversion module.
Extractions: offshore software development offshore outsourcing application development outsourcing ... systems admin and network security consulting a North Carolina, USA company incorporated in 1993, has evolved into a leader among North Carolina (NC) software companies in doing offshore outsourcing IT services outsourcing software services outsourcing and detailed software quality assurance (QA) testing with most cost efficient and timely delivery to our global clients. Offshore programming practices in our offshore software development centers (ODC) have saved our clients significantly in cost and time in their offshore outsourcing and custom programming efforts. Hardware microprocessor development including design, layout and proto-type manufacturing of a printed circuit board (PCB). Java platform: Java 2 Platform, J2ME Wireless toolkit, Java Card technology, J2EE for Application development for small handheld devices or a mission-critical enterprise-wide application, Wireless Messaging API (WMA), Mobile Media API (MMA). OS Platforms: Palm software application development, Windows CE, Symbian, Pocket PC, Amiga.
SAGE - Perl Practicum Index page for several articles that Hal Pomeranz wrote for the USENIX Association snewsletter ;login http://www.usenix.org/publications/perl/
Extractions: From 1993 to 1997, ;login: published a series of articles "intended to demystify some of the more occult aspects of Perl programming" (to quote from the introduction to the first article, published in August 1993). We are pleased to present the entire collection here. Starting with the June 1998 issue, ;login: has offered a series by Joseph Hall entitled "Effective Perl Programming". See the ;login: page for the table of contents for each issue. Full articles in this series are available online to USENIX and SAGE members. A discussion of how to get the most from Perl's function.
Extractions: AWStats is a free powerful and featureful tool that generates advanced web, streaming, ftp or mail server statistics, graphically . This log analyzer works as a CGI or from command line and shows you all possible information your log contains, in few graphical web pages . It uses a partial information file to be able to process large log files, often and quickly. It can analyze log files from all major server tools like Apache log files (NCSA combined/XLF/ELF log format or common/CLF log format), WebStar, IIS (W3C log format) and a lot of other web, proxy, wap, streaming servers, mail servers and some ftp servers.
Extractions: Home FAQs Tips Online Library ... Syndicate this! So, you want to learn perl? Where to start? A good place is this introduction or any of the books in the Beginners section below. As you learn more, you can move down the book lists and visit www.perl.org and www.cpan.org for more information. Beginners First Response helps you find the answers to the question you're about to ask. Announcing the learn.perl.org Online Library where you can read your favorite perl books. You can now read the beginners lists (and all other perl.org mailinglists) with your newsreader ( Unix Windows or MacOS readers) from the news server nntp.perl.org . You can also browse it on the web Books commonly recommended on the beginners lists. If a book isn't mentioned in this list it might still be good, but there is a good chance it isn't. :-) Learning Perl (3rd ed)
GigHost Offers virtual hosting with per gig pricing. Supports instant activation, PHP, MySQL, perl, CGI, SSI, custom emails, and unlimited subdomains. http://www.gighost.com/
Extractions: GigHost is now offering Web Hosting for as low as $0.25/gig with ONE on ONE customer service . If you are tired of dealing with Web Hosts who don't value your business or understand your objectives, now is the time to move your operations to our network. Never again experience endless phone delays or frustrating response times. GigHost has just tripled it's staff and has the resources to allow YOU to be successful! Featured Plan:
Perl - GNU Project - Free Software Foundation (FSF) perl is a language optimized for scanning arbitrary text files, perl combines (inthe author s opinion, anyway) some of the best features of C, sed, http://www.gnu.org/software/perl/perl.html
Extractions: Perl is a language optimized for scanning arbitrary text files, extracting information from those text files, and printing reports based on that information. It's also a good language for many system management tasks. The language is intended to be practical (easy to use, efficient, complete) rather than beautiful (tiny, elegant, minimal). Perl combines (in the author's opinion, anyway) some of the best features of C, sed awk , and sh , so people familiar with those languages should have little difficulty with it. (Language historians will also note some vestiges of csh, Pascal, and even BASIC-PLUS.) Expression syntax corresponds quite closely to C expression syntax. Unlike most Unix utilities, Perl does not arbitrarily limit the size of your dataif you've got the memory, Perl can slurp in your whole file as a single string. Recursion is of unlimited depth. And the tables used by hashes (previously called "associative arrays") grow as necessary to prevent degraded performance. Perl uses sophisticated pattern matching techniques to scan large amounts of data very quickly. Although optimized for scanning text, Perl can also deal with binary data, and can make dbm files look like hashes. Setuid Perl scripts are safer than C programs through a dataflow tracing mechanism which prevents many stupid security holes. If you have a problem that would ordinarily use sed or awk or sh, but it exceeds their capabilities or must run a little faster, and you don't want to write the silly thing in C, then Perl may be for you. There are also translators to turn your sed and awk scripts into Perl scripts.
Matrax.com Offers UNIX shared hosting with PHP, MySQL and perl. Based in Hawaii, United States. http://www.matrax.com/
Extractions: Click here for more Information Matrax.com - Global Internet Service Provider A Global web site hosting service provider. We have one of the best prices on the Internet that are set at rock bottom pricing, thanks to our devoted clients here on Matrax.com, we are able to drop our prices. We have been around since 1999 and plan be around for the years to come. Give us a try! What we offer is hard to beat!
OSSP: OSSP Eperl Interprets perl through plain ASCII data. http://www.ossp.org/pkg/tool/eperl/
Extractions: OSSP OpenPKG net.sw ePaperwork OSSP eperl Title News Documents Packages ... Imprint OSSP eperl interprets a text file bristled with Perl program statements by evaluating the Perl code while passing through the plain text data. It can operate in various ways: As a stand-alone Unix filter or integrated Perl module for general file generation tasks and as a powerful webserver scripting language for dynamic HTML page programming. OSSP eperl is a fully functional Perl interpreter because internally it makes use of the original Perl interpreter library ( libperl.a ). So OSSP eperl is based on the installed Perl system. The only noticeable difference to the user between the program eperl and perl is the source file format they use. While traditional scripts are still run via perl eperl is used to interpret any type of ASCII text containing embedded script parts. These embedded scripts are theirself traditional scripts. So, ePerl is not a replacement for your original perl program. It is a variant for special programming contexts. Because ePerl just provides the Perl scripting language in a different context of programming: the embedded style. But the language itself remains the same. This way you can use all modules with eperl which are available in perl . Including those using the DynaLoader facility to load their shared objects under runtime.
Perl Primer-The Beginner's Guide To Learning Perl And CGI perl Primer provides a starting point for those who would like to learn how toprogram using perl and CGI. The site contains information about books, http://www.webdesigns1.com/perl/
Extractions: Welcome to the Perl Primer . My name is Jeff and I had been in the process learning Perl/CGI since March of 1997. Having had no prior programming experience, it was a rough road. I've found that most of the innumerable resources on the Internet are for people who are already programmers. I hope to meet some of the needs of beginners who are learning Perl. I've since switched my programming education efforts to PHP and MySQL. I find PHP easier to learn and like the fact that it was designed specifically for Web development. If you think you might be interested in learning PHP please see my Web site. Otherwise, I hope this site is helpful. "Unix is like a toll road on which you have to stop every 50 feet to pay another nickel. But hey! You only feel 5 cents poorer each time."
Sys Admin > The Perl Journal Sys Admin and The perl Journal CDROM version 10.0. Version 10.0 delivers everyissue of Sys Admin from 1992 through 2004 and every issue of The perl http://www.sysadminmag.com/tpj/
Extractions: SoftTree Technologies Cyclades Free Unix Spec Book Manage IT with less effort. Go! Jump to: Operating Systems Server Management Security Networking Storage Database Languages Training Source Code Contact Us Customer Service About Us Write for Us Subscribe Advertise Back Issues Sys Admin Magazine > The Perl Journal The Perl Journal website has moved here
Resume Page Objectoriented design and programming in C++, Java, PHP, perl. Database experience with mySQL, Access. OS Experience with all version of Windows, Red Hat Linux, Slackware Linux, and Solaris. http://www.s3m.com/preylude/resume
A Tutorial For Perl Gimp Users Some users may therefore prefer to write scripts for the Gimp in perl. The perlGimp tutorial scripts have been tested with the following versions http://imagic.weizmann.ac.il/~dov/gimp/perl-tut.html
Extractions: Original at: http://imagic.weizmann.ac.il/~dov/gimp/perl-tut.html One of the wonderful features of GIMP is that it all its functionality may be accessed through scripting. So far most of the script programming for Gimp has been done through Scheme through Script-Fu. Unfortunately the Scheme environment Gimp provides is very primitive, e.g. without any reasonable error handling. Furthermore, must users are not familiar with scheme as a language. Some users may therefore prefer to write scripts for the Gimp in Perl. Perl as a language is probably more familiar to the web-literate users, as it is the major language for writing CGI scripts. Now, Gimp scripts may also be written with Perl. This tutorial will describe how to write such plug-ins and scripts for Gimp. As there are several excellent tutorial texts describing the perl language, this tutorial will assume at working knowledge of Perl, and will instead concentrate on the use GIMP together with the of the perl modules Gimp and Gimp::Fu, written by Marc Lehmann
Perl Cgi Scripts For Webmasters Offers free and commercial perl CGI scripts and CGI services, including script installation, customization and custom work. Directory with over 1500 perl CGI scripts lists installation cost. http://www.mycgiscripts.com
Perl FAQ Index Subject comp.lang.perl.modules The perl 5 Module List (Reusable Software) Subject comp.lang.perl.* FAQ 5/5 External Program Interaction http://www.faqs.org/faqs/perl-faq/