[28327] in Perl-Users-Digest

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

Perl-Users Digest, Issue: 9691 Volume: 10

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Sep 6 03:05:54 2006

Date: Wed, 6 Sep 2006 00:05: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           Wed, 6 Sep 2006     Volume: 10 Number: 9691

Today's topics:
    Re: (Off topic) Cyberwar question <skybuck2000@hotmail.com>
    Re: (Off topic) Cyberwar question usenet@DavidFilmer.com
    Re: CPAN - 'cl' is not recognized as an internal or ext <sisyphus1@nomail.afraid.org>
        Get Directiry size in windows warrenb101@hotmail.com
    Re: Get Directiry size in windows <1usa@llenroc.ude.invalid>
    Re: Get Directiry size in windows <darkknight0072004@yahoo.com>
    Re: Get Directiry size in windows <darkknight0072004@yahoo.com>
    Re: Mail and Encoding <1usa@llenroc.ude.invalid>
        new CPAN modules on Wed Sep  6 2006 (Randal Schwartz)
    Re: Ultimate programmer's reference - Quickref.org laun <robby.walker@gmail.com>
    Re: Ultimate programmer's reference - Quickref.org laun <David.Squire@no.spam.from.here.au>
    Re: Ultimate programmer's reference - Quickref.org laun <rvtol+news@isolution.nl>
    Re: Ultimate programmer's reference - Quickref.org laun <john@castleamber.com>
    Re: Ultimate programmer's reference - Quickref.org laun <sbryce@scottbryce.com>
    Re: Ultimate programmer's reference - Quickref.org laun <1usa@llenroc.ude.invalid>
    Re: Ultimate programmer's reference - Quickref.org laun <tadmc@augustmail.com>
    Re: Ultimate programmer's reference - Quickref.org laun <jurgenex@hotmail.com>
    Re: Win32::GuiTest missing some functions <google.com@zaxon.e4ward.com>
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

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

Date: 5 Sep 2006 22:34:43 -0700
From: "Skybuck" <skybuck2000@hotmail.com>
Subject: Re: (Off topic) Cyberwar question
Message-Id: <1157520883.508921.323090@i3g2000cwc.googlegroups.com>

Oh no,

Such sexy talk.

Come on sexy.

Please write a nice perl script to decode your sexy talk.

Some of us not sexy.

We need TRANSLATOR.

Please being of other planet !

Be so kind !

Provide US !

WITH

*** TRRRRRANSLLLLATOR *** ;) =D

We-Need-Translator !

Translate ?! OK ?

YES-MUST-TRANSLATE

Always TRANSLATE is best ! =D

Bye,
  Skybuck.

NO MUST NOT HAVE PERL SCRIPT.

CURRENTLY PERL NOT INSTALLED.

QUESTION:

DOES PERL RUN ON WINDOWS XP 64 BIT ?

PROBABLY ANSWER: NEEEHHHhhh <- probably junk.

Solution: INSTALL PERL ON XP.

Possible risk: BAD SCRIPT AAAAAAAAAHHHHHHHHHH

NO MUST NOT RUN SCRIPT.

THE SCRIPT IS EVEL !

THE SCRIPT MUST DIE !!! =D

I shall mutilate the script. !

Michele Dondi wrote:
> On 4 Sep 2006 14:11:14 -0700, "Skybuck" <skybuck2000@hotmail.com>
> wrote:
>
> [loads ay shite]
>
> Oh ma perr wee lassie! Hud ah kent ye wir such a lurvely cunt ah
> wid've joined yir cyberwar n aw fir sure, likesay. Sae long...
>
>
> Michele
> --
> {$_=p BEEEPEEPP P PBEEEPack'B8'x25,unpack'A8'x32,$a^=sub{pop^pop}->(map substr
> (($a||=join'',map--$|x$_,(unpack'w
 BBEEEOEEPPEPEEEPEPEE',unpack'u','G^<R<Y]*YB='
> .'KYU;*EVH[.FHF2W+#"\Z*5TI/EBBBBEEEP EEPEEER<Z`S(G.DZZ9OX0Z')=~/./g)BBEPEPEPEEx2,$_,

There the SCRIPT IS MULATED !

Now we can go rest in piece.

The universe is SAFED ! =D

Yeah.

Bye,
  Skybuck.

256),7,249);s/[^\w,]/ /g;$ \=/^J/?$/:"\r";print,redo}#JAPH,



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

