[30438] in Perl-Users-Digest

home help back first fref pref prev next nref lref last post

Perl-Users Digest, Issue: 1681 Volume: 11

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Jun 30 09:09:49 2008

Date: Mon, 30 Jun 2008 06:09:11 -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           Mon, 30 Jun 2008     Volume: 11 Number: 1681

Today's topics:
        editing smb.conf (INI files) <tch@nospam.syneticon.net>
    Re: editing smb.conf (INI files) <joe@inwap.com>
        looping issue <akhilshri@gmail.com>
    Re: looping issue <ramesh.thangamani@gmail.com>
    Re: looping issue <noreply@gunnar.cc>
    Re: looping issue <tadmc@seesig.invalid>
    Re: looping issue <jurgenex@hotmail.com>
        new CPAN modules on Mon Jun 30 2008 (Randal Schwartz)
    Re: The Importance of Terminology's Quality (Robert Maas, http://tinyurl.com/uh3t)
    Re: The Importance of Terminology's Quality (Robert Maas, http://tinyurl.com/uh3t)
    Re: The Importance of Terminology's Quality (Robert Maas, http://tinyurl.com/uh3t)
    Re: The Importance of Terminology's Quality <lew@lewscanon.com>
        Thread or threads. <nadavh@gmail.com>
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

----------------------------------------------------------------------

Date: Mon, 30 Jun 2008 11:45:29 +0200
From: Tomasz Chmielewski <tch@nospam.syneticon.net>
Subject: editing smb.conf (INI files)
Message-Id: <g4a9vq$j8c$1@online.de>

Anyone using Samba here? Or knows how an INI-file structure looks like?


What would you use to parse smb.conf or INI-files in a somehow 
automated/scripted manner?


Let's say this is a part of smb.conf:

[homes]
  valid users = user1, user2

[data]
  valid users = user1, user2


And we want to add "user3" to "valid users" in [homes] in a script.


I've searched a bit and found some INI-file parsers, but they are 
basically for extracting values, not editing/changing/adding them.

Are there any perl modules which help editing smb.conf or INI-files in 
an automated/scripted way?


-- 
Tomasz Chmielewski
http://wpkg.org


------------------------------

Date: Mon, 30 Jun 2008 03:38:20 -0700
From: Joe Smith <joe@inwap.com>
Subject: Re: editing smb.conf (INI files)
Message-Id: <h9udnbBdQa8EKvXVnZ2dnUVZ_rmdnZ2d@comcast.com>

Tomasz Chmielewski wrote:
> What would you use to parse smb.conf or INI-files in a somehow 
> automated/scripted manner?

Config::Tiny - Read/Write .ini style files with as little code as possible

# Changing data
$Config->{newsection} = { this => 'that' }; # Add a section
$Config->{section}->{Foo} = 'Not Bar!';     # Change a value
delete $Config->{_};                        # Delete a value or section
# Save a config
$Config->write( 'file.conf' );


------------------------------

Date: Mon, 30 Jun 2008 00:45:29 -0700 (PDT)
From: dakin999 <akhilshri@gmail.com>
Subject: looping issue
Message-Id: <c5829fad-0bff-467d-b9cd-963e039f2b54@s33g2000pri.googlegroups.com>

Hi, I have following code:

   foreach my $row (@$array_ref) {
           my ( $usr, $usr_det, $pwd_val) = @$row;
      #print "\tuser id :$usr\n";
      #print "\tcard no :$usr_det\n";
      #print "\tpasswd :$pwd_val\n";
      open (FILE, "<file_name") || die "Could not open the file: $!";
      while (<FILE>) {
         chomp;
         (my $nusr_id) = split();  #read into a variable
          --
          --
          --
         }
      }

 The problem is in the looping of input <FILE> that I need to read for
each $row. Basically there can be more than 1 $row values and I need
to pick a new line from <FILE> for each $row entry.

Any suggestions for doing this??


------------------------------

Date: Mon, 30 Jun 2008 02:07:26 -0700 (PDT)
From: rthangam <ramesh.thangamani@gmail.com>
Subject: Re: looping issue
Message-Id: <477893db-95f3-4851-80bf-62b0f45198a3@q24g2000prf.googlegroups.com>

