Re: configuring Net::SMTP

2023-07-09 Thread Bob Kardell via beginners
because it was only a mailbox inside of hostgator. Just a thought, Bob > On Jul 8, 2023, at 8:52 PM, Claude Brown via beginners > wrote: > > Hi Rick, > > We use Net::SMTP to send emails via SendGrid. They require a user/pass > authentication over SSL and I wonder if

Re: Can the Perl module Date::Calc be added to Cygwin please?

2016-02-28 Thread Bob Goolsby
; -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://learn.perl.org/ > > > -- Bob Goolsby bob.gool...@gmail.com

Re: perl certification

2015-05-20 Thread Bob goolsby
cally. >> > >> > Please reply to list if it's a mailing list post - >> http://shlom.in/reply . >> > >> > -- >> > To unsubscribe, e-mail: beginners-unsubscr...@perl.org >> > For additional commands, e-mail: beginners-h...@perl.org >> > http://learn.perl.org/ >> > >> > >> >> -- >> To unsubscribe, e-mail: beginners-unsubscr...@perl.org >> For additional commands, e-mail: beginners-h...@perl.org >> http://learn.perl.org/ >> >> >> > > > -- > Regards, > Chankey Pathak <http://www.linuxstall.com> > -- Bob Goolsby bob.gool...@gmail.com

Re: Can u suggest me the best ide for perl

2015-03-13 Thread Bob goolsby
-- > Your talent is God's gift to you. What you do with it is your gift back to > God. > > ------ > > -- Bob Goolsby bob.gool...@gmail.com

Re: Multi-line `find` commands

2015-01-01 Thread Bob goolsby
owever my searches have turned up nothing. Using returns, commas, > backslashes, or concatenation breaks the find. Does anyone know if this is > doable? > > Thanks, > Frank > SurfShopCART > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://learn.perl.org/ > > > -- Bob Goolsby bob.gool...@gmail.com

Re: script to match a valid email id

2014-07-10 Thread Bob goolsby
gt; > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > > For additional commands, e-mail: beginners-h...@perl.org > > http://learn.perl.org/ > > > > > -- Bob Goolsby bob.gool...@gmail.com

Impossible to install Perl modules

2014-07-08 Thread Bob Sauvage
13   Could you help me please ?   Thanks,    Bob ! -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Search one character against one string

2014-03-12 Thread Bob goolsby
array] > > However, if I want to do the above task multiple times, meaning I've to > convert string into array every time, pain in the ass... > > --- > Regards ! > > Alex Chiang > -- Bob Goolsby bob.gool...@gmail.com

Re: hello from a newbie

2013-10-26 Thread Bob goolsby
ooks out there, for a newbie to perl and > for someone returning to programming after a gap of more than 7 years. > > thanks, > > ~mayuresh > > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://learn.perl.org/ > > > -- Bob Goolsby bob.gool...@gmail.com

Re: Any alternative for substr() function

2013-04-10 Thread Bob goolsby
stuff is irrelevant. > > > > Jenda > > = je...@krynicky.cz === http://Jenda.Krynicky.cz = > > When it comes to wine, women and song, wizards are allowed > > to get drunk and croon as much as they like. > > -- Terry Pratchett in Sourcery > > > > > > -- > > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > > For additional commands, e-mail: beginners-h...@perl.org > > http://learn.perl.org/ > > > > > > > -- Bob Goolsby bob.gool...@gmail.com

RE: obfuscating code

2013-02-13 Thread Bob McConnell
<http://lxer.com/module/newswire/ext_link.php?rid=180777> bm > -Original Message- > From: Octavian Rasnita [mailto:orasn...@gmail.com] > Sent: Wednesday, February 13, 2013 12:53 PM > To: Bob McConnell; Perl Beginners > Subject: Re: obfuscating code > > From: "Bob Mc

RE: obfuscating code

2013-02-12 Thread Bob McConnell
only distribute the output from the compiler. Even then there may be de-compilers or disassemblers that can reconstruct much of your source in readable form. Bob McConnell > -Original Message- > From: jbiskofski [mailto:jbiskof...@gmail.com] > Sent: Tuesday, February 12, 201

