[29220] in Perl-Users-Digest
Perl-Users Digest, Issue: 464 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Tue May 29 03:09:58 2007
Date: Tue, 29 May 2007 00:09:06 -0700 (PDT)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Tue, 29 May 2007 Volume: 11 Number: 464
Today's topics:
3D libraries (was The Concepts and Confusions of Prefix <ville@oikarinen.org>
Re: can perl modules be used by various versions of per <joe@inwap.com>
Re: cgi script causing perl loop???? <joe@inwap.com>
Re: FAQ 4.46 How do I handle linked lists? <brian.d.foy@gmail.com>
How do I set the folder type in Windows Vista? <roybillstrom@sympatico.ca>
Re: How do I set the folder type in Windows Vista? <tlviewer@yahoo.com>
Re: How do I set the folder type in Windows Vista? <bik.mido@tiscalinet.it>
most active perl discussion forum <gregben_drop@yahoo.com>
Re: most active perl discussion forum <noreply@gunnar.cc>
Re: most active perl discussion forum <kkeller-usenet@wombat.san-francisco.ca.us>
new CPAN modules on Tue May 29 2007 (Randal Schwartz)
Re: The Concepts and Confusions of Prefix, Infix, Postf <jon@ffconsultancy.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Tue, 29 May 2007 06:09:02 GMT
From: Ville Oikarinen <ville@oikarinen.org>
Subject: 3D libraries (was The Concepts and Confusions of Prefix, Infix, Postfix and Fully Functional Notations)
Message-Id: <Pine.LNX.4.56L0.0705290853090.15650@localhost>
On Tue, 29 May 2007, Jon Harrop wrote:
> Anyway, are there any libraries to do hardware accelerated vector graphics
> in Perl, Python, Lisp, Java or any functional language (except OCaml and F#
> and excluding WPF and Silverlight)?
I believe there are OpenGL bindings for quite many languages, here are two
for java:
https://jogl.dev.java.net/
http://www.lwjgl.org/
- Ville Oikarinen
------------------------------
Date: Tue, 29 May 2007 00:01:17 -0700
From: Joe Smith <joe@inwap.com>
Subject: Re: can perl modules be used by various versions of perl?
Message-Id: <QJ6dnVGzc98jUsbbnZ2dnUVZ_qKqnZ2d@comcast.com>
garey wrote:
> So my question is 'what is the relation between a PERL module and
> the PERL it was compiled with?'. Is there a wide range of PERL
> versions a particular module will work with? or is the PERL module
> limited to working only with the PERL in whose library it is found?
For the most part, newer versions of Perl are upward-compatible - the
new version runs the old code just fine. Possible exceptions are binary modules.
When a new major version comes out (such as going from 5.6.x to 5.8.x),
modules written in C (or other language that creates a *.so file)
might not work until re-compiled for the new version.
Take a look at the output from
find /usr/lib/perl5 -name '*.so' -print
to see if any of the modules you're currently using fit into that category.
-Joe
------------------------------
Date: Mon, 28 May 2007 23:45:24 -0700
From: Joe Smith <joe@inwap.com>
Subject: Re: cgi script causing perl loop????
Message-Id: <YfydnQQl5-GWUcbbnZ2dnUVZ_tWhnZ2d@comcast.com>
mmccaws2 wrote:
> I guess the real question is how do I determine the run away process
You mean you've never heard of 'top' ?
And you've never done anything like 'ps -ef | sort +6 | tail -20' ?
------------------------------
Date: Mon, 28 May 2007 16:17:56 -0500
From: brian d foy <brian.d.foy@gmail.com>
Subject: Re: FAQ 4.46 How do I handle linked lists?
Message-Id: <280520071617567158%brian.d.foy@gmail.com>
In article <f3akpg$ac3$1@reader2.panix.com>, David Combs
<dkcombs@panix.com> wrote:
> In article <n7ng33lv7blnnu0alfv7lvsl28fgk8c7k3@4ax.com>,
> Michele Dondi <bik.mido@tiscalinet.it> wrote:
> >On 1 May 2007 15:29:59 -0700, Brad Baxter <baxter.brad@gmail.com>
> >wrote:
> >
> >>> >s/Both pop and shift are both/Both pop and shift are/;
> Simpler, more straightforward, clearer?:
>
> pop and shift are each ...
I don't think either version has an advantage in any of those
dimensions.
--
Posted via a free Usenet account from http://www.teranews.com
------------------------------
Date: 28 May 2007 09:42:50 -0700
From: Bozzz <roybillstrom@sympatico.ca>
Subject: How do I set the folder type in Windows Vista?
Message-Id: <1180370570.763722.313970@w5g2000hsg.googlegroups.com>
I know how to use Perl to change a folder's attributes, but can Perl
set the folder type, (All Items, Documents, Pictures and Videos, etc.)
found under a folder's Properties/Customize tab for a single folder or
a group of folders in Windows Vista? After extensive search, I think
the answer is no. Please prove me wrong.
------------------------------
Date: Mon, 28 May 2007 14:17:57 -0700
From: Mark Pryor <tlviewer@yahoo.com>
Subject: Re: How do I set the folder type in Windows Vista?
Message-Id: <pan.2007.05.28.21.17.57.299737@yahoo.com>
On Mon, 28 May 2007 09:42:50 -0700, Bozzz wrote:
> I know how to use Perl to change a folder's attributes, but can Perl
> set the folder type, (All Items, Documents, Pictures and Videos, etc.)
> found under a folder's Properties/Customize tab for a single folder or
> a group of folders in Windows Vista?
Anything that can be done via Windows builtin object libraries, can be
done in Perl.
Custom folder properties should be supported in WMI (don't ask me where)
and WMI can be accessed via Win32::OLE.
there is a sample WMI/Perl script here
http://www.techiegroups.com/showthread.php?t=48703
the Perl Core modules are endlessly powerful and are only limited by your
knowledge -- limited in this case by your familiarity with WMI.
WMI is off topic here.
cheers,
Mark
------------------------------
Date: Tue, 29 May 2007 00:06:47 +0200
From: Michele Dondi <bik.mido@tiscalinet.it>
Subject: Re: How do I set the folder type in Windows Vista?
Message-Id: <cikm53dbf7pvmlnbgi6kmh1oa15h9tlt1k@4ax.com>
On Mon, 28 May 2007 14:17:57 -0700, Mark Pryor <tlviewer@yahoo.com>
wrote:
>Custom folder properties should be supported in WMI (don't ask me where)
>and WMI can be accessed via Win32::OLE.
>
>there is a sample WMI/Perl script here
>http://www.techiegroups.com/showthread.php?t=48703
>
>the Perl Core modules are endlessly powerful and are only limited by your
>knowledge -- limited in this case by your familiarity with WMI.
But W::O is not a *core* module. Anyway I second your claim both with
and without "core".
Michele
--
{$_=pack'B8'x25,unpack'A8'x32,$a^=sub{pop^pop}->(map substr
(($a||=join'',map--$|x$_,(unpack'w',unpack'u','G^<R<Y]*YB='
.'KYU;*EVH[.FHF2W+#"\Z*5TI/ER<Z`S(G.DZZ9OX0Z')=~/./g)x2,$_,
256),7,249);s/[^\w,]/ /g;$ \=/^J/?$/:"\r";print,redo}#JAPH,
------------------------------
Date: Tue, 29 May 2007 01:49:16 GMT
From: "Greg Benjamin" <gregben_drop@yahoo.com>
Subject: most active perl discussion forum
Message-Id: <wEL6i.14463$Ut6.11742@newsread1.news.pas.earthlink.net>
This newsgroup only has a few posts per day.
where is the liveliest perl talk these days?
I'm a long-time (since about '92) perl user
and need some help here and there...
------------------------------
Date: Tue, 29 May 2007 04:51:14 +0200
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: most active perl discussion forum
Message-Id: <5c1iu0F2sh379U1@mid.individual.net>
Greg Benjamin wrote:
> This newsgroup only has a few posts per day.
While that may be true the past week, clpmisc is usually a high traffic
newsgroup.
> where is the liveliest perl talk these days?
It's here. Among other places.
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
------------------------------
Date: Mon, 28 May 2007 20:02:43 -0700
From: Keith Keller <kkeller-usenet@wombat.san-francisco.ca.us>
Subject: Re: most active perl discussion forum
Message-Id: <knhsi4xah.ln2@goaway.wombat.san-francisco.ca.us>
On 2007-05-29, Greg Benjamin <gregben_drop@yahoo.com> wrote:
> This newsgroup only has a few posts per day.
Over a weekend, and a US holiday weekend, what do you expect?
During the regular work week this newsgroup is quite active...
> where is the liveliest perl talk these days?
> I'm a long-time (since about '92) perl user
> and need some help here and there...
...but why do you want the ''liveliest'' Perl discussion anyway?
Your question, or a good answer, might get lost in the noise.
My suggestion is to simply post your questions here, and if
a large proportion go unanswered to your satisfaction, find
someplace else. Be sure to read the Posting Guidelines before
posting a Perl question.
--keith
--
kkeller-usenet@wombat.san-francisco.ca.us
(try just my userid to email me)
AOLSFAQ=http://www.therockgarden.ca/aolsfaq.txt
see X- headers for PGP signature information
------------------------------
Date: Tue, 29 May 2007 04:42:10 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Tue May 29 2007
Message-Id: <JIsD2A.2004@zorch.sf-bay.org>
The following modules have recently been added to or updated in the
Comprehensive Perl Archive Network (CPAN). You can install them using the
instructions in the 'perlmodinstall' page included with your Perl
distribution.
Alien-SeleniumRC-0.91
http://search.cpan.org/~lukec/Alien-SeleniumRC-0.91/
Packages the Selenium Remote Control server.
----
Apache2-AuthZLDAP-0.01
http://search.cpan.org/~doumbzh/Apache2-AuthZLDAP-0.01/
Authorization module based on LDAP filters or LDAP groups
----
Archive-Extract-0.20
http://search.cpan.org/~kane/Archive-Extract-0.20/
A generic archive extracting mechanism
----
Bundle-PDF-0.05
http://search.cpan.org/~ski/Bundle-PDF-0.05/
A bundle to install PDF modules and dependencies
----
CGI-Carp-DebugScreen-0.14
http://search.cpan.org/~ishigaki/CGI-Carp-DebugScreen-0.14/
provides a decent debug screen for Web applications
----
CGI-SSI-0.91
http://search.cpan.org/~james/CGI-SSI-0.91/
Use SSI from CGI scripts
----
CPANPLUS-0.79_03
http://search.cpan.org/~kane/CPANPLUS-0.79_03/
API & CLI access to the CPAN mirrors
----
Cache-Benchmark-0.011
http://search.cpan.org/~tobiwan/Cache-Benchmark-0.011/
Tests the quality and speed of a cache module to compare cachemodules and algorithms.
----
Cairo-1.041
http://search.cpan.org/~tsch/Cairo-1.041/
Perl interface to the cairo library
----
Captcha-reCAPTCHA-v0.5
http://search.cpan.org/~andya/Captcha-reCAPTCHA-v0.5/
A Perl implementation of the reCAPTCHA API
----
Catalyst-Engine-Wx-0.02
http://search.cpan.org/~eriam/Catalyst-Engine-Wx-0.02/
Catalyst wxPerl Engine
----
Config-Hierarchical-0.05
http://search.cpan.org/~nkh/Config-Hierarchical-0.05/
Hierarchical configuration container
----
Config-Hierarchical-0.06
http://search.cpan.org/~nkh/Config-Hierarchical-0.06/
Hierarchical configuration container
----
Config-Trivial-0.70
http://search.cpan.org/~atrickett/Config-Trivial-0.70/
Very simple tool for reading and writing very simple configuration files
----
Crossfire-0.99
http://search.cpan.org/~mlehmann/Crossfire-0.99/
Crossfire maphandling
----
DBIx-MyParse-0.83
http://search.cpan.org/~philips/DBIx-MyParse-0.83/
Perl API for MySQL's SQL Parser
----
DateTime-Calendar-Chinese-0.07
http://search.cpan.org/~dmaki/DateTime-Calendar-Chinese-0.07/
Traditional Chinese Calendar Implementation
----
DateTime-Event-Chinese-0.05
http://search.cpan.org/~dmaki/DateTime-Event-Chinese-0.05/
DateTime Extension for Calculating Important Chinese Dates
----
DateTime-Event-Lunar-0.06
http://search.cpan.org/~dmaki/DateTime-Event-Lunar-0.06/
Compute Lunar Events
----
DateTime-Event-SolarTerm-0.05
http://search.cpan.org/~dmaki/DateTime-Event-SolarTerm-0.05/
DateTime Extension to Calculate Solar Terms
----
DateTime-Util-Astro-0.10
http://search.cpan.org/~dmaki/DateTime-Util-Astro-0.10/
Utilities for Astronomical Calculations
----
DateTime-Util-Astro-0.11
http://search.cpan.org/~dmaki/DateTime-Util-Astro-0.11/
Utilities for Astronomical Calculations
----
Device-Jtag-USB-FTCJTAG-0.04
http://search.cpan.org/~tdeitrich/Device-Jtag-USB-FTCJTAG-0.04/
Perl extension for communicating with JTAG devices using the FTDI FTCJTAG driver.
----
Egg-Release-2.12
http://search.cpan.org/~lushe/Egg-Release-2.12/
Version of Egg WEB Application Framework.
----
ExtUtils-FakeConfig-0.10
http://search.cpan.org/~mbarbon/ExtUtils-FakeConfig-0.10/
overrides some configuration values
----
File-Path-1.99_02
http://search.cpan.org/~dland/File-Path-1.99_02/
create or remove directory trees
----
Finance-Amortization-0.5
http://search.cpan.org/~wagner/Finance-Amortization-0.5/
Simple Amortization Schedules
----
Games-Sudoku-Component-TkPlayer-0.02
http://search.cpan.org/~ishigaki/Games-Sudoku-Component-TkPlayer-0.02/
Let's play Sudoku
----
Geo-Coder-GoogleMaps-0.1
http://search.cpan.org/~dupuisarn/Geo-Coder-GoogleMaps-0.1/
Google Maps Geocoding API
----
Geography-Countries-1.41_04
http://search.cpan.org/~ashley/Geography-Countries-1.41_04/
2-letter, 3-letter, and numerical codes for countries.
----
Gungho-0.08003
http://search.cpan.org/~dmaki/Gungho-0.08003/
Yet Another High Performance Web Crawler Framework
----
HTML-GenToc-3.00
http://search.cpan.org/~rubykat/HTML-GenToc-3.00/
Generate a Table of Contents for HTML documents.
----
HTML-LinkList-0.1501
http://search.cpan.org/~rubykat/HTML-LinkList-0.1501/
Create a 'smart' list of HTML links.
----
HTML-StripScripts-0.90
http://search.cpan.org/~drtech/HTML-StripScripts-0.90/
strip scripting constructs out of HTML
----
HTML-StripScripts-0.99
http://search.cpan.org/~drtech/HTML-StripScripts-0.99/
strip scripting constructs out of HTML
----
HTML-StripScripts-Parser-0.90
http://search.cpan.org/~drtech/HTML-StripScripts-Parser-0.90/
XSS filter using HTML::Parser
----
HTML-StripScripts-Parser-0.99
http://search.cpan.org/~drtech/HTML-StripScripts-Parser-0.99/
XSS filter using HTML::Parser
----
IO-Handle-Record-0.06
http://search.cpan.org/~opi/IO-Handle-Record-0.06/
IO::Handle extension to pass perl data structures
----
Language-Befunge-2.08
http://search.cpan.org/~jquelin/Language-Befunge-2.08/
a Befunge-98 interpreter
----
Locale-Maketext-Lexicon-0.64
http://search.cpan.org/~audreyt/Locale-Maketext-Lexicon-0.64/
Use other catalog formats in Maketext
----
Log-Message-Simple-0.02
http://search.cpan.org/~kane/Log-Message-Simple-0.02/
----
Log-Report-0.02
http://search.cpan.org/~markov/Log-Report-0.02/
report a problem, pluggable handlers and language support
----
Log-Report-0.03
http://search.cpan.org/~markov/Log-Report-0.03/
report a problem, pluggable handlers and language support
----
Lyrics-Fetcher-0.4.0
http://search.cpan.org/~bigpresh/Lyrics-Fetcher-0.4.0/
Perl extension to manage fetchers of song lyrics.
----
Mango-0.01000_04
http://search.cpan.org/~claco/Mango-0.01000_04/
An ecommerce solution using Catalyst, Handel and DBIx::Class
----
Math-BigInt-Lite-0.12
http://search.cpan.org/~tels/Math-BigInt-Lite-0.12/
What BigInts are before they become big
----
Math-Symbolic-0.508
http://search.cpan.org/~smueller/Math-Symbolic-0.508/
Symbolic calculations
----
Module-Info-0.31
http://search.cpan.org/~mbarbon/Module-Info-0.31/
Information about Perl modules
----
Module-List-Pluggable-0.04
http://search.cpan.org/~doom/Module-List-Pluggable-0.04/
list or require sub-sets of modules
----
Nmap-Scanner-1.0
http://search.cpan.org/~maxschube/Nmap-Scanner-1.0/
Perform and manipulate nmap scans using perl
----
POD-Tested-0.02
http://search.cpan.org/~nkh/POD-Tested-0.02/
Test the code in your POD and generates POD.
----
POE-Component-Client-MPD-0.5.2
http://search.cpan.org/~jquelin/POE-Component-Client-MPD-0.5.2/
a full-blown mpd client library
----
POE-Component-Client-MPD-0.5.3
http://search.cpan.org/~jquelin/POE-Component-Client-MPD-0.5.3/
a full-blown mpd client library
----
POE-Component-Client-MPD-0.6.0
http://search.cpan.org/~jquelin/POE-Component-Client-MPD-0.6.0/
a full-blown mpd client library
----
Parse-QTEDI-0.12
http://search.cpan.org/~dongxu/Parse-QTEDI-0.12/
Parse QT/KDE preprocessed headers
----
SOAP-WSDL-1.21
http://search.cpan.org/~mkutter/SOAP-WSDL-1.21/
----
Sepia-0.74
http://search.cpan.org/~seano/Sepia-0.74/
Simple Emacs-Perl Interface
----
Sepia-0.75
http://search.cpan.org/~seano/Sepia-0.75/
Simple Emacs-Perl Interface
----
Template-Plugin-Dump-0.02
http://search.cpan.org/~ishigaki/Template-Plugin-Dump-0.02/
alternative dumper plugin with Data::Dump
----
Test-Cookbook-0.01
http://search.cpan.org/~nkh/Test-Cookbook-0.01/
Write your tests as cookbooks
----
Test-UseAllModules-0.08
http://search.cpan.org/~ishigaki/Test-UseAllModules-0.08/
do use_ok() for all modules MANIFESTed
----
Test-WWW-Selenium-Catalyst-0.01
http://search.cpan.org/~jrockway/Test-WWW-Selenium-Catalyst-0.01/
Test your Catalyst application with Selenium
----
Text-Cloze-v0.0.1
http://search.cpan.org/~unobe/Text-Cloze-v0.0.1/
Perform Cloze procedure on some text
----
Text-Starfish-1.05
http://search.cpan.org/~vlado/Text-Starfish-1.05/
and starfish - A Perl-based System for Text-Embedded Programming and Preprocessing
----
Text-Starfish-1.06
http://search.cpan.org/~vlado/Text-Starfish-1.06/
and starfish - A Perl-based System for Text-Embedded Programming and Preprocessing
----
Tie-Slurp-0.03
http://search.cpan.org/~ishigaki/Tie-Slurp-0.03/
tie a scalar to a named file
----
Tie-Slurp-Cached-0.03
http://search.cpan.org/~ishigaki/Tie-Slurp-Cached-0.03/
slurps with locks a la perltie
----
Time-DayOfWeek-1.4.75R5ulZ
http://search.cpan.org/~pip/Time-DayOfWeek-1.4.75R5ulZ/
calculate which Day-of-Week a date is
----
Time-HiRes-Value-0.04
http://search.cpan.org/~pevans/Time-HiRes-Value-0.04/
a class representing a time value or interval in exact microseconds
----
WWW-CheckSite-0.019_51
http://search.cpan.org/~abeltje/WWW-CheckSite-0.019_51/
OO interface to an iterator that checks a website
----
WWW-Facebook-API-v0.0.9
http://search.cpan.org/~unobe/WWW-Facebook-API-v0.0.9/
Facebook API implementation
----
WWW-Facebook-API-v0.1.0
http://search.cpan.org/~unobe/WWW-Facebook-API-v0.1.0/
Facebook API implementation
----
WWW-Facebook-FQL-0.01
http://search.cpan.org/~seano/WWW-Facebook-FQL-0.01/
Simple interface to Facebook's FQL query language
----
WebService-MusicBrainz-0.10
http://search.cpan.org/~bfaist/WebService-MusicBrainz-0.10/
----
Win32-EventLog-Carp-1.42
http://search.cpan.org/~dland/Win32-EventLog-Carp-1.42/
for carping in the Windows NT Event Log
----
Win32-IEFavorites-0.05
http://search.cpan.org/~ishigaki/Win32-IEFavorites-0.05/
handles Internet Explorer's Favorites
----
Win32-InternetShortcut-0.02
http://search.cpan.org/~ishigaki/Win32-InternetShortcut-0.02/
handles Internet Shortcut (IE's Favorite)
----
Win32-PowerPoint-0.05
http://search.cpan.org/~ishigaki/Win32-PowerPoint-0.05/
helps to convert texts to PP slides
----
Win32-Process-List-0.09
http://search.cpan.org/~rpagitsch/Win32-Process-List-0.09/
Perl extension to get all processes and thier PID on a Win32 system
----
YAML-LibYAML-0.09
http://search.cpan.org/~ingy/YAML-LibYAML-0.09/
LibYAML bindings for Perl
----
YAML-LibYAML-0.10
http://search.cpan.org/~ingy/YAML-LibYAML-0.10/
LibYAML bindings for Perl
----
YAML-Tests-0.01
http://search.cpan.org/~ingy/YAML-Tests-0.01/
Common Test Suite for Perl YAML Implementations
----
YAML-Tests-0.02
http://search.cpan.org/~ingy/YAML-Tests-0.02/
Common Test Suite for Perl YAML Implementations
----
YAML-Tests-0.03
http://search.cpan.org/~ingy/YAML-Tests-0.03/
Common Test Suite for Perl YAML Implementations
If you're an author of one of these modules, please submit a detailed
announcement to comp.lang.perl.announce, and we'll pass it along.
This message was generated by a Perl program described in my Linux
Magazine column, which can be found on-line (along with more than
200 other freely available past column articles) at
http://www.stonehenge.com/merlyn/LinuxMag/col82.html
print "Just another Perl hacker," # the original
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!
------------------------------
Date: Tue, 29 May 2007 06:16:19 +0100
From: Jon Harrop <jon@ffconsultancy.com>
Subject: Re: The Concepts and Confusions of Prefix, Infix, Postfix and Fully Functional Notations
Message-Id: <465bb872$0$8729$ed2619ec@ptn-nntp-reader02.plus.net>
Markus E Leypold wrote:
> The answer to your question is very simple: Xah Lee is a troll.
In this context, I believe he is marketing/advertising himself as a
consultant and some kind of vampiric man-whore according to this page:
http://xahlee.org/PageTwo_dir/Personal_dir/xah.html
"... I'm technically American. Love me and I can make you American."
Xah is perhaps the world's first person to claim to be both a Lisp
programmer and "strong at siring". :-)
Anyway, are there any libraries to do hardware accelerated vector graphics
in Perl, Python, Lisp, Java or any functional language (except OCaml and F#
and excluding WPF and Silverlight)?
--
Dr Jon D Harrop, Flying Frog Consultancy
The F#.NET Journal
http://www.ffconsultancy.com/products/fsharp_journal/?u7
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>
Administrivia:
#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc. For subscription or unsubscription requests, send
#the single line:
#
# subscribe perl-users
#or:
# unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.
NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.
#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V11 Issue 464
**************************************