On Jun 30, 12:45 pm, dakin999 <akhils...@gmail.com> wrote:
> Hi, I have following code:
>
>    foreach my $row (@$array_ref) {
>            my ( $usr, $usr_det, $pwd_val) = @$row;
>       #print "\tuser id :$usr\n";
>       #print "\tcard no :$usr_det\n";
>       #print "\tpasswd :$pwd_val\n";
>       open (FILE, "<file_name") || die "Could not open the file: $!";
>       while (<FILE>) {
>          chomp;
>          (my $nusr_id) = split();  #read into a variable
>           --
>           --
>           --
>          }
>       }
>
>  The problem is in the looping of input <FILE> that I need to read for
> each $row. Basically there can be more than 1 $row values and I need
> to pick a new line from <FILE> for each $row entry.
>
> Any suggestions for doing this??

You can do it this way. Open the file before the for ... loop and use
readline() function which accepts the filehandle as parameter to get a
line at a time. For eg.,

open(FH,"test.txt") or die $!;
my $line = readline(FH);
print $line;

$line = readline(FH);
print $line;

You can also try some other modules like FileHandle which is object
oriented and also has methods like getline(), getlines() etc.


------------------------------

Date: Mon, 30 Jun 2008 10:46:57 +0200
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: looping issue
Message-Id: <6crkoeF3hl6qlU1@mid.individual.net>

dakin999 wrote:
> Hi, I have following code:
> 
>    foreach my $row (@$array_ref) {
>            my ( $usr, $usr_det, $pwd_val) = @$row;
>       #print "\tuser id :$usr\n";
>       #print "\tcard no :$usr_det\n";
>       #print "\tpasswd :$pwd_val\n";
>       open (FILE, "<file_name") || die "Could not open the file: $!";
>       while (<FILE>) {
>          chomp;
>          (my $nusr_id) = split();  #read into a variable
>           --
>           --
>           --
>          }
>       }
> 
>  The problem is in the looping of input <FILE> that I need to read for
> each $row. Basically there can be more than 1 $row values and I need
> to pick a new line from <FILE> for each $row entry.
> 
> Any suggestions for doing this??

Please clarify what "this" means.

Possibly you mean that you want to look up a value in "file_name" for 
each $row. That would indicate that you ought to store the file data in 
a hash variable.

-- 
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl


------------------------------

Date: Mon, 30 Jun 2008 06:49:49 -0500
From: Tad J McClellan <tadmc@seesig.invalid>
Subject: Re: looping issue
Message-Id: <slrng6hi2t.rp1.tadmc@tadmc30.sbcglobal.net>

rthangam <ramesh.thangamani@gmail.com> wrote:

> my $line = readline(FH);


Or use the more common equivalent:

   my $line = <FH>;


-- 
Tad McClellan
email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"


------------------------------

Date: Mon, 30 Jun 2008 11:38:39 GMT
From: Jürgen Exner <jurgenex@hotmail.com>
Subject: Re: looping issue
Message-Id: <u0hh64p4sbusvn5kjj1clf7kkqmhmjjovc@4ax.com>

dakin999 <akhilshri@gmail.com> wrote:
>   foreach my $row (@$array_ref) {
[...]
>      open (FILE, "<file_name") || die "Could not open the file: $!";
>      while (<FILE>) {
>         chomp;
>         (my $nusr_id) = split();  #read into a variable
>          --
>          --
>          --
>         }
>      }

This code reads and loops through all of <FILE> for each element of
@$array_ref.

> The problem is in the looping of input <FILE> that I need to read for
>each $row. Basically there can be more than 1 $row values and I need
>to pick a new line from <FILE> for each $row entry.

Are you saying that is not what you want but instead you want to loop
through @$array_ref and <FILE> in sync, i.e. for each element of
@$array_ref read exactly one line of <FILE>?
If so, then just do it:

   open (FILE, "<file_name") || die "Could not open the file: $!";
   foreach my $row (@$array_ref) {
[...]
   	$_ = <FILE>;
   	chomp;
   	(my $nusr_id) = split();  #read into a variable
   	    --
 	    --
 	    --
   }

jue


------------------------------