Date: 5 Sep 2006 23:24:43 -0700
From: usenet@DavidFilmer.com
Subject: Re: (Off topic) Cyberwar question
Message-Id: <1157523883.506678.173670@d34g2000cwd.googlegroups.com>

Skybuck wrote:
> Such sexy talk.

Are you aware that Michele (with one "L") is a man's name?  It's a
linguistic variation of the Anglo-Saxon name "Michael"

-- 
David Filmer (http://DavidFilmer.com)



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

Date: Wed, 6 Sep 2006 11:10:41 +1000
From: "Sisyphus" <sisyphus1@nomail.afraid.org>
Subject: Re: CPAN - 'cl' is not recognized as an internal or external command,
Message-Id: <44fe3317$0$11968$afc38c87@news.optusnet.com.au>


"Henry McGuinness" <henry.mcguinness@dphpc.ox.ac.uk> wrote in message
 .
 .
> >
> > Some time back ExtUtils::FakeConfig appeared, which enables you to use
the
> > freely available MinGW (gcc) compiler with ActivePerl. It provides good
> > milage, too.
 .
 .
>
> Excellent. Many thanks. I'll look into that and try it out.
>

EU::FC installs a fake config module (Config_m.pm) in Perl/site/lib.

It contains the line:
ld='gcc'

Best to change that to:
ld='g++'

When building perl modules you need to load those fake values, which you
achieve by running 'perl -MConfig_m Makefile.PL' instead of the more usual
'perl Makefile.PL'.
Sometimes (eg when building Inline::C ... I think) you need to set the
environment variable 'perl5opt' to '-MConfig_m'.  That means that every time
the perl executable gets called, Config_m.pm is loaded. (Perhaps better to
simply set perl5opt and then unset it only if/when it causes a problem ...
not sure.) I haven't yet found a module that builds on MinGW-built perl but
fails to build on ActivePerl using Extutils::FakeConfig. The negative side
of EU::FC is the kludginess of having to invoke the '-MConfig_m' argument.

Uri mentioned 'vanilla perl' - also worth investigating.

Cheers,
Rob




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

Date: 5 Sep 2006 16:13:47 -0700
From: warrenb101@hotmail.com
Subject: Get Directiry size in windows
Message-Id: <1157498027.835224.70080@h48g2000cwc.googlegroups.com>

I'm trying to get the total directory size using perl.  Here is a
snippet of what i've got now that doesn't work:

$dirsize = `dir C:\MyDirectory\somefolder . | findstr "File(s)"`;

print "$dirsize\n";


If I run the command from the command prompt it returns the correct
line (which i can later parse out to get the byte count.) but when I
run the perl script it returns results from the directory that the
script is run from not from what i specify in the command.

What am i doing wrong here?  Or maybe there is a better way to do
it.....
I'd appreciate anyones help.
Thankx,
WarrenB



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

Date: Wed, 06 Sep 2006 01:17:56 GMT
From: "A. Sinan Unur" <1usa@llenroc.ude.invalid>
Subject: Re: Get Directiry size in windows
Message-Id: <Xns9835D8AB89372asu1cornelledu@127.0.0.1>

warrenb101@hotmail.com wrote in news:1157498027.835224.70080
@h48g2000cwc.googlegroups.com:

> I'm trying to get the total directory size using perl.  Here is a
> snippet of what i've got now that doesn't work:
> 
> $dirsize = `dir C:\MyDirectory\somefolder . | findstr "File(s)"`;

Why is there a dot in there? You basically gave dir two arguments, the 
current directory, and something which you think is 
C:\My Directory\somefolder, but it isn't. You should always turn warnings 
on when programming in Perl, and read the FAQ list (yes, all of it):

perldoc -q path

> Or maybe there is a better way to do it.....

http://search.cpan.org/~arich/Win32-DirSize-1.13/Win32/DirSize/DirSize.pm

Sinan
-- 
A. Sinan Unur <1usa@llenroc.ude.invalid>
(remove .invalid and reverse each component for email address)

comp.lang.perl.misc guidelines on the WWW:
http://augustmail.com/~tadmc/clpmisc/clpmisc_guidelines.html



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

Date: 5 Sep 2006 22:31:36 -0700
From: "Dark" <darkknight0072004@yahoo.com>
Subject: Re: Get Directiry size in windows
Message-Id: <1157520696.043215.210770@d34g2000cwd.googlegroups.com>

Win32::DirSize (search.cpan.org is your friend). If you don't or can't
install modules try something like :

$dirsize = `dir \"C:\\Program Files\\\" | findstr \"File(s)\"`;

or

$dirsize = `dir \"C:/Program Files/\" | findstr \"File(s)\"`;

The bottom line is that backticks get interpolated just like double
quotes. I have escaped the other double quotes \" above. Hope it helps.


-I


warrenb101@hotmail.com wrote:
> I'm trying to get the total directory size using perl.  Here is a
> snippet of what i've got now that doesn't work:
>
> $dirsize = `dir C:\MyDirectory\somefolder . | findstr "File(s)"`;
>
> print "$dirsize\n";
>
>
> If I run the command from the command prompt it returns the correct
> line (which i can later parse out to get the byte count.) but when I
> run the perl script it returns results from the directory that the
> script is run from not from what i specify in the command.
>
> What am i doing wrong here?  Or maybe there is a better way to do
> it.....
> I'd appreciate anyones help.
> Thankx,
> WarrenB



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

Date: 5 Sep 2006 22:32:11 -0700
From: "Dark" <darkknight0072004@yahoo.com>
Subject: Re: Get Directiry size in windows
Message-Id: <1157520731.774280.9960@m79g2000cwm.googlegroups.com>

Win32::DirSize (search.cpan.org is your friend). If you don't or can't
install modules try something like :

$dirsize = `dir \"C:\\Program Files\\\" | findstr \"File(s)\"`;

or

$dirsize = `dir \"C:/Program Files/\" | findstr \"File(s)\"`;

The bottom line is that backticks get interpolated just like double
quotes. I have escaped the other double quotes \" above. Hope it helps.


-I


warrenb101@hotmail.com wrote:
> I'm trying to get the total directory size using perl.  Here is a
> snippet of what i've got now that doesn't work:
>
> $dirsize = `dir C:\MyDirectory\somefolder . | findstr "File(s)"`;
>
> print "$dirsize\n";
>
>
> If I run the command from the command prompt it returns the correct
> line (which i can later parse out to get the byte count.) but when I
> run the perl script it returns results from the directory that the
> script is run from not from what i specify in the command.
>
> What am i doing wrong here?  Or maybe there is a better way to do
> it.....
> I'd appreciate anyones help.
> Thankx,
> WarrenB



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

Date: Tue, 05 Sep 2006 23:06:35 GMT
From: "A. Sinan Unur" <1usa@llenroc.ude.invalid>
Subject: Re: Mail and Encoding
Message-Id: <Xns9835C266B127asu1cornelledu@127.0.0.1>

steve <steve.lavoie@micromedica.com> wrote in news:zmkLg.30408$ED.23735
@read2.cgocable.net:

> I am trying to parse every email I am getting in a spam@domain.com. I 
> can pull the email using Net::POP3. I am parsing each email using a 
> Mail::Internet object. The problem I am getting is that in certain
> case, like Outlook forward message where the signature is in HTML some 
> special characters are encode like =20 . Most message are in french so
> I have some special character like é è and so on.
> 
> I have tried Encode:: module but I dont know from which table to what
> I should convert.
> 
> Anyone got some ideas?

I am always confused about these things but I think you are looking at 
messages in quoted printable format:

http://search.cpan.org/~gaas/MIME-Base64-3.07/QuotedPrint.pm

http://en.wikipedia.org/wiki/Quoted-printable

> Sorry for my bad english.. I am french native.

Not to worry and no need to apologize. There are people from all over 
the world in this group.

Sinan

-- 
A. Sinan Unur <1usa@llenroc.ude.invalid>
(remove .invalid and reverse each component for email address)

comp.lang.perl.misc guidelines on the WWW:
http://augustmail.com/~tadmc/clpmisc/clpmisc_guidelines.html



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

Date: Wed, 6 Sep 2006 04:42:08 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Wed Sep  6 2006
Message-Id: <J55ME8.102H@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.

Apache-HealthCheck-0.01
http://search.cpan.org/~mgregoro/Apache-HealthCheck-0.01/
Checks a set of urls for conditions and puts up whatever page you want
----
CGI-Utils-0.10
http://search.cpan.org/~dowens/CGI-Utils-0.10/
Utilities for retrieving information through the Common Gateway Interface
----
Class-Accessor-Assert-1.40
http://search.cpan.org/~smueller/Class-Accessor-Assert-1.40/
Accessors which type-check
----
Class-Accessor-Named-0.006
http://search.cpan.org/~jesse/Class-Accessor-Named-0.006/
Better profiling output for Class::Accessor
----
Class-Component-Recipe-0.01_01
http://search.cpan.org/~phaylon/Class-Component-Recipe-0.01_01/
Dynamic Component Containers
----
DBIx-Class-Validation-0.01001
http://search.cpan.org/~claco/DBIx-Class-Validation-0.01001/
Validate all data before submitting to your database.
----
Data-UUID-0.141
http://search.cpan.org/~rjbs/Data-UUID-0.141/
Perl extension for generating Globally/Universally Unique Identifiers (GUIDs/UUIDs).
----
Data-UUID-0.142
http://search.cpan.org/~rjbs/Data-UUID-0.142/
Perl extension for generating Globally/Universally Unique Identifiers (GUIDs/UUIDs).
----
Exception-Class-TCF-0.03
http://search.cpan.org/~rvosa/Exception-Class-TCF-0.03/
Java/C++ style exception handling
----
FormValidator-Simple-0.17
http://search.cpan.org/~lyokato/FormValidator-Simple-0.17/
validation with simple chains of constraints
----
Handel-0.99_09
http://search.cpan.org/~claco/Handel-0.99_09/
Simple commerce framework with AxKit/TT/Catalyst support
----
JavaScript-1.00
http://search.cpan.org/~claesjac/JavaScript-1.00/
Perl extension for executing embedded JavaScript
----
Mail-DeliveryStatus-BounceParser-1.515
http://search.cpan.org/~rjbs/Mail-DeliveryStatus-BounceParser-1.515/
Perl extension to analyze bounce messages
----
Module-Build-JSAN-0.02
http://search.cpan.org/~dwheeler/Module-Build-JSAN-0.02/
Build JavaScript distributions for JSAN
----
Module-CPANTS-Analyse-0.65
http://search.cpan.org/~domm/Module-CPANTS-Analyse-0.65/
Generate Kwalitee ratings for a distribution
----
Net-Flickr-Backup-2.93
http://search.cpan.org/~ascope/Net-Flickr-Backup-2.93/
OOP for backing up your Flickr photos locally
----
Net-OICQ-1.2
http://search.cpan.org/~tangent/Net-OICQ-1.2/
Perl extension for QQ instant messaging protocol
----
Net-Pcap-0.14
http://search.cpan.org/~saper/Net-Pcap-0.14/
Interface to pcap(3) LBL packet capture library
----
PDL-Fit-Levmar-0.0085
http://search.cpan.org/~jlapeyre/PDL-Fit-Levmar-0.0085/
Levenberg-Marquardt fit/optimization routines
----
Perl-Metric-Basic-0.31
http://search.cpan.org/~lbrocard/Perl-Metric-Basic-0.31/
Provide basic software metrics
----
Pod-ProjectDocs-0.26
http://search.cpan.org/~lyokato/Pod-ProjectDocs-0.26/
generates CPAN like pod pages
----
Proc-Daemontools-Service-0.02
http://search.cpan.org/~hdp/Proc-Daemontools-Service-0.02/
services that play nicely with daemontools
----
SVN-Statistics-0.041
http://search.cpan.org/~linmar/SVN-Statistics-0.041/
----
String-CamelCase-0.01
http://search.cpan.org/~hio/String-CamelCase-0.01/
camelcase, de-camelcase
----
Test-Strict-0.08
http://search.cpan.org/~smueller/Test-Strict-0.08/
Check syntax, presence of use strict; and test coverage
----
Unicode-Japanese-0.38
http://search.cpan.org/~hio/Unicode-Japanese-0.38/
Japanese Character Encoding Handler
----
WWW-Myspace-0.54
http://search.cpan.org/~grantg/WWW-Myspace-0.54/
Access MySpace.com profile information from Perl
----
Web-Scaffold-0.03
http://search.cpan.org/~miker/Web-Scaffold-0.03/
build minimalist fancy web sites
----
Web-Scaffold-0.04
http://search.cpan.org/~miker/Web-Scaffold-0.04/
build minimalist fancy web sites
----
Win32-Capture-1.0
http://search.cpan.org/~kenwu/Win32-Capture-1.0/
Capature Win32 screen with lightweight Win32::GUI::DIBitmap.
----
Wx-PdfDocument-0.05
http://search.cpan.org/~mwardell/Wx-PdfDocument-0.05/
interface to the wxPdfDocument C++ class
----
zxid-0.4
http://search.cpan.org/~sampo/zxid-0.4/


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: 5 Sep 2006 15:08:00 -0700
From: "Robby Walker" <robby.walker@gmail.com>
Subject: Re: Ultimate programmer's reference - Quickref.org launches
Message-Id: <1157494080.491206.8360@b28g2000cwb.googlegroups.com>

Scott,

The value of the site (to me) is that you can search not only Perl but
also CSS, JavaScript, HTML, and MySQL - languages I often use in
conjunction with Perl.  I got tired of opening a browser tab for every
single language I use so I wrote this tool.

Also, from the site: "The content that appears on this site is not
written by quickref.org. This site serves only as a search engine to
some of the best freely available documentation."

I'm not claiming to create new Perl docs - just a place you can get
Perl docs and whatever other docs you need in the same browser tab.

I'm very open to feedback on how to make it more useful.

Thanks,
- Robby

Scott Bryce wrote:
> Robby Walker wrote:
>
> > I honestly believe this is a tool that Perl programmers might find
> > useful.  I didn't mean to offend anyone, and I apologize.
>
> It is nothing more than the docs for perlfunc at CPAN in an i-frame on
> your site. Why would we find this useful? If we want to search the docs
> on line, we can already do so at perldoc.perl.org.
>
> I think what urks people here is that you have taken an on-line resource
> that we already have available to us, put it in an i-frame in your site
> and are trying to sell it as a new resource. Isn't that dishonest?



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

Date: Tue, 05 Sep 2006 23:26:50 +0100
From: David Squire <David.Squire@no.spam.from.here.au>
Subject: Re: Ultimate programmer's reference - Quickref.org launches
Message-Id: <edktja$gn9$1@gemini.csx.cam.ac.uk>

Robby Walker wrote:
> Scott,
> 
> The value of the site (to me) is that you can search not only Perl but
> also CSS, JavaScript, HTML, and MySQL - languages I often use in
> conjunction with Perl.  I got tired of opening a browser tab for every
> single language I use so I wrote this tool.
> 
> Also, from the site: "The content that appears on this site is not
> written by quickref.org. This site serves only as a search engine to
> some of the best freely available documentation."
> 
> I'm not claiming to create new Perl docs - just a place you can get
> Perl docs and whatever other docs you need in the same browser tab.
> 
> I'm very open to feedback on how to make it more useful.

For a start, for God's sake please stop top-posting.


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

Date: Wed, 6 Sep 2006 00:17:50 +0200
From: "Dr.Ruud" <rvtol+news@isolution.nl>
Subject: Re: Ultimate programmer's reference - Quickref.org launches
Message-Id: <edl48u.1c0.1@news.isolution.nl>

Uri Guttman schreef:
> Chris:
>> Randal:
>>> Tad:
>>>> Robby Walker:

>>>>> QuickRef.org : AJAX-powered site searches for documentation on
>>>>> Perl,
>>>>
>>>> Why would we need a website that contains the same
>>>> information as what is already available on our hard disks?
>>>
>>> Tad, you clearly don't understand.
>>> ** It's AJAX! **
>>> :-)
>>
>> I've always used Comet myself.
>
> <WAY OFF TOPIC>
>
> "comet will make your mouth turn green,
> comet is made with gasoline,
> comet will make you vomit so get some comet today"
>
> dunno why that camp/grade school song popped into my brane. sing it to
> the tune of the bridge on the river kwai whistle theme.

