Geometry.Net - the online learning center
Home  - Computer - Perl
e99.com Bookstore
  
Images 
Newsgroups
Page 7     121-134 of 134    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7 

         Perl:     more books (100)
  1. Computer Science & Perl Programming: Best of TPJ by Jon Orwant, 2002-11-15
  2. A Little Book on Perl by Robert Sebesta, 2000-01-08
  3. A Living Legacy of Fritz and Laura Perls: Contemporary Case Studies by Bud Feder, 1997-03
  4. Teach Yourself Cgi Programming With Perl 5 in a Week (Teach Yourself Series) by Eric Herrmann, 1996-12
  5. Gestalt Approach and Eyewitness to Therapy by Frederick S. Perls, 1981-08
  6. Autoimmunity: Methods and Protocols (Methods in Molecular Medicine)
  7. The Web Wizard's Guide to Perl and CGI by David A. Lash, 2002-01-15
  8. Win32 Perl Programming: The Standard Extensions (2nd Edition) by Dave Roth, 2001-09-20
  9. Paris Without End: On French Art Since World War I by Jed Perl, 1988-08
  10. Perl Power!: A JumpStart Guide to Programming with Perl 5 by Michael Schilli, 1998-12-16
  11. Dotty by Erica S. Perl, 2010-08-01
  12. Games Diversions & Perl Culture: Best of the Perl Journal by Jon Orwant, 2004-08
  13. The Complete Perl Training Course (Prentice Hall Complete Training Courses) by Harvey M. Deitel, Paul J. Deitel, et all 2001-06-28
  14. Learning Perl Objects, References, and Modules by Randal L. Schwartz, Tom Phoenix, 2003-06-09

121. Perl Quiz Of The Week
Archive and information site for the perl Quiz of the Week mailing list.
http://perl.plover.com/qotw/index.html.en
Perl Quiz of the Week
Deutsch Polski (Last update Thu Oct 21 08:10:43 2004) Every Wednesday I send out a Perl quiz, usually a request to write a program or function to perform a certain task. The 'regular' quiz can be solved using only techniques and functions found in Learning Perl (3rd edition) by Schwartz and Phoenix. The 'expert' quiz may be difficult. The two kinds of quizzes appear on alternate weeks.
Mailing Lists
There are three mailing lists related to the Quiz of the Week. The main mailing list is perl-qotw . It has very low traffic. Each week, it gets only a few messages: a quiz on Wednesday, a post with sample solutions on the following Monday, and possibly an administrative note. (In the past 7 days, perl-qotw has received exactly 3 messages.) perl-qotw does not carry any discussion, solutions posted by list readers, questions, comments, or chat. All those things are directed to the second list, perl-qotw-discuss perl-qotw-discuss has high traffic6 messages in the last 7 days, and sometimes as many as 100 or 200. If that is more traffic than you would like to receive, you may want to subscribe to perl-qotw-discuss-digest instead. You will receive the

122. Perlop - Perl Operators And Precedence
perl operators have the following associativity and precedence, listed from highest precedence to lowest. Note that all operators borrowed from C keep the
http://www.sdsc.edu/~moreland/courses/IntroPerl/docs/manual/pod/perlop.html
  • NAME
  • SYNOPSIS
  • DESCRIPTION
    NAME
    perlop - Perl operators and precedence
    SYNOPSIS
    Perl operators have the following associativity and precedence, listed from highest precedence to lowest. Note that all operators borrowed from C keep the same precedence relationship with each other, even where C's precedence is slightly screwy. (This makes learning Perl easier for C folks.) With very few exceptions, these all operate on scalar values only, not array values. In the following sections, these operators are covered in precedence order. Many operators can be overloaded for objects. See the overload manpage
    DESCRIPTION
    Terms and List Operators (Leftward)
    A TERM has the highest precedence in Perl. They includes variables, quote and quote-like operators, any expression in parentheses, and any function whose arguments are parenthesized. Actually, there aren't really functions in this sense, just list operators and unary operators behaving as functions because you put parentheses around the arguments. These are all documented in the perlfunc manpage In the absence of parentheses, the precedence of list operators such as