Re: Help on perl core dump

2013-01-28 Thread Bob goolsby
ql.so...done. >> >> Loaded symbols for /usr/local/lib64/perl5/auto/DBD/mysql/mysql.so >> >> Reading symbols from /usr/local/mysql/lib/libmysqlclient.so.18...done. >> >> Loaded symbols for /usr/local/mysql/lib/libmysqlclient.so.18 >> >> Reading symbols from /lib64/

RE: Line-oriented socket I/O using select()

2013-01-14 Thread Bob McConnell
ffers. There may be other options to simplify this. One popular variation is to precede each message with a two byte length value. Normally this will be a 16 bit integer in network byte order. You read the two bytes, then do another read for the number of bytes indicated by them. You still hav

Re: How to display UTF-8 output to command shell in Win7?

2012-12-02 Thread boB Stepp
On Sun, Dec 2, 2012 at 6:49 PM, boB Stepp wrote: >> >> system("chcp 65001>nil");# this works for me Using OS Win 7 32bits >> >>> > binmode STDOUT, ":encoding(UTF-8)"; >>> > print "\x{03B1}\x{03C9}\n"; > > Thi

Re: How to display UTF-8 output to command shell in Win7?

2012-12-02 Thread boB Stepp
ipts. But at home I have decided I might as well start doing a systematic study of Perl, both to help me at work and for fun at home. So it would be nice if I could write portable code that would work both places. Any comments? boB -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: How to display UTF-8 output to command shell in Win7?

2012-12-01 Thread boB Stepp
On Sat, Dec 1, 2012 at 11:58 PM, Charles DeRykus wrote: > On Sat, Dec 1, 2012 at 8:50 PM, boB Stepp wrote: >> >> What I would like to do is make chcp 65001 the default behavior of the >> command console without having to either retype it manually or place >> it in eac

Re: How to display UTF-8 output to command shell in Win7?

2012-12-01 Thread boB Stepp
Hey Tim, On Sat, Dec 1, 2012 at 10:34 PM, timothy adigun <2teezp...@gmail.com> wrote: > Hi bOB, > Please check my comments below > > It is very possible, just in 3 steps. > > Here is what you had always wanted to do: > 1. Open up your command Prompt, then > >

Re: How to display UTF-8 output to command shell in Win7?

2012-12-01 Thread boB Stepp
to partially achieve what I was looking for. boB -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: How to display UTF-8 output to command shell in Win7?

2012-12-01 Thread boB Stepp
On Thu, Nov 29, 2012 at 7:00 AM, timothy adigun <2teezp...@gmail.com> wrote: > Hi, > Please check my comments below: > > >> > system "chcp 65001"; > > > binmode STDOUT,':encoding(UTF-8)';## add this This suppresses the wide cha

How to display UTF-8 output to command shell in Win7?

2012-11-28 Thread boB Stepp
and to turn on UTF-8.) Thanks! boB P.S.: It just occurred to me that there is an extra blank line just above "Press any key to continue...". Why is this? I was not expecting this to happen. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail

Re: use utf-8 results in error

2012-11-22 Thread boB Stepp
On Thu, Nov 22, 2012 at 11:54 PM, ranveer raghuwanshi wrote: > Its not utf-8 its utf8 without hyphen(-) > Thank you, Ranveer! Perhaps I should not do my Perl studies as the wee morning hours (here) approach. The obvious once again escapes me... boB -- To unsubscribe, e-mail: beginners-un

use utf-8 results in error

2012-11-22 Thread boB Stepp
is available in E:\Dwimperl\perl\lib Googling the part of the error message that does not contain my personal file paths has not led me to anything that I find helpful. Thoughts? Thanks! boB -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-

Re: Cannot install Tk from CPAN using Strawberry Perl 5.16