Aargh, I was waiting for the metro together with Abe, about an hour ago,
after an NL-PM meeting, and I told him a story about car hooters that
played exactly that tune.
(we weren't far from the Ajax-stadium either)

> </WAY OFF TOPIC>

-- 
Affijn, Ruud

"Gewoon is een tijger."





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

Date: 5 Sep 2006 22:31:32 GMT
From: John Bokma <john@castleamber.com>
Subject: Re: Ultimate programmer's reference - Quickref.org launches
Message-Id: <Xns9835B24714430castleamber@130.133.1.4>

"Robby Walker" <robby.walker@gmail.com> wrote:

> I'm not claiming to create new Perl docs - just a place you can get
> Perl docs and whatever other docs you need in the same browser tab.
> 
> I'm very open to feedback on how to make it more useful.

How about adding documentation on how to post on Usenet and how not to 
(like: don't top post?)

Doesn't it make you wonder that people reply *under* what you write?

Finally, I see you added the adsense. To me you're making money by framing 
documentation written by people in their free time for free. This might 
piss off people. I would be pissed off if you did it with anything I have 
written without my permission.

-- 
John                Experienced Perl programmer: http://castleamber.com/

          Perl help, tutorials, and examples: http://johnbokma.com/perl/


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

Date: Tue, 05 Sep 2006 16:40:54 -0600
From: Scott Bryce <sbryce@scottbryce.com>
Subject: Re: Ultimate programmer's reference - Quickref.org launches
Message-Id: <yMudnU9UhpdvYWDZnZ2dnUVZ_u-dnZ2d@comcast.com>

Robby Walker wrote:
> Scott,
> 
> The value of the site (to me) is that you can search not only Perl but
> also CSS, JavaScript, HTML, and MySQL - languages I often use in
> conjunction with Perl.  I got tired of opening a browser tab for every
> single language I use so I wrote this tool.

This newsgroup is not for the purpose of discussing your site, so we are 
straying WAY off topic here. This will be my final post in this thread.

I also use Perl in conjunction with CSS, HTML and MySQL. I have not 
found it cumbersome at all to search the docs for each of these in a 
separate tab in my browser. In fact, I would think that that would be 
easier than using the interface on your site, which does not know which 
of several technologies I need information on.

Many people use Perl for purposes other than CGI, and would have no 
interest in having a CSS or HTML resource (or PHP, or Ruby, or 
Javascript) intertwined with the perl docs.

> I'm very open to feedback on how to make it more useful.

I think you have developed a solution in search of a problem to solve.


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

Date: Tue, 05 Sep 2006 22:55:49 GMT
From: "A. Sinan Unur" <1usa@llenroc.ude.invalid>
Subject: Re: Ultimate programmer's reference - Quickref.org launches
Message-Id: <Xns9835C093274Aasu1cornelledu@127.0.0.1>

John Bokma <john@castleamber.com> wrote in
news:Xns9835B24714430castleamber@130.133.1.4: 

> "Robby Walker" <robby.walker@gmail.com> wrote:
> 
>> I'm not claiming to create new Perl docs - just a place you can get
>> Perl docs and whatever other docs you need in the same browser tab.
>> 
>> I'm very open to feedback on how to make it more useful.

It could not be less useful. Did you even test the input method?

> Finally, I see you added the adsense. To me you're making money by
> framing documentation written by people in their free time for free.

Not only that, he is making that money by mooching off bandwidth from 
cpan.org.

It would have been one thing if the OP had put the docs on his site (I 
think the Artistic License allows this) and was using his own paid 
bandwidth to serve the docs.

At this point, the OP is stealing, or, at least attempting to steal 
bandwidth for commercial gain to himself. Regardless of legality, I 
consider such behavior immoral.

Sinan

-- 
A. Sinan Unur <1usa@llenroc.ude.invalid>
(remove .invalid and reverse each component for email address)

comp.lang.perl.misc guidelines on the WWW:
http://augustmail.com/~tadmc/clpmisc/clpmisc_guidelines.html



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

Date: Tue, 5 Sep 2006 17:11:13 -0500
From: Tad McClellan <tadmc@augustmail.com>
Subject: Re: Ultimate programmer's reference - Quickref.org launches
Message-Id: <slrnefrtg1.33r.tadmc@magna.augustmail.com>

Robby Walker <robby.walker@gmail.com> wrote:
> Hi Tad,
> 
> The ultimate purpose of the site is to make 


   money from advertising.


> a quicker way to access all
> of this information - 


But a website is NOT quicker than my filesystem!


> whether or not you have local copies.  


Your website will never be quicker than my filesystem, so whether
or not I have local copies IS germane to the utility of your website.

And we (here in the Perl newsgroup) _all_ have local copies of the
perl docs, they are part of a normal install.


> Soon I'll
> be adding a full CPAN modules list and more to the site.  If there's
> content you'd like to see posted I'm very open to feedback.


Spam, multiposting, top-posting and advertising from you. Hmmmm...

I don't feel compelled to visit, given this reputation that you've
built for yourself. Good luck with it though.




[ snip TOFU ]

-- 
    Tad McClellan                          SGML consulting
    tadmc@augustmail.com                   Perl programming
    Fort Worth, Texas


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

Date: Wed, 06 Sep 2006 04:39:23 GMT
From: "Jürgen Exner" <jurgenex@hotmail.com>
Subject: Re: Ultimate programmer's reference - Quickref.org launches
Message-Id: <%hsLg.2282$xh4.89@trnddc04>

Robby Walker wrote:
> The ultimate purpose of the site is to make a quicker way to access
> all of this information

How could anything on the WWW be faster than information on your own local 
HD? If you've solved that problem, then you really got something 
interesting.

> - whether or not you have local copies.  Soon

If you are programming Perl then you have a local copy. It comes with Perl 
and is installed with Perl and is freely available to you even without a 
connection to the Internet. Can your system beat that?

> I'll be adding a full CPAN modules list and more to the site.  If

Wow, really? Unfortunately I already found a list at http://cpan.org.

> there's content you'd like to see posted I'm very open to feedback.

What about "spending your time on something useful"?

jue 




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

Date: 5 Sep 2006 15:12:45 -0700
From: "Zaxon" <google.com@zaxon.e4ward.com>
Subject: Re: Win32::GuiTest missing some functions
Message-Id: <1157494365.722373.149990@i3g2000cwc.googlegroups.com>

OK.  I found out what the problem was.  The author has released new
versions of the module as beta releases.  He doesn't want to update
CPAN with anything newer than 1.3.  So to get the bulk of the new
functions, you need to manually locate a newer version, 1.50.5 at the
time of writing, and manually install it.



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

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 V10 Issue 9691
***************************************


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