123. Perllocale - Perldoc.perl.org
A description of how to set and use the locale system to support international character sets.
http://perldoc.perl.org/perllocale.html

124. ScriptSearch.com: Perl
perl at scriptsearch.com. Online Communities (2). Scripts and Programs (1440 ). Software (18). Software and tools to help in developing perl scripts.
http://www.scriptsearch.com/Perl/

125. Perl Express: A Free Perl IDE/Editor For Windows :: The Best Free Antivirus Soft
A free perl IDE for Windows 98/Me/2000/XP/2003, includes multiple tools for writing and debugging your perl programs. Free perl Editor.
http://www.perl-express.com/
Perl Express
Download

Screen Shots

Registration

Tech Support
...
Links

Mailing List: Subscribe and get the latest news about Perl Express
Leave

Perl Express Version 2.5 of Perl Express is released. Now it's FREE Download... Perl Express is an unique and powerful integrated development environment (IDE) under Windows 98/Me/2000/XP/2003, includes multiple tools for writing and debugging your perl programs.
Perl Express is intended both for the experienced and professional Perl developers and for the beginners.
Since the version 2.5, Perl Express is free software without any limitations, registration is not required. General Features Multiple scripts for editing, running and debugging Full server simulation Completely integrated debugging with breakpoints, stepping, displaying variable values, etc. Queries may be created from internal Web browser or Query editor Test MySQL, MS Access... scripts for Windows

126. A Fresh Look At Efficient Perl Sorting
The Award winning paper presented by Larry Rosler and Uri Guttman at the 1999 perl Conference.
http://www.sysarch.com/perl/sort_paper.html
A Fresh Look at Efficient Perl Sorting Uri Guttman and Larry Rosler Uri Guttman is an independent Perl and Internet consultant; uri@sysarch.com
Larry Rosler is at Hewlett-Packard Laboratories, Palo Alto, CA; lr@hpl.hp.com
Abstract sort function in depth and describe how to use it with simple and complex data. Next we analyze and compare several well-known Perl sorting optimizations (including the Orcish Maneuver and the Schwartzian Transform). We then show how to improve their performance significantly, by packing multiple sortkeys into a single string. Finally, we present a fresh approach, using the sort function with packed sortkeys and without a sortsub. This provides much better performance than any of the other methods, and is easy to implement directly or by using a new module we created, Sort::Records. NOTE: Sort::Records died during development but five years later, Sort::Maker was released and does all that was promised and more. Find it on CPAN What is sorting and why do we use it? Sorting is the rearrangement of a list into an order defined by a monotonically increasing or decreasing sequence of sortkeys , where each sortkey is a single-valued function of the corresponding element of the list. (We will use the term sortkeys to avoid confusion with the keys of a hash.)

127. Perlfaq
A list of frequently asked perl questions with expert answers.
http://faq.perl.org/
Next:
Previous:

[Table of Contents]
[Index]
perlfaq
  • NAME
  • DESCRIPTION
    • Where to get the perlfaq
    • How to contribute to the perlfaq ...
    • The Questions
      • : General Questions About Perl
      • : Obtaining and Learning about Perl
      • : Programming Tools
      • : Data Manipulation
      • : Files and Formats
      • : Regular Expressions
      • : General Perl Language Issues
      • : System Interaction
      • : Networking
      NAME
      perlfaq - frequently asked questions about Perl
      DESCRIPTION
      Where to get the perlfaq
      The perlfaq comes with the standard Perl distribution, so if you have Perl you should have the perlfaq. You should also have the perldoc tool that lets you read the perlfaq $ perldoc perlfaq Besides your local system, you can find the perlfaq on the web, including at http://perldoc.perl.org/ . The perlfaq is an evolving document and you can read the latest version at http://faq.perl.org/ . The perlfaq-workers periodically post extracts of the latest perlfaq to comp.lang.perl.misc. The perlfaq documents are in the perl source tree (see perlrepository ). The git repository notes all changes to the FAQ and holds the latest version of the working documents and may vary significantly from the version distributed with the latest version of Perl. Check the repository before sending your corrections.
      How to contribute to the perlfaq
      You can mail corrections, additions, and suggestions to

