Re: how to fill in forms of yahoo sign up site

2008-10-04 Thread Randal L. Schwartz
> ""itshardtogetone"" == "itshardtogetone" <[EMAIL PROTECTED]> writes: "itshardtogetone"> I want to have a program to autofill those yahoo signup forms such as this ==> https://edit.yahoo.com/registration?.v=&.intl=sg&new=1&.src=ym&.partner=&.p=&promo=&.last=&.done=http://sg.yahoo.com/ "its

how to fill in forms of yahoo sign up site

2008-10-04 Thread itshardtogetone
Hi, I want to have a program to autofill those yahoo signup forms such as this ==> https://edit.yahoo.com/registration?.v=&.intl=sg&new=1&.src=ym&.partner=&.p=&promo=&.last=&.done=http://sg.yahoo.com/ The names, and other details are saved in a text file. How do I do this? Thanks

extract links from webpage

2008-10-04 Thread Adams Paul
Hello everyone, I am using Win32::IEAutomation and I am able to get the program to go to different web pages with the following and to go to a particular link within a webpage. use Win32::IEAutomation; my $ie =Win32::IEAutomation->new(visible=>1,maximize=>1); $ie->gotoURL('http://www.google.co

RE: cannot locate feature.pm error(solved)

2008-10-04 Thread Twaha Mlwilo
Hello, All managed to solve the problem. I have installed the module from the CPAN. Thank you all for your help! uddd > From: [EMAIL PROTECTED] > To: [EMAIL PROTECTED]; beginners@perl.org > Subject: RE: cannot locate feature.pm error > Date: Sun, 5 Oct 2008 05:54:43 +0200 > > > Jeff, > Thank yo

RE: cannot locate feature.pm error

2008-10-04 Thread Twaha Mlwilo
Jeff, Thank you for your help.Iam new to perl,so I have tried to read CPAN,but didnt get what to do. please,can you help me to provide step by step. here is the message got after trying "install feature.pm" on terminal command Going to write /home/huu/.cpan/Metadata Warning: Cannot install featur

RE: cannot locate feature.pm error

2008-10-04 Thread Jeff Pang
> Message du 04/10/08 21:43 > De : "Twaha Mlwilo" > A : beginners@perl.org > Copie à : > Objet : RE: cannot locate feature.pm error > > > hello all, > sorry, can anyone help me how I can install feature.pm module?.I gues,the > error is because the module is missing. > Thank you gain > > Hi, Yo

Re:Convert ipaddress from cdp table

2008-10-04 Thread Jeff Pang
> Message du 05/10/08 01:53 > De : "Bernard van de Koppel" > A : beginners@perl.org > Copie à : > Objet : Convert ipaddress from cdp table > > > Hi, > > How can I convert the binary form of the ip address returned from the > snmp query below (resolving the ip of a cdp neighbour), to the normal > x.

Convert ipaddress from cdp table

2008-10-04 Thread Bernard van de Koppel
Hi, How can I convert the binary form of the ip address returned from the snmp query below (resolving the ip of a cdp neighbour), to the normal x.x.x.x form. Any help greatly appreciated. Sample prog. my $SNMPSTR = $community . "@" . $ipAddr . ":" . "1"; my @oidInfo = snmpwalk("$SNMPSTR

Re: How to evaluate a raw string?

2008-10-04 Thread Mr. Shawn H. Corey
On Sat, 2008-10-04 at 21:26 +0200, Manfred Lotz wrote: > my $who = "my friend"; > my $w = q(This is \n $who.); #!/usr/bin/perl use strict; use warnings; my $who = "my friend"; my $w = q(This is \n $who.); my $text = ''; eval qq{\$text = "$w";}; die $@ if $@; print "$text\n"; __END__ If you h

RE: cannot locate feature.pm error

2008-10-04 Thread Twaha Mlwilo
hello all, sorry, can anyone help me how I can install feature.pm module?.I gues,the error is because the module is missing. Thank you gain > From: [EMAIL PROTECTED] > To: beginners@perl.org > Subject: cannot locate feature.pm error > Date: Sat, 4 Oct 2008 15:51:19 +0200 > > > Hello all, > I

How to evaluate a raw string?

2008-10-04 Thread Manfred Lotz
Hi all, I like to specify a raw string, like for example $w: my $who = "my friend"; my $w = q(This is \n $who.); Now I want to evaluate that raw string so that the result is a string: This is my friend. eval doesn't seem to help. Actually I want to be able to specify a raw string where at

Re: extracting href parts

2008-10-04 Thread Rob Dixon
Ankur wrote: > > I am trying to develop an app for my website for which i need to get > the name of the Shows from http://tv.yahoo.com/listings. > > If you go over the code you can see that some of the rows have the > shows with hyperlink and others without. How do i get the Hyperlink > and the s

Re: loop question

2008-10-04 Thread Rob Dixon
Clemens Bieg wrote: > > Could someone tell me what I am doing wrong? I want it to iterate over the > lines of "extract", at each line going through all the lines of > "allnumbered", checking if the line number is the same, and, if so, print > out the line from "allnumbered". But with this I am get

Re: How can I execute linux commands on terminal and catch the results?

2008-10-04 Thread Daniel Nascimento
Thanks for all! 2008/10/1 Andrew Smith <[EMAIL PROTECTED]> > Hi Daniel > You were caught by the trailing "\n" as John Krahn pointed out. insert a > chomp $res; after your qx line or put a chomp around the qx statement. > If you were to change your comparison to > if ($res =~ /daniel/){ it would w

Re: loop question

2008-10-04 Thread Mr. Shawn H. Corey
On Sat, 2008-10-04 at 16:09 +0200, Clemens Bieg wrote: > Hello, > > Could someone tell me what I am doing wrong? I want it to iterate over the > lines of "extract", at each line going through all the lines of > "allnumbered", checking if the line number is the same, and, if so, print > out the lin

loop question

2008-10-04 Thread Clemens Bieg
Hello, Could someone tell me what I am doing wrong? I want it to iterate over the lines of "extract", at each line going through all the lines of "allnumbered", checking if the line number is the same, and, if so, print out the line from "allnumbered". But with this I am getting only the first lin

cannot locate feature.pm error

2008-10-04 Thread Twaha Mlwilo
Hello all, Iam new to perl,and just installed the it on the ubuntu 7.04.My first script geting the following error Can't locate feature.pm in @INC (@INC contains: /etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5

Re: after upgrade: glibc detected *** /usr/bin/perl: double free or corruption

2008-10-04 Thread Graham Barr
On Oct 3, 2008, at 8:03 AM, Peter Karman wrote: Peter Daum wrote on 10/03/2008 07:35 AM: Peter Daum wrote: I recently upgraded a system (as far as perl is concerned from 5.8.8 to 5.10.0). Afterwards I ran into a mysterious problem. I could eventually find a workaround, but still don't really u

Re: after upgrade: glibc detected *** /usr/bin/perl: double free or corruption

2008-10-04 Thread Peter Karman
Peter Daum wrote on 10/03/2008 07:35 AM: > Peter Daum wrote: >> I recently upgraded a system (as far as perl is concerned from 5.8.8 >> to 5.10.0). Afterwards I ran into a mysterious problem. I could >> eventually >> find a workaround, but still don't really understand, what is going on. >> >> Aft

Re: after upgrade: glibc detected *** /usr/bin/perl: double free or corruption

2008-10-04 Thread Graham Barr
On Oct 3, 2008, at 10:05 AM, Peter Daum wrote: Anyway, I suspect the issue is todo with calling s/// on the element of a tied hash. See if this reproduces the issue. { package Foo; use Tie::Hash; use base qw(Tie::StdHash); sub new { my $proto = shift; my $inner = bless

extracting href parts

2008-10-04 Thread Ankur
Hi, I am trying to develop an app for my website for which i need to get the name of the Shows from http://tv.yahoo.com/listings. If you go over the code you can see that some of the rows have the shows with hyperlink and others without. How do i get the Hyperlink and the show's name from the hyp

Re: after upgrade: glibc detected *** /usr/bin/perl: double free or corruption

2008-10-04 Thread Graham Barr
On Oct 3, 2008, at 7:35 AM, Peter Daum wrote: Peter Daum wrote: I recently upgraded a system (as far as perl is concerned from 5.8.8 to 5.10.0). Afterwards I ran into a mysterious problem. I could eventually > find a workaround, but still don't really understand, what is going on. After