2012-11-19 Thread boB Stepp
On Sun, Nov 18, 2012 at 9:19 PM, boB Stepp wrote: > I am running Win7Pro-64bit and using Strawberry Perl 64 bit version > 5.16. When I attempt to use "install Tk" from Strawberry Perl's > "cpan>" prompt I get two instances of "perl.exe not responding"

Cannot install Tk from CPAN using Strawberry Perl 5.16

2012-11-18 Thread boB Stepp
without force Stopping: 'install' failed for 'Tk'. Failed during this command: SREZIC/Tk-804.030.tar.gz : make_test NO cpan> I have been trying to search online for problems installing Tk with Strawberry Perl 5.16, but have not yet found anything

Re: Using say in Padre 0.94

2012-11-16 Thread boB Stepp
On Fri, Nov 16, 2012 at 12:44 PM, Brandon McCaig wrote: > On Fri, Nov 16, 2012 at 10:10:14AM -0600, boB Stepp wrote: >> However, I am still puzzled why if I run the script from the >> command line (not Padre) with Strawberry 5.16, say works >> without a hitch without the

Re: Using say in Padre 0.94

2012-11-16 Thread boB Stepp
ry 5.16, say works without a hitch without the need for a use pragma. boB -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Using say in Padre 0.94

2012-11-15 Thread boB Stepp
first version from the Windows command line (which is using Strawberry Perl 5.16 instead of Padre's 5.14), using c:\perl helloworld.plx I get no error messages and all works well. Why does Padre require the insertion of the use pragma? Thanks! boB Stepp -- To unsubscribe, e-mail: beginners-

XML::Twig installation fails

2012-10-25 Thread Bob McConnell
- I found descriptions of this problem by searching on Google, but nothing to help me resolve it. Bob McConnell This message and any attachments are intended only for the use of the addressee and may contain information that is privileged and confidential. If t

RE: Is comp.lang.perl dead?

2012-10-23 Thread Bob McConnell
comp.sources.* groups have been superseded by live SCM servers and sites like Sourceforge, many of the discussion groups are still very active. I am using Astraweb <http://astraweb.com/> which has more than four years of retention on most groups. Plans are priced by your choice of bandwidth or volume. Bob McConnell

RE: Learning CPAN

2012-10-05 Thread Bob McConnell
atform. I use Thoth on a Mac. There are lots of > choices. > I use Pan on my Slackware Linux workstations. But I believe Thunderbird will also manage a news feed. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Module deleted from cpan

2012-09-29 Thread Bob goolsby
meo-Simple-0.14.readme >> >> If you're curious about why it was removed from CPAN, you could try >> contacting the author themselves. I would imagine, though, that the >> author decided there were better options out there, and no longer >> wished to mainta

RE: Using different libraries dynamically

2012-09-13 Thread Bob McConnell
clone of the production server as we can make it. This not only makes the automation possible, but it simplifies the build process as well. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

RE: Received ezmlm warning

2012-08-28 Thread Bob McConnell
ded too many times and may be the result of a mail loop. A couple of people have looked at it, but have not been able to identify the cause. Bob McConnell

RE: system command not working in different versions

2012-08-09 Thread Bob McConnell
y. The error messages there should point you toward the problem. If it runs, then there has to be a difference in the environments between your login and the user that actually executes the script. The alternative is to wrap it in a script that sends STDERR output to syslog. Bob McConnell -

RE: Multiprocessing script

2012-07-26 Thread Bob McConnell
not in the right order in the logs) you should not worry to much > about the order in which this shows up in the logs. > When you set up multiple processes or threads, Perl no longer has full control of their execution. The OS manages the scheduling and size of the time slices. It is very common to see race conditions like this where one process occasionally jumps ahead of another. Another symptom is split messages where one thread inserts its output in the middle of another's. If you need to manage the sequence of events between processes, you will need to look at IPC (Inter-Process Communications) capabilities of your platform. Semaphores are one mechanism that can be used to control the output sequence. Bob McConnell

RE: Multiprocessing script