128. Perl XML FAQ
By Jonathan Eisenzopf. Information on using and manipulating XML with perl.
http://xml.coverpages.org/perl-xml-faq11.html
[This local archive copy is from the official and canonical URL, http://www.perlxml.com/faq/perl-xml-faq.html ; please refer to the canonical source document if possible.]
Perl XML FAQ
Version 1.1
by Jonathan Eisenzopf
Credits
Thanks to Clark Cooper, Matthew Sergeant, Enno Derksen, Ken MacLeod, Rob Cameron, and Asakura Hiroshi for their contributions to this FAQ.
Overview
This FAQ contains information related to using and manipulating XML with Perl. Please direct all corrections and additions to eisen@pobox.com . This FAQ can be found on the Web at http://www.perlxml.com/faq/perl-xml-faq.html . Asakura Hiroshi has created a Japanese translation of this FAQ which is available at http://db-www.aist-nara.ac.jp/xml/perl-xml-faq-j.html . Information in this FAQ is primarily based on discussions and information transmitted to the Perl XML email list. To join, send an email to Lyris@ActiveState.com with the message: SUBSCRIBE Perl-XML This FAQ was generated using a small Perl script and an XML file. The script can be slurped from http://www.perlxml.com/faq/xmlfaq.pl

129. Perlmodinstall2 - Installing Perl Modules
A guide to installing perl modules on Unix and Windows platforms.
http://www.rcbowen.com/imho/perl/modules.html
  • perlmodinstall2 - Installing Perl Modules Description Installing Perl Modules
    perlmodinstall2 - Installing Perl Modules
    Description
    Jon Orwant has a good tutorial about installing Perl modules, called perlmodinstall, which is distributed with Perl. However it is a little outdated, particularly in the Windows realm.
    Installing Perl Modules
    This document describes the procedure for installing Perl modules, on Unix and NT. It covers CPAN.pm for Unix, the PPM for NT, and a variety of methods of installing 'manually'. Unless specifically stated, when I refer to NT, I really mean all Win32 platforms, including Win95 and Win98. I don't have Windows 2000 installed yet, but I have no particular reason to think that these procedures won't work there. This document, or any subsequent revision of this document, should always be available at http://www.rcbowen.com/imho/perl/modules.html
    Getting modules
    Before you install a module, you need to get it. Both Unix and NT have an automated method of getting and installing modules (CPAN.pm and PPM, respectively) but if you are not using those, for whatever reason, you will need to go to CPAN to retrieve the module files.
    Downloading modules
    The first thing that you will need to do is to get the module from CPAN. You can find a CPAN mirror by looking at the file called MIRRORED-BY. You can find a copy of that file at

130. Mod_perl: Apache/Perl Modules
A list of perl modules used for interacting with the Apache Webserver.
http://perl.apache.org/products/apache-modules.html
Home Products
Apache/Perl Modules
perl.apache.org

What is mod_perl?

Success Stories

Download
...
Search

Whole Site Stories Download All Docs ..1.0 Docs ....Guide 1.0 ....OS 1.0 ....API 1.0 ..2.0 Docs ....User 2.0 ....OS 2.0 ....Devel 2.0 ....API 2.0 ..General Docs ..Tutorials ..OffSite Docs Getting Help Mailing Lists Products Contribute About
Short Cuts
Maillist Subscription

Maillist Archives
The source The 1.0 guide ... CPAN 2.0 Modules Porting Status The Apache Software Foundation ASF Home ASF Sponsorship ASF Thanks Sister Sites Apache Week Perl Mongers Use Perl Perl Monks ... Books mod_perl2 User's Guide By Stas Bekman , Jim Brandt Practical mod_perl By Stas Bekman , Eric Cholet The mod_perl Developer's Cookbook By Geoffrey Young, Paul Lindner, Randy Kobes mod_perl Pocket Reference By Andrew Ford Writing Apache Modules with Perl and C By Lincoln Stein, Doug MacEachern Embedding Perl in HTML with Mason By Dave Rolsky, Ken Williams More mod_perl books...
Table of Contents

131. Browse And Search CPAN : Perl Core Modules
A guide to creating new perl modules and locating existing ones.
http://cpan.uwinnipeg.ca/chapter/Perl_Core_Modules/Module

132. Michael Gossland And Associates
Development services in perl and perl-CGI plus a free introductory online perl course.
http://www.gossland.com/
Home About Contact EasyLanguage ... Recipes
Welcome to Michael Gossland and Associates! MGA offers specialized professional programming services to clients anywhere in the world. TradeStation EasyLanguage Visit the links in the menu on the left for more details of what MGA can do for you. For more information on the background of the company, please see about MGA A resume in Word format and references are available upon request. Contact MGA by email at info234@gossland.com or call 250-756-3970. MGA is located on the West Coast and is on Pacific Time.

133. Perl Training Courses
Introductory and advanced perl programming courses. By PTR Associates Ltd.
http://www.ptr.co.uk/perl-courses.htm
People, Training, Results
Independent Technical IT Computer Training Courses Quick Search:
Home
Schedule Classroom Courses Closed Courses ...
1st - 4th November 2010
Training Course Subjects:
Applications Training Courses ASP .Net Courses C Programming Courses Cisco Courses ... Online e-Learning Courses
Perl Course Dates
Perl Advanced Courses Perl Introduction Courses
The table below shows the scheduled Perl course dates and prices. If the dates displayed are not suitable, don't let that discourage you from getting in touch, as we are often able to re-schedule courses and run courses on additional dates, and on rare occasions we may need to re-schedule courses anyway. We run many of the courses as closed / tailored courses and onsite courses . In addition, if you can't make the scheduled course dates for your desired course or prefer one-to-one training, then take a look at our SOLO IT Scheme Print / Download PDF Version of full course schedule Perl Introduction Courses Course Title Crse
Length Oct-2010 Dec-2010 Dec-2010 Jan-2011 Mar-2011 Price
(excl.VAT)

134. The Perl Archive's Learning Center : Perl Articles
perl related articles and tutorials.
http://www.perlarchive.com/articles/perl/
Perl Archive Home CGI/Perl Guide Forums Perl Horizons ... Article Index : Perl Articles Search for in Perl Guide Learning Ctr Perl Archive Links
  • TPA Perl Guide Tell a Friend about TPA About TPA ... Search
  • Our Sponsors Awards Received The Learning Center - Perl Article Index
    Thank you for visiting the Learning Center's Perl Article index. Below are the currently available articles. If you'd like to write a Perl, webmaster, or general programming article, please contact our editor with a summary of the article you would like to write. Title Author Publication Date Page Weight n Lines per Page, or How to output a set number of records, in sequence, page by page. Dave Mortimer Autovivification : What is it and why do I care? Uri Guttman Network Programming in Perl [Book] - Chapter 6 Lincoln Stein CGI Tutorial: Parsing a Query, Part 1 Jeff "japhy" Pinyan Hash Mania Jasmine Merced-Ownbey Function of the Month - map Simon Cozens Demystifying CGI: Part 1 - Things to Know About CGI Jeff "japhy" Pinyan Demystifying CGI : Part 2. Types of Queries Jeff "japhy" Pinyan Perl Regular Expressions - Expanded Tutorial From the Perl Manual split/136k total Function of the Month - grep Simon Cozens Choosing a Perl Book Simon Cozens Practical Perl - Programming for Higher Cause Ellison Belt Traps for Perl4 Programmers From the Perl Manual Perl Style Guide From the Perl Manual Traps for Perl4 Programmers From the Perl Manual Repeating Yourself Jeff "japhy" Pinyan Hash Slices Uri Guttman PerlWhirl 2000 Jasmine Merced-Ownbey yapc 19100 Jasmine Merced-Ownbey CGI Output with HTML Templates David Lyon

    Page 7     121-134 of 134    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7 

    free hit counter