[29958] in Perl-Users-Digest

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

Perl-Users Digest, Issue: 1201 Volume: 11

daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Wed Jan 16 09:10:15 2008

Date: Wed, 16 Jan 2008 06:09:11 -0800 (PST)
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, 16 Jan 2008     Volume: 11 Number: 1201

Today's topics:
    Re: Active State perl for windows not working. <invalid@invalid.net>
    Re: Converting milliseconds to seconds <hjp-usenet2@hjp.at>
    Re: Converting milliseconds to seconds <hjp-usenet2@hjp.at>
        In perl 5.10, is $needle ~~ @haystack binary search? <g_m@remove-comcast.net>
    Re: In perl 5.10, is $needle ~~ @haystack binary search <g_m@remove-comcast.net>
    Re: In perl 5.10, is $needle ~~ @haystack binary search <abigail@abigail.be>
    Re: In perl 5.10, is $needle ~~ @haystack binary search <g_m@remove-comcast.net>
    Re: In perl 5.10, is $needle ~~ @haystack binary search <joost@zeekat.nl>
    Re: In perl 5.10, is $needle ~~ @haystack binary search <abigail@abigail.be>
        new CPAN modules on Wed Jan 16 2008 (Randal Schwartz)
        Problem directing BCP Error to Error file <rajpreetsidhu@gmail.com>
    Re: USEFUL perl SCRIPT: NTP verifier <usenet200712@tobyinkster.co.uk>
    Re: USEFUL perl SCRIPT: NTP verifier <tzz@lifelogs.com>
        Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)

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

Date: Wed, 16 Jan 2008 01:16:07 -0700
From: "Reagan Revision" <invalid@invalid.net>
Subject: Re: Active State perl for windows not working.
Message-Id: <1200470711_6181@sp12lax.superfeed.net>


"John Bokma" <john@castleamber.com> wrote in message 
news:Xns9A2469BFA554Ecastleamber@130.133.1.4...
> "Gerry Ford" <invalid@invalid.net> wrote:
>
>> I disagree that spam, garbage or republicans come from others' Perl
>> bin. Spam comes from England,
>
> If you mean the stuff made by Hormel, that's SPAM(TM).
>
> -- 
> John
>
> http://johnbokma.com/mexit/
Hormel are excellent corporate citizens in southern Minnesota.  And spam 
has, unlike unwanted email, a definite use.  You don't eat spam except ten 
years after you put it in your food storage.  That the supermarkets are 
closed and there's no other food is the reason that it's delicious.  I would 
prefer another name for nuisance information.

-- 

"We are being told that a competent, trustworthy president is someone
who brandishes his religion like a neon sign, loads a gun and goes out
hunting for beautiful winged creatures, and tries to imitate a past
president who, by the way, never shot a bird or felt the need to imitate
anybody."

~~  Patti Davis Is Not Flattered by GOP Candidates' Pale Imitations of
Her Father 



----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----


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

Date: Wed, 16 Jan 2008 12:46:34 +0100
From: "Peter J. Holzer" <hjp-usenet2@hjp.at>
Subject: Re: Converting milliseconds to seconds
Message-Id: <slrnforrkq.1n5.hjp-usenet2@hrunkner.hjp.at>

On 2008-01-15 23:10, Abigail <abigail@abigail.be> wrote:
> Joost Diepenmaat (joost@zeekat.nl) wrote on VCCL September MCMXCIII in
><URL:news:87r6giem64.fsf@zeekat.nl>:
>||  Abigail <abigail@abigail.be> writes:

[rounding FP numbers with sprintf]

>|| > But in this case, we're using "%d".
>||  
>||  Heh. I always use %1.0f :-)
>
>
> But that doesn't always give the same result as %d:
>
>     $ perl -wE 'printf "%d\n" => -0.1'
>     0
>     $ perl -wE 'printf "%1.0f\n" => -0.1'
>     -0

More importantly:

% perl -e 'printf "%.0f\n", 1E10'
10000000000
% perl -e 'printf "%d\n", 1E10'  
-1

So, I think I'll stay with %.0f.

	hp



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

Date: Wed, 16 Jan 2008 13:08:03 +0100
From: "Peter J. Holzer" <hjp-usenet2@hjp.at>
Subject: Re: Converting milliseconds to seconds
Message-Id: <slrnforst8.1n5.hjp-usenet2@hrunkner.hjp.at>