Date: Mon, 30 Jun 2008 04:42:22 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Mon Jun 30 2008
Message-Id: <K39EEM.F25@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-wxWidgets-0.37
http://search.cpan.org/~mbarbon/Alien-wxWidgets-0.37/
building, finding and using wxWidgets binaries 
----
Apache2-DirBasedHandler-0.03
http://search.cpan.org/~aprime/Apache2-DirBasedHandler-0.03/
Directory based Location Handler helper 
----
Apache2-DirBasedHandler-TT-0.03
http://search.cpan.org/~aprime/Apache2-DirBasedHandler-TT-0.03/
TT hooked into DirBasedHandler 
----
Array-Compare-1.16
http://search.cpan.org/~davecross/Array-Compare-1.16/
Perl extension for comparing arrays. 
----
C-DynaLib-0.57
http://search.cpan.org/~rurban/C-DynaLib-0.57/
Dynamic Perl interface to C compiled code. 
----
C-DynaLib-0.58
http://search.cpan.org/~rurban/C-DynaLib-0.58/
Dynamic Perl interface to C compiled code. 
----
CGI-Application-Bouquet-Rose-1.01
http://search.cpan.org/~rsavage/CGI-Application-Bouquet-Rose-1.01/
Generate a set of CGI::Application-based classes 
----
Catalyst-Controller-DBIC-API-1.000001
http://search.cpan.org/~lsaunders/Catalyst-Controller-DBIC-API-1.000001/
----
Crypt-AppleTwoFish-0.05
http://search.cpan.org/~billh/Crypt-AppleTwoFish-0.05/
two Apple iTMS/iTunes key descrambling algorithms 
----
DBIx-Class-LibXMLdoc-0.03_a
http://search.cpan.org/~ashley/DBIx-Class-LibXMLdoc-0.03_a/
Create an adjunct "Doc" accessor of a column's data which is automatically parsed into a LibXML documentElement (beta-software, dev release). 
----
Foorum-0.1.9
http://search.cpan.org/~fayland/Foorum-0.1.9/
Foorum is a forum script built in Catalyst. 
----
HTML-Encoding-0.58
http://search.cpan.org/~bjoern/HTML-Encoding-0.58/
Determine the encoding of HTML/XML/XHTML documents 
----
HTML-Encoding-0.59
http://search.cpan.org/~bjoern/HTML-Encoding-0.59/
Determine the encoding of HTML/XML/XHTML documents 
----
HTML-FormWidgets-0.1.63
http://search.cpan.org/~pjfl/HTML-FormWidgets-0.1.63/
Create HTML form markup 
----
HTML-WidgetValidator-Widget-PixivEmbedFeature-0.1.0
http://search.cpan.org/~pmint/HTML-WidgetValidator-Widget-PixivEmbedFeature-0.1.0/
Perl extension for validate "pixiv Embed" 
----
HTTP-Request-FromLog-0.00002
http://search.cpan.org/~miki/HTTP-Request-FromLog-0.00002/
convert to HTTP::Request object from Apache's access_log record. 
----
I18N-Charset-1.391
http://search.cpan.org/~mthurn/I18N-Charset-1.391/
IANA Character Set Registry names and Unicode::MapUTF8 (et al.) conversion scheme names 
----
IPC-Cmd-0.41_02
http://search.cpan.org/~kane/IPC-Cmd-0.41_02/
finding and running system commands made easy 
----
LEOCHARRE-Dev-1.07
http://search.cpan.org/~leocharre/LEOCHARRE-Dev-1.07/
----
Language-Befunge-Storage-Generic-Vec-XS-0.02
http://search.cpan.org/~infinoid/Language-Befunge-Storage-Generic-Vec-XS-0.02/
Language::Befunge::Storage::Generic::Vec rewritten for speed 
----
Log-Dispatch-File-Stamped-0.06
http://search.cpan.org/~cholet/Log-Dispatch-File-Stamped-0.06/
Logging to date/time stamped files 
----
MediaWiki-API-0.05
http://search.cpan.org/~exobuzz/MediaWiki-API-0.05/
Provides a Perl interface to the MediaWiki API (http://www.mediawiki.org/wiki/API) 
----
MediaWiki-API-0.06
http://search.cpan.org/~exobuzz/MediaWiki-API-0.06/
Provides a Perl interface to the MediaWiki API (http://www.mediawiki.org/wiki/API) 
----
MediaWiki-API-0.07
http://search.cpan.org/~exobuzz/MediaWiki-API-0.07/
Provides a Perl interface to the MediaWiki API (http://www.mediawiki.org/wiki/API) 
----
MediaWiki-API-0.08
http://search.cpan.org/~exobuzz/MediaWiki-API-0.08/
Provides a Perl interface to the MediaWiki API (http://www.mediawiki.org/wiki/API) 
----
Module-Install-POE-Test-Loops-0.02
http://search.cpan.org/~martijn/Module-Install-POE-Test-Loops-0.02/
Install tests for POE::Loops 
----
MojoMojo-0.999016
http://search.cpan.org/~mramberg/MojoMojo-0.999016/
A Catalyst & DBIx::Class powered Wiki. 
----
MooseX-AttributeHelpers-0.12
http://search.cpan.org/~sartak/MooseX-AttributeHelpers-0.12/
Extend your attribute interfaces 
----
Net-Flickr-Geo-0.7
http://search.cpan.org/~ascope/Net-Flickr-Geo-0.7/
tools for working with geotagged Flickr photos 
----
OpenOffice-UNO-0.05
http://search.cpan.org/~mbarbon/OpenOffice-UNO-0.05/
interface to OpenOffice's UNO runtime 
----
PAR-Repository-Web-0.01
http://search.cpan.org/~smueller/PAR-Repository-Web-0.01/
A simple web viewer for PAR::Repository 
----
POE-Loop-Glib-0.0035
http://search.cpan.org/~martijn/POE-Loop-Glib-0.0035/
a bridge that supports Glib's event loop from POE 
----
POE-Test-Loops-1.001
http://search.cpan.org/~rcaputo/POE-Test-Loops-1.001/
Reusable tests for POE::Loop authors 
----
Parse-BBCode-0.06
http://search.cpan.org/~tinita/Parse-BBCode-0.06/
Module to turn BBCode into HTML or plain text 
----
Portable-0.07
http://search.cpan.org/~adamk/Portable-0.07/
Perl on a Stick (EXPERIMENTAL) 
----
SGML-Parser-OpenSP-0.992
http://search.cpan.org/~bjoern/SGML-Parser-OpenSP-0.992/
Parse SGML documents using OpenSP 
----
SGML-Parser-OpenSP-0.993
http://search.cpan.org/~bjoern/SGML-Parser-OpenSP-0.993/
Parse SGML documents using OpenSP 
----
SGML-Parser-OpenSP-0.994
http://search.cpan.org/~bjoern/SGML-Parser-OpenSP-0.994/
Parse SGML documents using OpenSP 
----
Test-MockTime-0.08
http://search.cpan.org/~ddick/Test-MockTime-0.08/
Replaces actual time with simulated time 
----
Test-MockTime-0.09
http://search.cpan.org/~ddick/Test-MockTime-0.09/
Replaces actual time with simulated time 
----
Text-Editor-Easy-0.31
http://search.cpan.org/~grommier/Text-Editor-Easy-0.31/
A perl module to edit perl code with syntax highlighting and more. 
----
Tk-TextVi-0.013
http://search.cpan.org/~jstrom/Tk-TextVi-0.013/
Tk::Text widget with Vi-like commands 
----
Win32-EnvProcess-0.06
http://search.cpan.org/~clive/Win32-EnvProcess-0.06/
Perl extension to set or get environment variables from other processes 
----
Win32-MultiLanguage-0.70
http://search.cpan.org/~bjoern/Win32-MultiLanguage-0.70/
Interface to IMultiLanguage I18N routines 
----
Win32-MultiLanguage-0.71
http://search.cpan.org/~bjoern/Win32-MultiLanguage-0.71/
Interface to IMultiLanguage I18N routines 
----
Wx-0.84
http://search.cpan.org/~mbarbon/Wx-0.84/
interface to the wxWidgets cross-platform GUI toolkit 
----
Wx-Demo-0.10
http://search.cpan.org/~mbarbon/Wx-Demo-0.10/
the wxPerl demo 
----
Wx-GLCanvas-0.07
http://search.cpan.org/~mbarbon/Wx-GLCanvas-0.07/
interface to wxWidgets' OpenGL canvas 
----
XML-Pastor-0.52
http://search.cpan.org/~aulusoy/XML-Pastor-0.52/
Generate Perl classes with XML bindings starting from a W3C XSD Schema 
----
XML-RSS-Tools-0.30
http://search.cpan.org/~atrickett/XML-RSS-Tools-0.30/
A tool-kit providing a wrapper around a HTTP client, a RSS parser, and a XSLT engine. 
----
autodie-1.10_07
http://search.cpan.org/~pjf/autodie-1.10_07/
Replace functions with ones that succeed or die with lexical scope 
----
eBay-API-Docs-0.04
http://search.cpan.org/~tkeefer/eBay-API-Docs-0.04/
----
eBay-API-Docs-0.05
http://search.cpan.org/~tkeefer/eBay-API-Docs-0.05/
----
iTunes-Sid-0.03
http://search.cpan.org/~billh/iTunes-Sid-0.03/
----
iTunes-Sid-0.031
http://search.cpan.org/~billh/iTunes-Sid-0.031/
----
iTunes-Sid-0.032
http://search.cpan.org/~billh/iTunes-Sid-0.032/
----
iTunes-Sid-0.033
http://search.cpan.org/~billh/iTunes-Sid-0.033/
Apple iTunes SC Info common user database file interface 
----
lib-0.59
http://search.cpan.org/~smueller/lib-0.59/
manipulate @INC at compile time 


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/>
Smalltalk/Perl/Unix consulting, Technical writing, Comedy, etc. etc.
See http://methodsandmessages.vox.com/ for Smalltalk and Seaside discussion


------------------------------

Date: Sun, 29 Jun 2008 23:44:02 -0700
From: jaycx2.3.calrobert@spamgourmet.com.remove (Robert Maas, http://tinyurl.com/uh3t)
Subject: Re: The Importance of Terminology's Quality
Message-Id: <rem-2008jun29-003@yahoo.com>

Why this response is so belated:
  <http://groups.google.com/group/misc.misc/msg/cea714440e591dd2>
= <news:rem-2008jun25-003@yahoo.com>
> Date: Thu, 05 Jun 2008 11:37:48 +0100
> From: Jon Harrop <j...@ffconsultancy.com>
> We all know that Java, Perl, Python and Lisp suck.

Well at least you're three-quarters correct there.
But Lisp doesn't suck. That's where you're one quarter wrong.

> They don't even have pattern matching over algebraic sum types if
> you can imagine that.

I'm still waiting for you to precisely define what you mean by
"pattern matching" in this context. All I've heard from you so-far
are crickets. If you've set up a Web page with your personal
definition of "pattern matching" as you've been using that term
here, and you've posted its URL in a newsgroup article I didn't
happen to see, please post just the URL again here so that I might
finally see it. Or e-mail me the URL.

-
Nobody in their right mind likes spammers, nor their automated assistants.
To open an account here, you must demonstrate you're not one of them.
Please spend a few seconds to try to read the text-picture in this box:

/----------------------------------------------------------------------------\
| ,-.-.                                               |                      |
| | | |,   .    ,---.,---.,---.    ,---.,---.,---.,---|,---.                 |
| | | ||   |    `---.|   ||   |    |   ||---'|---'|   |`---.                 |
| ` ' '`---|    `---'`---'`   '    `   '`---'`---'`---'`---'                 |
|      `---'                                                                 |
| |         |             o              |                 |                 |
| |---.,---.|    ,---.    .,---.    ,---.|    ,---.,---.   |---.,---.,---.   |
| |   ||---'|    |   |    ||   |    ,---||    |   ||---'---|   ||    ,---|   |
| `   '`---'`---'|---'    ``   '    `---^`---'`---|`---'   `---'`    `---^ | |
|                |                            `---'                       '  |
|           |                           |             |                      |
| ,---.,---.|---     . . .,---.,---.,---|,---.,---.   |---.,---.,---.        |
| |   ||   ||        | | ||   ||   ||   ||---'|    ---|   ||    ,---|        |
| `   '`---'`---'    `-'-'`---'`   '`---'`---'`       `---'`    `---^o       |
\--------(Rendered by means of <http://www.schnoggo.com/figlet.html>)--------/
     (You don't need JavaScript or images to see that ASCII-text image!!
      You just need to view this in a fixed-pitch font such as Monaco.)

Then enter your best guess of the text (40-50 chars) into this TextField:
          +--------------------------------------------------+
          |                                                  |
          +--------------------------------------------------+


------------------------------

Date: Sun, 30 Jun 2008 00:03:30 -0700
From: jaycx2.3.calrobert@spamgourmet.com.remove (Robert Maas, http://tinyurl.com/uh3t)
Subject: Re: The Importance of Terminology's Quality
Message-Id: <rem-2008jun30-001@yahoo.com>

Why this response is so belated:
  <http://groups.google.com/group/misc.misc/msg/cea714440e591dd2>
= <news:rem-2008jun25-003@yahoo.com>
> Date: Thu, 5 Jun 2008 06:17:01 -0700 (PDT)
> From: jon.harrop.ms.sh...@gmail.com
> P.S. Please don't look at my profile (at google groups), thanks!

Please don't look at the orange and green checkered elephant
playing a harp off-key while sitting on a toilet and passing wind.


------------------------------

Date: Sun, 30 Jun 2008 00:07:03 -0700
From: jaycx2.3.calrobert@spamgourmet.com.remove (Robert Maas, http://tinyurl.com/uh3t)
Subject: Re: The Importance of Terminology's Quality
Message-Id: <rem-2008jun30-002@yahoo.com>

Why this response is so belated:
  <http://groups.google.com/group/misc.misc/msg/cea714440e591dd2>
= <news:rem-2008jun25-003@yahoo.com>
> Date: Tue, 24 Jun 2008 18:42:15 -0400
> From: John W Kennedy <jwke...@attglobal.net>
> ... the "thunks" were necessary at the machine-language level to
> /implement/ ALGOL 60, but they could not be expressed /in/ ALGOL.

Ah, thanks for the clarification. Is that info in the appropriate
WikiPedia page? If not, maybe you would edit it in?


------------------------------

Date: Mon, 30 Jun 2008 07:51:21 -0400
From: Lew <lew@lewscanon.com>
Subject: Re: The Importance of Terminology's Quality
Message-Id: <yP-dnVoNZfgnVfXVnZ2dnUVZ_sidnZ2d@comcast.com>

Robert Maas wrote:
> /----------------------------------------------------------------------------\
> | ,-.-.                                               |                      |
> | | | |,   .    ,---.,---.,---.    ,---.,---.,---.,---|,---.                 |
> | | | ||   |    `---.|   ||   |    |   ||---'|---'|   |`---.                 |
> | ` ' '`---|    `---'`---'`   '    `   '`---'`---'`---'`---'                 |
> |      `---'                                                                 |
> | |         |             o              |                 |                 |
> | |---.,---.|    ,---.    .,---.    ,---.|    ,---.,---.   |---.,---.,---.   |
> | |   ||---'|    |   |    ||   |    ,---||    |   ||---'---|   ||    ,---|   |
> | `   '`---'`---'|---'    ``   '    `---^`---'`---|`---'   `---'`    `---^ | |
> |                |                            `---'                       '  |
> |           |                           |             |                      |
> | ,---.,---.|---     . . .,---.,---.,---|,---.,---.   |---.,---.,---.        |
> | |   ||   ||        | | ||   ||   ||   ||---'|    ---|   ||    ,---|        |
> | `   '`---'`---'    `-'-'`---'`   '`---'`---'`       `---'`    `---^o       |
> \--------(Rendered by means of <http://www.sc*****************.html>)--------/
>      (You don't need JavaScript or images to see that ASCII-text image!!
>       You just need to view this in a fixed-pitch font such as Monaco.)
> 
> Then enter your best guess of the text (40-50 chars) into this TextField:
>           +--------------------------------------------------+
>           | Your son totally needs a Wonder-Bra(r), double-D |
>           +--------------------------------------------------+

-- 
Lew


------------------------------

Date: Mon, 30 Jun 2008 05:24:19 -0700 (PDT)
From: nadav <nadavh@gmail.com>
Subject: Thread or threads.
Message-Id: <dc87348e-d914-4f07-a327-83f20d950527@f36g2000hsa.googlegroups.com>

thinking of writing a perl script with concurrent abilities.
which Module is better 'Thread' or 'threads' ?

thx.


------------------------------

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 1681
***************************************


home help back first fref pref prev next nref lref last post