[29355] in Perl-Users-Digest
Perl-Users Digest, Issue: 599 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Fri Jun 29 03:10:25 2007
Date: Fri, 29 Jun 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 Fri, 29 Jun 2007 Volume: 11 Number: 599
Today's topics:
Re: "Convert" perl command line to simple script <tadmc@seesig.invalid>
Re: "Convert" perl command line to simple script <baxter.brad@gmail.com>
Adding a line in a file inside many directories <vedpsingh@gmail.com>
Re: Adding a line in a file inside many directories <noreply@gunnar.cc>
Re: Adding a line in a file inside many directories <noreply@gunnar.cc>
Re: DBIx::Simple, fails with no error (not CGI this tim <tadmc@seesig.invalid>
Re: DBIx::Simple, fails with no error (not CGI this tim <mritty@gmail.com>
Re: FAQ 1.6 What is perl6? <art@xiotek.com>
Kicking off multiple processes at once instead of waiti <shmh@bigpond.net.au>
Re: Kicking off multiple processes at once instead of w QoS@domain.invalid
new CPAN modules on Fri Jun 29 2007 (Randal Schwartz)
Re: Oh great gurus of the list, I need help with a regu <art@xiotek.com>
Re: Perl Standard for Remote Objects. <ilias@lazaridis.com>
Re: The Modernization of Emacs: terminology buffer and <timr@probo.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Thu, 28 Jun 2007 21:33:28 -0500
From: Tad McClellan <tadmc@seesig.invalid>
Subject: Re: "Convert" perl command line to simple script
Message-Id: <slrnf88rro.ppj.tadmc@tadmc30.sbcglobal.net>
chanio <Alberto.Schiano@gmail.com> wrote:
> You could learn a lot from this simetry.
Symmetry is overrated. Overrated is symmetry. -- Larry Wall
in
http://groups.google.com/group/comp.lang.perl.moderated/msg/75c72c04ae6eff06?hl=en
:-)
--
Tad McClellan
email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
------------------------------
Date: Fri, 29 Jun 2007 02:35:37 -0000
From: Brad Baxter <baxter.brad@gmail.com>
Subject: Re: "Convert" perl command line to simple script
Message-Id: <1183084537.572766.194350@n2g2000hse.googlegroups.com>
On Jun 28, 11:44 am, bluez3...@gmail.com wrote:
> I've looked over the Perl FAQs, this list, and done a good bit of
> googling, but haven't found an answer to this...
>
> I have some commands that I issue via the command line that I want to
> convert to scripts, but as a complete Perl newb, I haven't a clue how
> to go about it. I was hoping that there was some simple way, like
> saving the text as a .pl and then calling perl <script>.pl, but
> obviously it doesn't work quite that way.
>
> Here's an example of a script that I'm running to clean up html pages
> that I'm generating automatically:
>
> perl -pi -e 's/..\index/index/g' *.html
>
> Is there some "standard" and simple way to get this into script form,
> or do I need to write a complete script that handles looping through
> the files, does the regex handling and all that?
>
> Any help greatly appreciated.
There's a really simple way.
% ls -la perlgo
-rwxrwxr-x ... perlgo
% cat perlgo
perl -ple'}{$_=$.' *.html
% perlgo
107410
% wc -l *html
[...]
107402 total
If you feel that you need to make them into "complete" scripts, then
by all means learn how. It's a lot of fun.
--
Brad
------------------------------
Date: Thu, 28 Jun 2007 21:06:04 -0700
From: Ved <vedpsingh@gmail.com>
Subject: Adding a line in a file inside many directories
Message-Id: <1183089964.816160.241190@j4g2000prf.googlegroups.com>
Hi all,
I am a beginer in PERL.(I have posted this message in perl.beginers
also and is with moderators)
What I am trying to do is this:
I have a 150 directories, each having a file "kat.s" in them.
I have names of all these directories in a text file
"list_of_dir.txt".
I have to open the each of "kat.s" in all the 150 directories and add
a line(say "ABCD" at line number 20) in each of them.
What I have thought of doing is that using "list_of_dir", open each
directory and open kat.s and print the required statment.
I have written a code. But I am stuck in opening the directory and
than kat.s file.
Please help.
(Or suggest any better way to do it)
Thanks.
#######
use strict;
use warnings;
my $file = 'print.txt';
open my $VEDOUT, '>', $file or die "Could not open '$file': ";
open (VEDIN, 'list_of_dir.txt') or die "Cannot open 'File.txt' $!";
my @rgstr=<VEDIN>;
foreach my $file_list (@rgstr) {
print $file_list ; #printing list of dir
open (dirIN, '$file_list/kat.s') or die "Cannot open 'File.txt' $!";
#This is not working
}
close (VEDIN);
close ($VEDOUT);
#########
------------------------------
Date: Fri, 29 Jun 2007 06:18:16 +0200
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: Adding a line in a file inside many directories
Message-Id: <5ejflsF38e3t9U1@mid.individual.net>
Ved wrote:
> I have a 150 directories, each having a file "kat.s" in them.
> I have names of all these directories in a text file
> "list_of_dir.txt".
>
> I have to open the each of "kat.s" in all the 150 directories and add
> a line(say "ABCD" at line number 20) in each of them.
<snip>
> foreach my $file_list (@rgstr) {
> print $file_list ; #printing list of dir
>
> open (dirIN, '$file_list/kat.s') or die "Cannot open 'File.txt' $!";
> #This is not working
open (dirIN, "$file_list/kat.s") or ...
But that will only open the file for reading. Furthermore, since you
want to add a line at a specific position in the file, I think you
should consider the advice in this FAQ entry:
perldoc -q "insert a line"
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
------------------------------
Date: Fri, 29 Jun 2007 07:46:58 +0200
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: Adding a line in a file inside many directories
Message-Id: <5ejks6F38fo23U1@mid.individual.net>
Gunnar Hjalmarsson wrote:
> Ved wrote:
>>
>> foreach my $file_list (@rgstr) {
>> print $file_list ; #printing list of dir
>>
>> open (dirIN, '$file_list/kat.s') or die "Cannot open 'File.txt' $!";
>> #This is not working
>
> open (dirIN, "$file_list/kat.s") or ...
In addition to the double-quotes, you first need to:
chomp $file_list;
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
------------------------------
Date: Thu, 28 Jun 2007 21:25:38 -0500
From: Tad McClellan <tadmc@seesig.invalid>
Subject: Re: DBIx::Simple, fails with no error (not CGI this time!)
Message-Id: <slrnf88rd2.ppj.tadmc@tadmc30.sbcglobal.net>
Justin C <justin.0706@purestblue.com> wrote:
> I can't find, in perldoc
> -q or -f anything relating to an 'END'. Could you point me at some docs
> to explain what is going on there?
See the "BEGIN, CHECK, INIT and END" section in:
perldoc perlmod
--
Tad McClellan
email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
------------------------------
Date: Thu, 28 Jun 2007 19:37:17 -0700
From: Paul Lalli <mritty@gmail.com>
Subject: Re: DBIx::Simple, fails with no error (not CGI this time!)
Message-Id: <1183084637.913793.75670@n60g2000hse.googlegroups.com>
On Jun 28, 7:21 pm, Justin C <justin.0...@purestblue.com> wrote:
> I can't find, in perldoc -q or -f anything relating to an 'END'.
You're not alone.
> Could you point me at some docs
> to explain what is going on there?
For no real good reason I've ever been able to find, BEGIN{}, INIT{},
CHECK{}, and END{} are all described in `perldoc perlmod`.
Paul Lalli
------------------------------
Date: Fri, 29 Jun 2007 05:15:20 GMT
From: "Art VanDelay" <art@xiotek.com>
Subject: Re: FAQ 1.6 What is perl6?
Message-Id: <Iz0hi.18561$RX.4399@newssvr11.news.prodigy.net>
"Tad McClellan" <tadmc@seesig.invalid> wrote in message
news:slrnf88ggd.o52.tadmc@tadmc30.sbcglobal.net...
> Art VanDelay <art@xiotek.com> wrote:
> > Tad McClellan wrote:
> > > Jim Carlock <anonymous@127.0.0.1> wrote:
> > > > "Tad McClellan" wrote:
> > > > Acceptable grammar? "would have been" or "would of been"?
> >
> > > Yes, I know. You missed the joke.
> > >
> > > I was mocking the troll by repeating his characteristic foibles
> > > from earlier appearances here.
> >
> >
> > Unlike someone who attacks without any provocation
>
>
> It provoked us plenty when it was here last.
1) YOU are the one who keep provoking, not Clenna.
2) YOU don't know it's the same person. Since Clenna started posting here,
as far as I can see, he or she has done nothing wrong, so what is your true
rationale for jumping on his or her back? Boredom?
> > nor provides any
> > proof to back up their arguments?
>
>
> I predicted on June 22 that it would eventually type "jsut" or
> "would of", and it did so on June 28.
That is not a way to positively identify someone. Can you honestly tell
everyone reading here the no one else you've seen makes typos? News flash,
not everyone is perfect ('cept for you.)
> Am I prescient or did I just recognize its modus operandi?
Based on a typo? I don't think so, bub.
> I believe most people will find the later to be more likely...
^^^^^
It's "latter", and I suppose now we should all blend you into the
troll-tar-ball you put forth, for making such a grievous error.
> > What you're doing looks to me a lot more like trolling than anything the
> > accused has done in this thread.
>
>
> You *are* the accused.
Yep, I knew you would try this. One could say it's YOUR "modus operandi" to
accuse anyone you want based on such ridiculous base-less bull crap.
> Assuming another persona is the only way it/you can appear to be
> getting any support. You've done it so many times that only the
> gullible or uninitiated would fall for it now.
Good grief... look at yourself..! You're absolutely obsessed. You can't seem
to help but attempt to defame anyone who you think matches your mystery
troll theory.
This is actually a psychological disorder: "oh no, trolls everywhere, they
all have to be the same person because they all walk with a limp! The horror
the horror!"
Give it up already.
> > All you've done is sparked an off topic
> > tangent thread that's a waste of bandwidth and spool capacity.
>
>
> If it helps people to ignore you, then it is not a waste, it
> is a service to the commmunity.
It's "community", btw.
Sigh... you really are a lost cause if you truly believe such off-shoot
threads are a service to ANYONE. Not when you fail to provide proof. Not
when you when you are provoking someone into responding to you in the first
place, someone who was doing nothing wrong and did not appear to deserve
such treatment.
What you have done is a DIS-service, as all it amounts to is little more
than childish name calling and name smearing with any evidence.
In other words, you're acting just like an American Politian.
--
Art
------------------------------
Date: Fri, 29 Jun 2007 03:25:19 GMT
From: "Simon" <shmh@bigpond.net.au>
Subject: Kicking off multiple processes at once instead of waiting....
Message-Id: <zY_gi.458$4A1.369@news-server.bigpond.net.au>
Hi guys hope you can help.
I have the following script which connects to remote machines and returns
information about the values of certain registry keys.
All is good, but the way the script runs is that it does this....
Connects to first machine.......returns data
Then connects to next machine....returns data
Then the next
Then the next and so on.
What Id like to be able to do, because we have so many machines to process,
is to do the following...
Connect to, say 10 machines all at the same time, then return data back to
the one main console (where I executed the script in the first place),
instead of waiting for 1 machine to end, then move on to the next.
Any help greatly appreciated. Here is the script.
================================================================= Script
use Win32;
use Win32::Registry;
sub RunRegQuery {
$p = 'Software\Network Associates\TVD\VirusScan Enterprise\CurrentVersion';
Win32::RegOpenKeyEx(&HKEY_LOCAL_MACHINE,$p,&NULL,&
KEY_QUERY_VALUE|&KEY_SET_VALUE,$hkey);
Win32::RegQueryValueEx($hkey,"szVirDefVer",&NULL,$ type,$Definition);
Win32::RegQueryValueEx($hkey,"szProductVer",&NULL, $type,$Product);
Win32::RegQueryValueEx($hkey,"szEngineVer",&NULL,$ type,$Engine);
print "$SystemName\n";
print "$Definition\n";
print "$Product\n";
print "$Engine\n";
print " \n";
}
##########
## MAIN ##
##########
open (Store, "< llsystems.txt") or die "can't open systems.txt: $!";
foreach $line (<Store>)
{
chomp($line);
$SystemName = $line;
if ($SystemName =~ /^l/i) {
system ("net use \\\\$SystemName\\ipc\$ "password"
/user:$SystemName\\useraccount > NUL");
sleep 3;
RunRegQuery();
system ("net use \\\\$SystemName\\ipc\$ /delete /y > 2NUL > NUL"); # Delete
previous connection
}
else {
print "not a valid system\n";
}
}
close (Store);
exit;
=================================================================== End of
script
Output is as follows..
C:\>script.pl
Lcomputer1
5060
8.0.0.912
5100
Lcomputer2
5060
8.0.0.912
5100
Lcomputer3
5060
8.0.0.912
5100
etc etc
Any help greatly appreciated guys, thank you.
S
------------------------------
Date: Fri, 29 Jun 2007 03:58:14 GMT
From: QoS@domain.invalid
Subject: Re: Kicking off multiple processes at once instead of waiting....
Message-Id: <qr%gi.5424$ss5.76@trndny03>
"Simon" <shmh@bigpond.net.au> wrote in message-id: <zY_gi.458$4A1.369@news-server.bigpond.net.au>
>
> Hi guys hope you can help.
>
> I have the following script which connects to remote machines and returns
> information about the values of certain registry keys.
> All is good, but the way the script runs is that it does this....
> Connects to first machine.......returns data
> Then connects to next machine....returns data
> Then the next
> Then the next and so on.
>
> What Id like to be able to do, because we have so many machines to process,
> is to do the following...
>
> Connect to, say 10 machines all at the same time, then return data back to
> the one main console (where I executed the script in the first place),
> instead of waiting for 1 machine to end, then move on to the next.
>
> Any help greatly appreciated. Here is the script.
>
> ================================================================= Script
>
> use Win32;
> use Win32::Registry;
>
> sub RunRegQuery {
>
> $p = 'Software\Network Associates\TVD\VirusScan Enterprise\CurrentVersion';
> Win32::RegOpenKeyEx(&HKEY_LOCAL_MACHINE,$p,&NULL,&
> KEY_QUERY_VALUE|&KEY_SET_VALUE,$hkey);
> Win32::RegQueryValueEx($hkey,"szVirDefVer",&NULL,$ type,$Definition);
> Win32::RegQueryValueEx($hkey,"szProductVer",&NULL, $type,$Product);
> Win32::RegQueryValueEx($hkey,"szEngineVer",&NULL,$ type,$Engine);
>
> print "$SystemName\n";
> print "$Definition\n";
> print "$Product\n";
> print "$Engine\n";
> print " \n";
> }
>
> ##########
> ## MAIN ##
> ##########
>
> open (Store, "< llsystems.txt") or die "can't open systems.txt: $!";
> foreach $line (<Store>)
> {
> chomp($line);
> $SystemName = $line;
> if ($SystemName =~ /^l/i) {
> system ("net use \\\\$SystemName\\ipc\$ "password"
> /user:$SystemName\\useraccount > NUL");
> sleep 3;
> RunRegQuery();
> system ("net use \\\\$SystemName\\ipc\$ /delete /y > 2NUL > NUL"); # Delete
> previous connection
> }
> else {
> print "not a valid system\n";
> }
> }
> close (Store);
> exit;
>
> =================================================================== End of
> script
>
> Output is as follows..
>
> C:\>script.pl
> Lcomputer1
> 5060
> 8.0.0.912
> 5100
> Lcomputer2
> 5060
> 8.0.0.912
> 5100
> Lcomputer3
> 5060
> 8.0.0.912
> 5100
>
> etc etc
>
> Any help greatly appreciated guys, thank you.
>
> S
Just use Threads
------------------------------
Date: Fri, 29 Jun 2007 04:42:12 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Fri Jun 29 2007
Message-Id: <JKDrqC.owL@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.
Amazon-SQS-Simple-0.2
http://search.cpan.org/~swhitaker/Amazon-SQS-Simple-0.2/
OO API for accessing the Amazon Simple Queue Service
----
DBIx-DBSchema-0.33
http://search.cpan.org/~ivan/DBIx-DBSchema-0.33/
Database-independent schema objects
----
Data-Alias-1.06
http://search.cpan.org/~xmath/Data-Alias-1.06/
Comprehensive set of aliasing operations
----
Data-ClearSilver-HDF-0.01
http://search.cpan.org/~zigorou/Data-ClearSilver-HDF-0.01/
Convert from Perl Data Structure to ClearSilver HDF
----
File-Remove-0.36
http://search.cpan.org/~adamk/File-Remove-0.36/
Remove files and directories
----
Getopt-LL-0.0.4
http://search.cpan.org/~asksh/Getopt-LL-0.0.4/
Flexible argument processing.
----
HTML-DOM-0.001
http://search.cpan.org/~sprout/HTML-DOM-0.001/
A Perl implementation of the HTML Document Object Model
----
IO-Socket-SIPC-0.01_03
http://search.cpan.org/~bloonix/IO-Socket-SIPC-0.01_03/
Serialized perl structures for inter process communication.
----
Image-Magick-Thumbnail-PDF-1.10
http://search.cpan.org/~leocharre/Image-Magick-Thumbnail-PDF-1.10/
make thumbnail of a page in a pdf document
----
List-Filter-0.04
http://search.cpan.org/~doom/List-Filter-0.04/
named, persistent, shared lists of patterns
----
Log-Log4perl-1.12
http://search.cpan.org/~mschilli/Log-Log4perl-1.12/
Log4j implementation for Perl
----
Net-Appliance-Logical-0.01
http://search.cpan.org/~heschong/Net-Appliance-Logical-0.01/
Base Class for interacting various network appliances
----
Net-FireEagle-1.0
http://search.cpan.org/~ascope/Net-FireEagle-1.0/
Object methods for working with the FireEagle location service.
----
Net-SSH-Expect-0.01
http://search.cpan.org/~bnegrao/Net-SSH-Expect-0.01/
SSH wrapper to execute remote commands
----
Net-SSH-Expect-0.02
http://search.cpan.org/~bnegrao/Net-SSH-Expect-0.02/
SSH wrapper to execute remote commands
----
Perl-Critic-1.06
http://search.cpan.org/~thaljef/Perl-Critic-1.06/
Critique Perl source code for best-practices
----
Perl-Squish-0.03
http://search.cpan.org/~adamk/Perl-Squish-0.03/
Reduce Perl code to a few characters as possible
----
SOAP-WSDL-2.00_01
http://search.cpan.org/~mkutter/SOAP-WSDL-2.00_01/
----
SOAP-WSDL-2.00_02
http://search.cpan.org/~mkutter/SOAP-WSDL-2.00_02/
----
SQL-Tokenizer-0.08
http://search.cpan.org/~izut/SQL-Tokenizer-0.08/
A simple SQL tokenizer.
----
STAFService-0.01
http://search.cpan.org/~semuelf/STAFService-0.01/
Perl extension for writing STAF Services easily.
----
Slay-Makefile-0.03
http://search.cpan.org/~nodine/Slay-Makefile-0.03/
Wrapper to Slay::Maker that reads the rules from a file
----
Task-RecycleTrash-1.00
http://search.cpan.org/~adamk/Task-RecycleTrash-1.00/
Check/install the dependencies for File::Remove::trash
----
Template-Alloy-1.005
http://search.cpan.org/~rhandom/Template-Alloy-1.005/
TT2/3, HT, HTE, Tmpl, and Velocity Engine
----
Template-Plugin-Tooltip-0.07
http://search.cpan.org/~adamk/Template-Plugin-Tooltip-0.07/
Template Toolkit plugin for HTML::Tooltip::JavaScript
----
Template-Plugin-deJSON-0.01
http://search.cpan.org/~strytoast/Template-Plugin-deJSON-0.01/
----
Test-Base-0.54
http://search.cpan.org/~ingy/Test-Base-0.54/
A Data Driven Testing Framework
----
Test-GreaterVersion-0.006
http://search.cpan.org/~ggoldbach/Test-GreaterVersion-0.006/
Did you update the VERSION?
----
Test-GreaterVersion-0.007
http://search.cpan.org/~ggoldbach/Test-GreaterVersion-0.007/
Did you update the VERSION?
----
Test-MockObject-1.08
http://search.cpan.org/~chromatic/Test-MockObject-1.08/
Perl extension for emulating troublesome interfaces
----
Text-Restructured-0.003031
http://search.cpan.org/~nodine/Text-Restructured-0.003031/
Perl implementation of reStructuredText parser
----
Text-WikiFormat-0.79
http://search.cpan.org/~chromatic/Text-WikiFormat-0.79/
module for translating Wiki formatted text into other formats
----
Tripletail-0.29
http://search.cpan.org/~hio/Tripletail-0.29/
Tripletail, Framework for Japanese Web Application
----
WWW-Facebook-API-v0.3.5
http://search.cpan.org/~unobe/WWW-Facebook-API-v0.3.5/
Facebook API implementation
----
Weed-0.0061
http://search.cpan.org/~hooo/Weed-0.0061/
Don't use it. It's in development. Everything can change.
----
Weed-0.0064
http://search.cpan.org/~hooo/Weed-0.0064/
Don't use it. It's in development. Everything can change.
----
dbi_simple
http://search.cpan.org/~mbatista/dbi_simple/
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: Fri, 29 Jun 2007 04:22:45 GMT
From: "Art VanDelay" <art@xiotek.com>
Subject: Re: Oh great gurus of the list, I need help with a regular expression please
Message-Id: <pO%gi.27374$YL5.27002@newssvr29.news.prodigy.net>
"Tad McClellan" <tadmc@seesig.invalid> wrote in message
news:slrnf88fsg.o52.tadmc@tadmc30.sbcglobal.net...
> Mumia W. <paduille.4061.mumia.w+nospam@earthlink.net> wrote:
>> On 06/28/2007 11:24 AM, Clenna Lumina wrote:
>>> Tad McClellan wrote:
>>>> Clenna Lumina <savagebeaste@yahoo.com> wrote:
>> I advise you do just
>> drop it.
I must be getting a different news feed then you, because Tad is the one who
keep bringing it up. Yet It's Clenna who needs to drop it? What the hell is
this?
> That won't happen as long as people keep following up to its posts.
Do you even hear yourself? YOU, Tad, are the one who keeps coming back with
this crap. Why don't YOU drop it and admit you might be wrong, as you yet to
provide any real evidence Clenna is this troll you speak of. So far since
Clenna entered this group of recent, I've see him or her do nothing wrong,
so what is your real agenda here, hmmm?
>> (My spidey sense tells me that you're a morph of PG,
Care to share with the class on that? What has Clenna done wrong since he or
she has started posting here as of late?
> Gurl is most definitely not the Jsut Troll, she is a more
> "honorable" person, if that can be said of any troll, than
> Jsut is.
Again, what as Clenna done since she started to warrant this? How do you
KNOW this is the same person? You all keep saying this as if there is no
doubt, yet continue to fail to provide any evidence.
> She only displays 2 of the 6 Jsut telltales, while we have now
> seen all 6 of them with Clenna Lumina and friends.
You have failed to provider any proof Clenna is actually one of these
people. I did not intend to become his or her lawyer, but when I see someone
getting stoned in the court yard for just passing through, I think it's
worth it to speak up because obvious no one else will. Either they are too
afraid to get digitally stoned as well or don't care one way or another.
What you all seem to be doing just seems wrong, and none of you have even
provided any justification, nor any evidence. You tell Clenna to drop it yet
it's perfectly ok for you to keep bringing it up. Great sense of justice we
have here ...
--
Art
------------------------------
Date: Thu, 28 Jun 2007 22:02:44 -0700
From: Ilias Lazaridis <ilias@lazaridis.com>
Subject: Re: Perl Standard for Remote Objects.
Message-Id: <1183093364.101231.105220@w5g2000hsg.googlegroups.com>
On Jun 29, 12:02 am, "J. Gleixner" <glex_no-s...@qwest-spam-
no.invalid> wrote:
> Ilias Lazaridis wrote:
> > Is there any standard library to deal with remote objects on perl?
>
> Well, what did you find on CPAN?
e.g. this:
http://search.cpan.org/~byrne/SOAP-Lite-0.69/lib/OldDocs/SOAP/Lite.pm
http://www.soaplite.com/
but I am asking here to get suggestions from developers which _use_
something, e.g. something more lightweight than the SOAP.
Or to get a pointer to a overview which contains some comments.
.
--
http://dev.lazaridis.com/lang/ticket/19
------------------------------
Date: Fri, 29 Jun 2007 03:25:22 GMT
From: Tim Roberts <timr@probo.com>
Subject: Re: The Modernization of Emacs: terminology buffer and keybinding
Message-Id: <jku8839d1smrgclqpfvg5f73mf2k38vrdg@4ax.com>
Twisted <twisted0n3@gmail.com> wrote:
>
>On Jun 27, 8:26 am, g...@mail.ru (Timofei Shatrov) wrote:
>>
>> Lie. Ghostscript works out of the box on Windows.
>
>You're joking. First of all I am not a liar, and secondly, Ghostscript
>and Ghostview are tricky to set up correctly. I know -- I've done it a
>time or three. There's an arcane GUI configurator that isn't
>exceptionally well designed, and once it's working it still wonks out
>on maybe 1 in 10 .ps and .eps files you come across ...
You must have installed Ghostscript last in 1998. The current installer is
as painless as most open source installers are.
--
Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.
------------------------------
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 599
**************************************