2012-07-26 Thread Bob McConnell
not in the right order in the logs) you should not worry to much > about the order in which this shows up in the logs. > When you set up multiple processes or threads, Perl no longer has full control of their execution. The OS manages the scheduling and size of the time slices. It is very common to see race conditions like this where one process occasionally jumps ahead of another. Another symptom is split messages where one thread inserts its output in the middle of another's. If you need to manage the sequence of events between processes, you will need to look at IPC (Inter-Process Communications) capabilities of your platform. Semaphores are one mechanism that can be used to control the output sequence. Bob McConnell

RE: How to create a user manual window

2012-06-12 Thread Bob McConnell
t DWIMPerl itself, but it claims to be based on Strawberry, which I do use. The biggest advantage Strawberry has over ActiveState is the direct use of CPAN and all available modules there. It is not limited to the adulterated and incomplete collection provided by ActiveState. Bob McConnell

RE: Raspberry Pi for Beginners (and developers ;)

2012-06-04 Thread Bob McConnell
have actually worked with was the Digi ConnectME. That was very useful as a network appliance, but at US$47 in small quantities, it only had one each Ethernet and serial ports. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

RE: how to display commands while perl script executing

2012-05-15 Thread Bob McConnell
in a Perl mailing list, you are going to get Perl scripts. If that is not what you are looking for, you need to find a mailing list for your particular shell, which you didn't name. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

RE: PERL CGI, HTML and PHP

2012-04-26 Thread Bob McConnell
either globally or by using NoScript or similar add-ons. As a result, it should never be used to enable critical elements of a web page, but only to enhance the presentation. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

RE: MIME::Lite Return-Path not being set

2012-04-25 Thread Bob McConnell
Received" chain with a path for each relay point, but I'm not a server admin, so I can't be sure of that. Good luck, Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

RE: MIME::Lite Return-Path not being set

2012-04-24 Thread Bob McConnell
; is reserved for use by the transport servers. It is likely your server is stripping out the suggestion you have put in there. It is also very likely that the bounce messages you expect are not being sent, due to the long term SPAM epidemic we have been experiencing. Most mail servers have that

RE: WWW::Selenium click not working - CPAN install problem

2012-04-05 Thread Bob McConnell
nct impression that all of the Perl developers had left that project, and nobody still working on it was interested in keeping the Perl drivers up to date. I never saw any indication there would be Perl drivers bundled with Se2. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.

Re: Perl for android

2012-04-02 Thread Bob goolsby
http://szabgab.com/perl-on-android.html Hope this Helps B On Mon, Apr 2, 2012 at 6:50 PM, Chris Stinemetz wrote: > This maybe a silly question but is it possible to install Perl compiler on > a android device? Just curious. > > Thanks, > > Chris -- Bob Goolsby bob

Re: IO::Socket::SSL and SSL_verify_mode

2012-03-21 Thread Bob goolsby
 http://gplus.to/sshswilting >  http://gplus.to/john.swilting >  https://lists.fakessh.eu/mailman/ >  This list is moderated by me, but all applications will be accepted >  provided they receive a note of presentation -- Bob Goolsby bob.gool...@gmail.com -- To unsubscribe, e-mail: beginners-

Splitting and printing on a single line

2012-01-05 Thread bob
Hello I am very new to perl and I need some guidance on the following issue My data set is like this --- Record 38 Richard Nixon http://en.wikipedia.org/wiki/Richard_Nixon --- Record 39 Gerald Ford http://en.wikipedia.org/wiki/Gerald_Ford -

RE: Solved(?) Re: IO:Socket - receiving data