On 2008-01-16 01:05, Ilya Zakharevich <nospam-abuse@ilyaz.org> wrote:
> [A complimentary Cc of this posting was NOT [per weedlist] sent to
> Peter J. Holzer
><hjp-usenet2@hjp.at>], who wrote in article <slrnfoph3u.mma.hjp-usenet2@hrunkner.hjp.at>:
>> But I think Ilya is a barking up the wrong tree here:
>
> Well, at least it was not the intent.  Sorry if my writing lead you to
> such a conclusion...
>
>> >>> >This is just a reflection of a sorry state of Perl documentation.
>> >>> >There is NO OTHER WAY to round-to-0 but to use int().  
>
> I reread what I wrote, and I STILL see no ambiguity in my original
> post; what I objected to is "two", not "one", in the following fragment
>
>     int     Returns the integer portion of EXPR.  If EXPR is
>             omitted, uses $_.  You should not use this function
>             for rounding: one because it truncates towards 0,
>             and two because machine representations of floating
>             point numbers can sometimes produce counterintuitive
>             results.

Right. I agree completely that "two because machine representations ..."
is not a valid reason for "don't use this function for rounding". 

(And I also reread your post again and I still don't see that you were
refering to that point specifically - but lets not start quibbling about
that. You got your point across and if it took two postings instead of
one to make yourself clear, that's not a problem (I wish I could always
make myself understood in two postings - sometimes an entire thread
doesn't seem to be sufficient).)

	hp


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

Date: Wed, 16 Jan 2008 03:42:25 -0500
From: "~greg" <g_m@remove-comcast.net>
Subject: In perl 5.10, is $needle ~~ @haystack binary search?
Message-Id: <lbqdnWrHTvnBXBDanZ2dnUVZ_ternZ2d@comcast.com>

thanks,
~greg 




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

Date: Wed, 16 Jan 2008 03:48:58 -0500
From: "~greg" <g_m@remove-comcast.net>
Subject: Re: In perl 5.10, is $needle ~~ @haystack binary search?
Message-Id: <5fudnZOvQeB0XxDanZ2dnUVZ_ualnZ2d@comcast.com>

scratch that, it was a dumb question -
@haystack would have to be sorted.
and I don't expect ~~ to be *that* smart to know when it is,
(or else write $needle ~~ sort @haystack ?)

anyway, my real question is,
just how efficient is ~~?




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

Date: 16 Jan 2008 10:41:00 GMT
From: Abigail <abigail@abigail.be>
Subject: Re: In perl 5.10, is $needle ~~ @haystack binary search?
Message-Id: <slrnfornpr.t74.abigail@alexandra.abigail.be>

                                        _
~greg (g_m@remove-comcast.net) wrote on VCCLI September MCMXCIII in
<URL:news:5fudnZOvQeB0XxDanZ2dnUVZ_ualnZ2d@comcast.com>:
??  scratch that, it was a dumb question -
??  @haystack would have to be sorted.
??  and I don't expect ~~ to be *that* smart to know when it is,
??  (or else write $needle ~~ sort @haystack ?)
??  
??  anyway, my real question is,
??  just how efficient is ~~?


What do you mean by "how efficient"? Do you want a number? 
If I tell you its efficiency is 17, does that tell you 
anything?


Abigail
-- 
echo "==== ======= ==== ======"|perl -pes/=/J/|perl -pes/==/us/|perl -pes/=/t/\
 |perl -pes/=/A/|perl -pes/=/n/|perl -pes/=/o/|perl -pes/==/th/|perl -pes/=/e/\
 |perl -pes/=/r/|perl -pes/=/P/|perl -pes/=/e/|perl -pes/==/rl/|perl -pes/=/H/\
 |perl -pes/=/a/|perl -pes/=/c/|perl -pes/=/k/|perl -pes/==/er/|perl -pes/=/./;


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

Date: Wed, 16 Jan 2008 07:10:24 -0500
From: "~greg" <g_m@remove-comcast.net>
Subject: Re: In perl 5.10, is $needle ~~ @haystack binary search?
Message-Id: <DMSdnWkFTLWPbxDanZ2dnUVZ_u-unZ2d@comcast.com>


> What do you mean by "how efficient"? Do you want a number?
> If I tell you its efficiency is 17, does that tell you
> anything?
>
>
> Abigail



big-O will do.




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

Date: Wed, 16 Jan 2008 14:16:09 +0100
From: Joost Diepenmaat <joost@zeekat.nl>
Subject: Re: In perl 5.10, is $needle ~~ @haystack binary search?
Message-Id: <87lk6psyg6.fsf@zeekat.nl>

"~greg" <g_m@remove-comcast.net> writes:

> thanks,
> ~greg 

No. It can't be, since @haystack is not guaranteed to be sorted.

perlop says:

for $a ~~ $b and $b ~~ $a:

$a      $b        Type of Match Implied    Matching Code
======  =====     =====================    =============
Array   Num       array contains number    grep $_ == $b, @$a
Array   Any       array contains string    grep $_ eq $b, @$a

Joost.




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

Date: 16 Jan 2008 13:51:23 GMT
From: Abigail <abigail@abigail.be>
Subject: Re: In perl 5.10, is $needle ~~ @haystack binary search?
Message-Id: <slrnfos2ur.t74.abigail@alexandra.abigail.be>

                                        _
~greg (g_m@remove-comcast.net) wrote on VCCLI September MCMXCIII in
<URL:news:DMSdnWkFTLWPbxDanZ2dnUVZ_u-unZ2d@comcast.com>:
 ..  
 .. > What do you mean by "how efficient"? Do you want a number?
 .. > If I tell you its efficiency is 17, does that tell you
 .. > anything?
 .. >
 .. >
 .. > Abigail
 ..  
 ..  big-O will do.


O (N) where N is the size of @haystack, with the assumption that
comparing two scalar can be done in constant time.

This is optimal.


But does this help you? $needle ~~ @haystack might first sleep for a
week or so, and you wouldn't notice that in "big-O".


Abigail
-- 
package Just_another_Perl_Hacker; sub print {($_=$_[0])=~ s/_/ /g;
                                      print } sub __PACKAGE__ { &
                                      print (     __PACKAGE__)} &
                                                  __PACKAGE__
                                            (                )


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

Date: Wed, 16 Jan 2008 05:42:15 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Wed Jan 16 2008
Message-Id: <Juq2IF.4ys@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.

Acme-BabyEater-0.01
http://search.cpan.org/~zoffix/Acme-BabyEater-0.01/
Baby eating has never been easier! 
----
Acme-DateTime-Duration-Numeric-0.01
http://search.cpan.org/~miyagawa/Acme-DateTime-Duration-Numeric-0.01/
ActiveSupport equivalent to Perl numeric variables 
----
Acme-DateTime-Duration-Numeric-0.02
http://search.cpan.org/~miyagawa/Acme-DateTime-Duration-Numeric-0.02/
ActiveSupport equivalent to Perl numeric variables 
----
Acme-DateTime-Duration-Numeric-0.03
http://search.cpan.org/~miyagawa/Acme-DateTime-Duration-Numeric-0.03/
ActiveSupport equivalent to Perl numeric variables 
----
Acme-Text-Rhombus-0.18
http://search.cpan.org/~schubiger/Acme-Text-Rhombus-0.18/
Draw an alphanumerical rhombus 
----
App-TemplateServer-0.02
http://search.cpan.org/~jrockway/App-TemplateServer-0.02/
application to serve processed templates 
----
App-TemplateServer-Provider-HTML-Template-0.01
http://search.cpan.org/~jrockway/App-TemplateServer-Provider-HTML-Template-0.01/
----
App-TemplateServer-Provider-Mason-0.01
http://search.cpan.org/~jrockway/App-TemplateServer-Provider-Mason-0.01/
serve Mason templates with App::TemplateServer 
----
App-TemplateServer-Provider-TD-0.01
http://search.cpan.org/~jrockway/App-TemplateServer-Provider-TD-0.01/
use Template::Declare templates with App::TemplateServer 
----
Audio-Play-MPlayer-0.01
http://search.cpan.org/~mbarbon/Audio-Play-MPlayer-0.01/
----
Cache-Historical-0.01
http://search.cpan.org/~mschilli/Cache-Historical-0.01/
Cache historical values 
----
Catalyst-Plugin-Authentication-AuthTkt-0.01
http://search.cpan.org/~karman/Catalyst-Plugin-Authentication-AuthTkt-0.01/
shim for Apache::AuthTkt 
----
Cisco-Hash-0.02
http://search.cpan.org/~infernale/Cisco-Hash-0.02/
De- and encrypts Cisco type 7 hashes 
----
Context-Preserve-0.01
http://search.cpan.org/~jrockway/Context-Preserve-0.01/
run code after a subroutine call, preserving the context the subroutine would have seen if it were the last statement in the caller 
----
DBIx-Perlish-0.36
http://search.cpan.org/~gruber/DBIx-Perlish-0.36/
a perlish interface to SQL databases 
----
DBIx-SearchBuilder-1.51
http://search.cpan.org/~ruz/DBIx-SearchBuilder-1.51/
Encapsulate SQL queries and rows in simple perl objects 
----
Data-Compare-1.18
http://search.cpan.org/~dcantrell/Data-Compare-1.18/
compare perl data structures 
----
Data-Visitor-0.15
http://search.cpan.org/~nuffin/Data-Visitor-0.15/
Visitor style traversal of Perl data structures 
----
DateTime-Format-Natural-0.66
http://search.cpan.org/~schubiger/DateTime-Format-Natural-0.66/
Create machine readable date/time with natural parsing logic 
----
Devel-FindBlessedRefs-1.0.2
http://search.cpan.org/~jettero/Devel-FindBlessedRefs-1.0.2/
find all refs blessed under a package 
----
Devel-System-Trace-0.0.1
http://search.cpan.org/~sukria/Devel-System-Trace-0.0.1/
----
DirDB-0.12
http://search.cpan.org/~davidnico/DirDB-0.12/
use a directory as a persistence back end for (multi-level) (blessed) hashes (that may contain array references) (and can be advisorialy locked) 
----
Enbugger-1.03
http://search.cpan.org/~jjore/Enbugger-1.03/
Enables the debugger at runtime. 
----
Event-1.10
http://search.cpan.org/~jprit/Event-1.10/
Event loop processing 
----
Fukurama-Class-0.025
http://search.cpan.org/~tobiwan/Fukurama-Class-0.025/
Pragma to extend the Perl-OO (in native Perl) 
----
Gtk2-Ex-NoShrink-2
http://search.cpan.org/~kryde/Gtk2-Ex-NoShrink-2/
non-shrinking container widget 
----
HTML-Tested-JavaScript-0.11
http://search.cpan.org/~bosu/HTML-Tested-JavaScript-0.11/
JavaScript enabled HTML::Tested widgets. 
----
HTTP-MobileAgent-Plugin-CIDR-0.0.1
http://search.cpan.org/~kokogiko/HTTP-MobileAgent-Plugin-CIDR-0.0.1/
Add IP address check method to HTTP::MobileAgent 
----
HTTP-MobileAgent-Plugin-ID-0.0.2
http://search.cpan.org/~kokogiko/HTTP-MobileAgent-Plugin-ID-0.0.2/
Add ID fuctions to HTTP::MobileAgent 
----
HTTP-MobileAgent-Plugin-Location-0.0.2
http://search.cpan.org/~kokogiko/HTTP-MobileAgent-Plugin-Location-0.0.2/
Add location fuctions to HTTP::MobileAgent 
----
HTTP-MobileAgent-Plugin-Locator-0.01
http://search.cpan.org/~kurihara/HTTP-MobileAgent-Plugin-Locator-0.01/
Handling mobile location information plugin for HTTP::MobileAgent 
----
HTTP-OAI-3.20
http://search.cpan.org/~timbrody/HTTP-OAI-3.20/
API for the OAI-PMH 
----
HTTP-Server-Simple-0.28
http://search.cpan.org/~jesse/HTTP-Server-Simple-0.28/
Lightweight HTTP server 
----
LEOCHARRE-Class-1.05
http://search.cpan.org/~leocharre/LEOCHARRE-Class-1.05/
my class bases 
----
LEOCHARRE-Database-1.14
http://search.cpan.org/~leocharre/LEOCHARRE-Database-1.14/
common database methods for oo 
----
LEOCHARRE-Database-1.15
http://search.cpan.org/~leocharre/LEOCHARRE-Database-1.15/
common database methods for oo 
----
Language-Befunge-Vector-XS-0.0.1
http://search.cpan.org/~jquelin/Language-Befunge-Vector-XS-0.0.1/
an opaque, N-dimensional vector class. 
----
Language-Befunge-Vector-XS-0.1.0
http://search.cpan.org/~jquelin/Language-Befunge-Vector-XS-0.1.0/
an opaque, N-dimensional vector class. 
----
Language-Befunge-Vector-XS-0.1.1
http://search.cpan.org/~jquelin/Language-Befunge-Vector-XS-0.1.1/
an opaque, N-dimensional vector class. 
----
Language-Befunge-Vector-XS-0.1.2
http://search.cpan.org/~jquelin/Language-Befunge-Vector-XS-0.1.2/
an opaque, N-dimensional vector class. 
----
Lingua-JA-Romanize-Japanese-0.22
http://search.cpan.org/~kawasaki/Lingua-JA-Romanize-Japanese-0.22/
Romanization of Japanese language 
----
Lingua-ZH-Romanize-Pinyin-0.22
http://search.cpan.org/~kawasaki/Lingua-ZH-Romanize-Pinyin-0.22/
Romanization of Standard Chinese language 
----
Mail-Box-2.080
http://search.cpan.org/~markov/Mail-Box-2.080/
manage a mailbox, a folder with messages 
----
Mango-0.01000_09
http://search.cpan.org/~claco/Mango-0.01000_09/
An ecommerce solution using Catalyst, Handel and DBIx::Class 
----
Math-Complex-1.45
http://search.cpan.org/~jhi/Math-Complex-1.45/
complex numbers and associated mathematical functions 
----
Math-Wavelet-Haar-0.02
http://search.cpan.org/~simcop/Math-Wavelet-Haar-0.02/
Perl extension for transforming data with the Haar Wavelet 
----
Memcached-libmemcached-0.1301
http://search.cpan.org/~timb/Memcached-libmemcached-0.1301/
Thin fast interface to the libmemcached client API 
----
Memcached-libmemcached-0.1303
http://search.cpan.org/~timb/Memcached-libmemcached-0.1303/
Thin fast full interface to the libmemcached client API 
----
Module-Pragma-0.01
http://search.cpan.org/~gfuji/Module-Pragma-0.01/
Support for implementation of pragmas 
----
MooseX-App-Cmd-0.01
http://search.cpan.org/~nuffin/MooseX-App-Cmd-0.01/
Mashes up MooseX::Getopt and App::Cmd. 
----
Net-Hiveminder-0.02
http://search.cpan.org/~sartak/Net-Hiveminder-0.02/
Perl interface to hiveminder.com 
----
Net-Jabber-Bot-2.0.6
http://search.cpan.org/~toddr/Net-Jabber-Bot-2.0.6/
Automated Bot creation with safeties 
----
Oxford-Calendar-2.0
http://search.cpan.org/~dom/Oxford-Calendar-2.0/
University of Oxford calendar conversion routines 
----
POE-Component-Q4M-0.00001
http://search.cpan.org/~dmaki/POE-Component-Q4M-0.00001/
Access Q4M From POE 
----
POE-Component-Server-HTTP-KeepAlive-0.0300
http://search.cpan.org/~gwyn/POE-Component-Server-HTTP-KeepAlive-0.0300/
HTTP keep-alive support 
----
POE-Component-Server-SimpleSMTP-1.08
http://search.cpan.org/~bingos/POE-Component-Server-SimpleSMTP-1.08/
A simple to use POE SMTP Server. 
----
POE-Component-WWW-YouTube-VideoURI-0.02
http://search.cpan.org/~zoffix/POE-Component-WWW-YouTube-VideoURI-0.02/
Non-blocking POE wrapper around WWW::YouTube::VideoURI with download abilities. 
----
POE-Filter-Stomp-0.02
http://search.cpan.org/~kesteb/POE-Filter-Stomp-0.02/
Perl extension for the POE Environment 
----
POEIKCdaemon-0.00_01
http://search.cpan.org/~suzuki/POEIKCdaemon-0.00_01/
POE IKC daemon 
----
Parse-Marpa-0.001_071
http://search.cpan.org/~jkegl/Parse-Marpa-0.001_071/
(pre-Alpha) Jay Earley's general parsing algorithm, with LR(0) precomputation 
----
PathTools-3.26_01
http://search.cpan.org/~kwilliams/PathTools-3.26_01/
----
Prompt-ReadKey-0.01
http://search.cpan.org/~nuffin/Prompt-ReadKey-0.01/
Darcs style single readkey option prompt. 
----
Queue-Beanstalk-0.02
http://search.cpan.org/~lunatic/Queue-Beanstalk-0.02/
Client library for the beanstalkd server 
----
Router-Statistics-0.99_983
http://search.cpan.org/~shamrock/Router-Statistics-0.99_983/
Router Statistics and Information Collection 
----
STAFService-0.22
http://search.cpan.org/~semuelf/STAFService-0.22/
Perl extension for writing STAF Services easily. 
----
Spreadsheet-Engine-0.09
http://search.cpan.org/~tmtm/Spreadsheet-Engine-0.09/
Core calculation engine for a spreadsheet 
----
Spreadsheet-Engine-0.10
http://search.cpan.org/~tmtm/Spreadsheet-Engine-0.10/
Core calculation engine for a spreadsheet 
----
Term-Menus-1.30
http://search.cpan.org/~reedfish/Term-Menus-1.30/
Create Powerful Terminal, Console and CMD Enviroment Menus 
----
Term-Menus-1.31
http://search.cpan.org/~reedfish/Term-Menus-1.31/
Create Powerful Terminal, Console and CMD Enviroment Menus 
----
Test-Aggregate-0.06
http://search.cpan.org/~ovid/Test-Aggregate-0.06/
Aggregate *.t tests to make them run faster. 
----
Test-Class-0.28
http://search.cpan.org/~adie/Test-Class-0.28/
Easily create test classes in an xUnit/JUnit style 
----
Tie-CArray-0.13
http://search.cpan.org/~rurban/Tie-CArray-0.13/
Space-efficient, typed, external C Arrays (Alpha) 
----
Unicode-Japanese-0.44_01
http://search.cpan.org/~hio/Unicode-Japanese-0.44_01/
Convert encoding of japanese text 1 
----
Verilog-Perl-3.022
http://search.cpan.org/~wsnyder/Verilog-Perl-3.022/
----
XML-FeedPP-0.34
http://search.cpan.org/~kawasaki/XML-FeedPP-0.34/
Parse/write/merge/edit RSS/RDF/Atom syndication feeds 
----
Yahoo-Lifestyle-0.1
http://search.cpan.org/~hcchien/Yahoo-Lifestyle-0.1/
is a simple interface for Yahoo! Taiwan Lifestyle open APIs. And you will need the Yahoo::BBAuth for some authentication APIs. Before you use that, you have to register a appid and secret for APIs req
----
autobox-DateTime-Duration-0.01
http://search.cpan.org/~miyagawa/autobox-DateTime-Duration-0.01/
ActiveSupport equivalent to Perl numeric variables 
----
autobox-DateTime-Duration-0.02
http://search.cpan.org/~miyagawa/autobox-DateTime-Duration-0.02/
ActiveSupport equivalent to Perl numeric variables 
----
parrot-0.5.2
http://search.cpan.org/~rgrjr/parrot-0.5.2/
----
perfSONAR_PS-Base-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Base-v0.01/
----
perfSONAR_PS-Client-Echo-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-Echo-v0.01/
A module that provides methods for interacting with perfSONAR Echo services. 
----
perfSONAR_PS-Client-LS-Remote-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-LS-Remote-v0.01/
A module that provides a client API for an LS 
----
perfSONAR_PS-Client-Status-MA-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-Status-MA-v0.01/
A module that provides methods for interacting with Status MA servers. 
----
perfSONAR_PS-Client-Status-SQL-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-Status-SQL-v0.01/
A module that provides methods for interacting with a Status MA database directly. 
----
perfSONAR_PS-Client-Topology-MA-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-Topology-MA-v0.01/
A module that provides methods for interacting with Topology MA servers. 
----
perfSONAR_PS-Client-Topology-XMLDB-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-Topology-XMLDB-v0.01/
A module that provides methods for interacting with a Topology MA database directly. 
----
perfSONAR_PS-Collectors-Daemon-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Collectors-Daemon-v0.01/
----
perfSONAR_PS-Collectors-LinkStatus-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Collectors-LinkStatus-v0.01/
A module that will collect link status information and store the results into a Link Status MA. 
----
perfSONAR_PS-DB-File-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-DB-File-v0.01/
A module that provides methods for adding 'database like' functions to files that contain XML markup. 
----
perfSONAR_PS-DB-RRD-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-DB-RRD-v0.01/
A module that provides methods for dealing with rrd files through the RRDp perl module. 
----
perfSONAR_PS-DB-SQL-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-DB-SQL-v0.01/
A module that provides methods for dealing with common SQL databases. 
----
perfSONAR_PS-DB-XMLDB-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-DB-XMLDB-v0.01/
A module that provides methods for dealing with the Sleepycat [Oracle] XML database. 
----
perfSONAR_PS-Services-LS-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-LS-v0.01/
----
perfSONAR_PS-Services-MA-Base-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-MA-Base-v0.01/
----
perfSONAR_PS-Services-MA-SNMP-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-MA-SNMP-v0.01/
----
perfSONAR_PS-Services-MA-Status-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-MA-Status-v0.01/
A module that provides methods for the Status MA. 
----
perfSONAR_PS-Services-MA-Topology-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-MA-Topology-v0.01/
A module that provides methods for the Topology MA. 
----
perfSONAR_PS-Status-Common-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Status-Common-v0.01/
A module that provides common methods for Link Status clients and services within the perfSONAR-PS framework. 
----
perfSONAR_PS-Topology-Common-v0.01
http://search.cpan.org/~perfsonar/perfSONAR_PS-Topology-Common-v0.01/
A module that provides various utility functions for Topology structures. 


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: Wed, 16 Jan 2008 03:20:15 -0800 (PST)
From: Rajpreet <rajpreetsidhu@gmail.com>
Subject: Problem directing BCP Error to Error file
Message-Id: <b24d11cb-5c7d-4532-9809-ab737876e1bc@f10g2000hsf.googlegroups.com>

Greetings,

I am trying to bcp in data to a table which is in different server.
Though the bcp in works fine but the error file is not being created
and rejected records are not being directyd to  the error file. Query
looks like:

bcp <db>..test_b_plan_cp in /home/file_out.txt -c -t '|' -S *****-U
****** -P ******-I /home/bcp2db_sql.ini  -e /home/bcp2db.error.

Can someone please help?

TIA.

Regards,
Rajpreet


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

Date: Wed, 16 Jan 2008 09:54:20 +0000
From: Toby A Inkster <usenet200712@tobyinkster.co.uk>
Subject: Re: USEFUL perl SCRIPT: NTP verifier
Message-Id: <cr0165-9lc.ln1@ophelia.g5n.co.uk>

Peter J. Holzer wrote:

> my $roundtrip_delay = ($T4 - $T1) - ($T2 - $T2);

But $T2 - $T2 = 0!

-- 
Toby A Inkster BSc (Hons) ARCS
[Geek of HTML/SQL/Perl/PHP/Python/Apache/Linux]
[OS: Linux 2.6.17.14-mm-desktop-9mdvsmp, up 16 days, 21:06.]

                      Gnocchi all'Amatriciana al Forno
      http://tobyinkster.co.uk/blog/2008/01/15/gnocchi-allamatriciana/


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

Date: Wed, 16 Jan 2008 07:34:01 -0600
From: Ted Zlatanov <tzz@lifelogs.com>
Subject: Re: USEFUL perl SCRIPT: NTP verifier
Message-Id: <86abn53nee.fsf@lifelogs.com>

On Wed, 16 Jan 2008 09:54:20 +0000 Toby A Inkster <usenet200712@tobyinkster.co.uk> wrote: 

TAI> Peter J. Holzer wrote:
>> my $roundtrip_delay = ($T4 - $T1) - ($T2 - $T2);

TAI> But $T2 - $T2 = 0!

Not if you pick sufficiently large values of $T2 :)

(seriously, there are at least a few places this is not true in Perl,
e.g. tied scalars or IEEE NaN/Infinity math)

Ted


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

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


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