2011-10-26 Thread Bob McConnell
> From: Gary > > Bob McConnell wrote: > >> From: Gary > > >> For the record, this is what I did to get around the problem: > >> > >> ,[ code ] > >> | my $s = IO::Select->new($self->{_sock}); while (my @ready

RE: Solved(?) Re: IO:Socket - receiving data

2011-10-25 Thread Bob McConnell
e same length, or is there a delimiter at the end you can test for? If the length is constant, I would change the loop test to (length($ret) < SIZE) instead of just waiting for a partial buffer. If you do get to handle multiple messages without a significant delay between them, this code also

RE: IO:Socket - receiving data

2011-10-24 Thread Bob McConnell
nough you have to wait for more. If you have too many, you need to hold on to the extra to start the next element. If you want a read() to return exactly as many bytes as the matching write() sent, you need UDP. But then you give up the delivery guarantee. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

RE: John SJ Anderson is Perl Beginners list moderator

2011-10-06 Thread Bob McConnell
Lookout is another. I have to manually edit each line to turn this into a bottom post. They totally dropped the Usenet style reply option in the Office 2003 release. Bob McConnell -Original Message- From: Zachary Zebrowski [mailto:zak.zebrow...@gmail.com] Sent: Thursday, October 06

RE: Validating input

2011-10-04 Thread Bob McConnell
From: shawn wilson > On Oct 3, 2011 8:48 AM, "Bob McConnell" wrote: >> >> From: shawn wilson >> >> > On Sun, Oct 2, 2011 at 02:32, Shlomi Fish wrote: >> >> On Sun, 2 Oct 2011 00:07:34 +0300 >> >> "Octavian Rasnita" w

RE: Validating input

2011-10-03 Thread Bob McConnell
rc, some browsers don't or google say are dangerous > - there doesn't seem to be any script running on this page - cursory > look): > http://ha.ckers.org/xss.html > For general guidelines and tools, take a look at the OWASP Projects at <http://www.owasp.org/>. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Jennifer the starlet

2011-09-19 Thread Bob goolsby
an repent, * > * But stupid is forever. * > > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://learn.perl.org/ > > > -- Bob Goolsby bob.gool...@gmail.com

RE: Socket6 won't install

2011-08-24 Thread Bob McConnell
From: Sisyphus > From: "Bob McConnell" > >>I am using Strawberry on WinXP. I need to test some IPv6 connectivity >> but can't get Socket6 to install. It all boils down to two errors during >> the compile stage. >> >> Socket6.o:Socket6

Socket6 won't install

2011-08-23 Thread Bob McConnell
ference to `inet_ntop' collect2: ld returned 1 exit status How do I resolve this problem? Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

RE: XAMPP

2011-08-04 Thread Bob McConnell
o reason to look back. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

RE: substring first 100 words from a string in perl

2011-07-29 Thread Bob McConnell
My first impression was that he wanted the first hundred characters rounded off to the previous or next full word. It sounded like he wanted smart line breads at the word boundaries. Bob McConnell From: timothy adigun > I get the point you are making here, if you check the subroutine &

RE: url checker load average opensource s/w

2011-07-21 Thread Bob McConnell
l: <http://www.santaclarahightech.org/teacher/selenium-rc/> <http://quicksilver1183.com/2010/09/07/setting-up-selenium-with-perl/> <http://testingwithperl.blogspot.com/2008/03/using-selenium-for-testing. html#driver> <http://wiki.openqa.org/display/SRC/Selenium+RC+and+Perl>

RE: Verifying an e-mail address

2011-06-27 Thread Bob McConnell
actual response from the user. Even then I would be worried that it could be a 'bot responding to you. Email should no longer be considered a reliable basis to make financial decisions. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

RE: Re : Re: Re : Re: Re : Re: Check if words are in uppercase?

2011-06-21 Thread Bob McConnell
t;> >> It's probably less fast than other ones, but it seems to work. > > I'm afraid you may need to improve your testing skills. > > I assume your keywords are in lower case. What happens with mixed case? You > would need /i on your first // You need to be a l

RE: regexp validation (arbitrary code execution) (regexp injection)

2011-06-02 Thread Bob McConnell
then accesses the database. There are any number of variations on these themes, but in each case, they have to run some application code somewhere in order to access the data. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Syntax error on use Cwd qw(abs_path);

2011-05-28 Thread Bob goolsby
s.com http://www.sysarch.com-- > - Perl Code Review , Architecture, Development, Training, Support > -- > - Gourmet Hot Cocoa Mix http://bestfriendscocoa.com- > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://learn.perl.org/ > > > -- Bob Goolsby bob.gool...@gmail.com

Re: Extremely fast template processor

2011-05-27 Thread Bob goolsby
instances of your code, one per batch. If you can't use divide-and-conquer, you might look at fork() and try running multiple child-processes under the covers. > > > > > > -- > Thanks > Ram > <http://www.netcore.co.in/> > > > > > n <http://pragatee.com> > -- Bob Goolsby bob.gool...@gmail.com

Re: Need help to develop a log file in Perl

2011-04-26 Thread Bob goolsby
writing to a file username, date/time, item changed > > regards > Khabazela > http://www.greenitweb.co.za > -- Bob Goolsby bob.gool...@gmail.com

RE: Alternative to goto

2011-04-15 Thread Bob McConnell
implies. But "goto" is uncontrolled and ignores that context, leaving the stack and related structures in an unknown state. This is what makes it so dangerous. It can also be used to jump into a code block without correctly initializing its structures, creating a even bigger mess. Th

Re: MRF-ERROR: Is a directory

2011-03-16 Thread Bob goolsby
mands, e-mail: beginners-h...@perl.org > http://learn.perl.org/ > > > -- Bob Goolsby bob.gool...@gmail.com

RE: how do make certain that no input (keyboard + mouse paste) is outside of 7-bit ASCII in a perl script?

2011-02-02 Thread Bob McConnell
t;if ( /^[\040-\176]*$/ ){ # all from space to tilde > print "OK. '$_' is all us-ascii\n-> " >} else { > print "Can't accept '$_' ; " . > "contains non us-ascii characters\n-> " >} > } Yo

RE: How to avoid Out of Memory Errors when dealing with a large XML file?

2011-01-11 Thread Bob McConnell
w much RAM and swap space you have available. So the other option is to switch to a 64-bit system. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

RE: 1st line of perl script

2011-01-10 Thread Bob McConnell
to decide what to do with that first line. Bob McConnell -Original Message- From: Shawn H Corey [mailto:shawnhco...@gmail.com] Sent: Monday, January 10, 2011 11:08 AM To: beginners@perl.org Subject: Re: 1st line of perl script On 11-01-10 10:57 AM, Sunita Rani Pradhan wrote: > Yes I

RE: 1st line of perl script

2011-01-10 Thread Bob McConnell
or different scripts. Bob McConnell -Original Message- From: Sunita Rani Pradhan [mailto:sunita.prad...@altair.com] Sent: Monday, January 10, 2011 10:58 AM To: Brandon McCaig; Shawn H Corey Cc: beginners@perl.org Subject: RE: 1st line of perl script Yes I agree . Then I am coming back to my

RE: Real life usage

2010-12-20 Thread Bob McConnell
equence is run, verify the final state of the data. Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

SSH to remote machines..

2010-10-19 Thread Bob Null
e of what this would look like that would be the most helpful as I am still getting my bearings here. Cheers, Bob H -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: perl or python

2010-10-09 Thread Bob goolsby
uage - so it might be worthwhile to learn a lower level language. > > It all comes down to: what do you want to do with the new language. > Perhaps if you give us some more details we might be able to better > help you. > > > > -- > Eitan Adler > > -- > To unsubscribe

RE: No Output in Terminal

2010-10-04 Thread Bob McConnell
From: Brandon McCaig > On Fri, Oct 1, 2010 at 8:26 AM, Bob McConnell wrote: >> AKA carriage return, it suggests you have DOS/Windows line endings >> instead of Unix. You can clean them up in the source files with the >> dos2unix or tr filters. The latter looks something l

RE: No Output in Terminal

2010-10-04 Thread Bob McConnell
From: Shlomi Fish > On Monday 04 October 2010 14:45:57 Bob McConnell wrote: >> From: Brandon McCaig >> >> > On Fri, Oct 1, 2010 at 8:26 AM, Bob McConnell wrote: >> >> AKA carriage return, it suggests you have DOS/Windows line endings >> >> inst

RE: No Output in Terminal

2010-10-01 Thread Bob McConnell
AKA carriage return, it suggests you have DOS/Windows line endings instead of Unix. You can clean them up in the source files with the dos2unix or tr filters. The latter looks something like this: $> tr "\r\n" "\n" < bad.pl > good.pl Bob McConnell -Original M

RE: Web UI Automation

2010-09-23 Thread Bob McConnell
es the LWP bundle help in automating all web protocols ? > > See WWW::Mechanize > http://search.cpan.org/~petdance/WWW-Mechanize-1.66/lib/WWW/Mechanize.pm > Another option is Selenium[1]. It works within a browser using a JavaScript proxy to mimic the actions of the user. The rem

Re: Perl obfuscator

2010-08-20 Thread Bob goolsby
red at the target system ? Haven't > closely looked at it, but will do so shortly. Thanks for the hint. > > > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://learn.perl.org/ > > > --

RE: print string in file

2010-08-17 Thread Bob McConnell
gt; any advice please You can't have unescaped quotes in a quoted string. Try this: print MYFILE "\n"; or this: print MYFILE '' . "\n"; Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Server check

2010-08-13 Thread Bob goolsby
| vimalZworld.com * technomenace.com * twitter.com/vimal7370 | > | E: vimal7370 at gmail dot com             P: +919947450760 | > > > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://learn

Re: Is this perl statement valid?

2010-08-04 Thread Bob goolsby
t; > > -- > Just my 0.0002 million dollars worth, >  Shawn > > Programming is as much about organization and communication > as it is about coding. > > The secret to great software:  Fail early & often. > > Eliminate software piracy:  use only FLOSS. > >

RE: Data migration

2010-07-27 Thread Bob McConnell
Thanks Shlomi. But in order for that to work, I would have to retain the > 'old' UID numbering system, rather than use the 'new' (Debian) numbering > system. If I wanted to do that, your solution would work fine. > > Maybe I've missed something. Maybe it would

RE: Remove duplicate files

2010-07-13 Thread Bob McConnell
ry entries to point to the same file (hard links). You may delete (unlink) the entry you know about, but if there are others, the file will not be removed until they are all gone. Then it will still be kept as long as any processes have it open. Bob McConnell -- To unsubscribe, e-mail: beginners-un

RE: No paths in Test-Harness-3.21.tar

2010-06-22 Thread Bob McConnell
From: Uri Guttman >>>>>> "BM" == Bob McConnell writes: > > BM> From: Uri Guttman > > >> that implicates the tar.exe in your box as the guilty party. put > >> the blame on camelbox for not handling some variation in tar > >&

RE: No paths in Test-Harness-3.21.tar

2010-06-22 Thread Bob McConnell
From: Uri Guttman >>>>>> "BM" == Bob McConnell writes: > > BM> To remove the tar binary from Config.pm: > BM> 1) Open C:\camelbox\lib\CPAN\Config.pm in an editor that understands > BM> Unix files (NOT notepad.exe; wordpad will work for thi

RE: No paths in Test-Harness-3.21.tar

2010-06-22 Thread Bob McConnell
From: Steve Bertrand > On 2010.06.21 18:22, Bob McConnell wrote: > >> After a little more digging, and trying your suggestion to try from >> Linux, I have determined that the directory information in the new tar >> files is being put into the prefix field of the heade

RE: No paths in Test-Harness-3.21.tar

2010-06-21 Thread Bob McConnell
From: Bob McConnell > From: Uri Guttman >>>>>>> "BM" == Bob McConnell writes: >> >> BM> Looking at the two tar files with a binary viewer after uncompressing >> BM> them through gzip, I see several differences, but other than th

RE: No paths in Test-Harness-3.21.tar

2010-06-21 Thread Bob McConnell
From: Uri Guttman >>>>>> "BM" == Bob McConnell writes: > > BM> Looking at the two tar files with a binary viewer after uncompressing > BM> them through gzip, I see several differences, but other than the > BM> obvious, I don't know which

RE: No paths in Test-Harness-3.21.tar

2010-06-21 Thread Bob McConnell
From: Uri Guttman >>>>>> "BM" == Bob McConnell writes: > BM> Yes, that was all one line. Lookout doesn't give me any options to > BM> prevent it from wrapping. Microsoft _always_ believe they know what's > BM> best for you. > >

RE: store and edit perl hash data

2010-06-21 Thread Bob McConnell
and run eval on it (or use do/require). it also depends on how > you write out the file itself. you may need to edit (in perl) the dumper > text to make it work in your context (package space, lexicals, etc.) > > another alternative if your hash is simplistic is to use CSV or a DBD >

Re: changing SAS proc format to if-then-else

2010-06-21 Thread Bob goolsby
gt; >    IF 0 <= var2 < 3.52 THEN cbr_score1 = "10.5909"; >    ELSE IF 3.52 <= var2 < 10.87 THEN cbr_score1 = "25.4922"; >    ELSE IF 10.87 <= var2 < 23.68 THEN cbr_score1 = "36.4572"; >    ELSE IF 23.68 <= var2 < 99.84 THEN cbr_score1 = "37.4047"; >    ELSE IF 99.84 <= var2  THEN cbr_score1 = "46.0035"; >    ELSE cbr_score1 = "24.2959"; > > >        cbr_scaledScore = sum( of cbr_score0-cbr_score1 ); > run; > endrsubmit; > > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://learn.perl.org/ > > > -- Bob Goolsby bob.gool...@gmail.com -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: muralis module

2010-06-20 Thread Bob goolsby
2010 at 7:02 PM, Jakub Safar wrote: > Hello everyone, > I was wondering if the Muralis module is the most recent/useful module to > use for changing desktop backgrounds. > > Thanks in advance for tips > > Jakub > -- Bob Goolsby bob.gool...@gmail.com -- To unsubscribe, e-m

RE: No paths in Test-Harness-3.21.tar

2010-06-18 Thread Bob McConnell
From: Uri Guttman >>>>>> "BM" == Bob McConnell writes: > BM> From: Uri Guttman > > >> tar zxvf Test-Harness-3.17.tar.gz > > BM> C:\camelbox\.cpan\build\tmp-Test>tar xzvf > BM> D:\Downloads\Test-Harness-3.21.tar.gz > BM&

RE: No paths in Test-Harness-3.21.tar

2010-06-18 Thread Bob McConnell
From: Uri Guttman >>>>>> "BM" == Bob McConnell writes: > > BM> From: Uri Guttman > >> i will assume the tarball from cpan is in good shape. so the issues > >> seems to be you have a broken unzipping of a tar.gz file. can you try > &g

RE: No paths in Test-Harness-3.21.tar

2010-06-18 Thread Bob McConnell
From: Uri Guttman >>>>>> "BM" == Bob McConnell writes: > > BM> Just that, there are no paths shown in the directory tree. When > BM> unpacked, I see this: > > BM> -- > BM> C:\camelbox\.cpan\build

RE: No paths in Test-Harness-3.21.tar

2010-06-18 Thread Bob McConnell
.pm ... -- There were also several name collisions, so not all of the files are there. There is no chance Make is going to work. I also have CPAN and Net::PCAP source packages which do show a directory structure and unpack into the correct directories. Bob McConn

No paths in Test-Harness-3.21.tar

2010-06-18 Thread Bob McConnell
stead of in the directories. Is this tar ball broken? Bob McConnell -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Just asking - Tips on how to maintain your scripts ..

2010-06-04 Thread Bob goolsby
t can be placed and run on a USB stick ... > > At the moment, am having them in directories and files and no versioning of > any kind. > > Any advise or solution of how to put something like this in place, will be > very much appreciated. > > Thanks in advance. > --

How to get environment variables from child shell

2010-05-27 Thread Bob Sadri
able to see the variables. Can someone help me with this problem? Thanks Bob

  1   2   3   4   5   6   7   8   9   10   >