Re: Book Recommendation - XPath, XML,SQL, XQuery

2012-04-27 Thread Sayth Renshaw
a lot of ground. haven't finished it yet but liking it so fa. Sayth -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

LibXML error CPAN. XML::GDOME

2011-12-13 Thread Sayth Renshaw
11.10. sayth@sayth-TravelMate-5740G:~$ sudo cpanm XML::GDOME [sudo] password for sayth: --> Working on XML::GDOME Fetching http://search.cpan.org/CPAN/authors/id/T/TJ/TJMATHER/XML-GDOME-0.86.tar.gz... OK Configuring XML-GDOME-0.86 ... OK Building and testing XML-GDOME-0.86 ... FAIL ! Installing

Re: Better Answer for This Question - Gabor's Chapter4 lecture 6

2011-12-11 Thread Sayth
n never truly appreciate The Gilmore Girls until you’ve watched it in > the original Klingon. > > Please reply to list if it's a mailing list post - http://shlom.in/reply . As an aside when playing with rob script I had to update it to use warnings and strict as I have them on by defau

Re: Better Answer for This Question - Gabor's Chapter4 lecture 6

2011-12-09 Thread Sayth Renshaw
On Sat, Dec 10, 2011 at 8:28 AM, Sayth Renshaw wrote: > > > On Sat, Dec 10, 2011 at 7:44 AM, Rob Dixon wrote: > >> On 09/12/2011 11:35, flebber wrote: >> >>> >>> Okay I have a working version for an answer to Gabor's exercises in >>> his u

Re: matplotlib

2011-06-23 Thread Sayth Renshaw
ryan > > > > -- > To unsubscribe, e-mail: beginners-unsubscr...@perl.org > For additional commands, e-mail: beginners-h...@perl.org > http://learn.perl.org/ > > > Not exactly sure personally. But here is an article that may be of interest. http://www.stat.wash

Re: Problem with SDL::Perl

2011-06-13 Thread Sayth Renshaw
l line 14 >> >> >> #-- >> Adam Fairbrother >> Help Desk Technician >> afairbrot...@sd73.bc.ca >> School District #73 >> >> -- >> 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/ > > > It seemed to me that you need to give a path to "pic". my $sprite = SDLx::Sprite->new(image=>'C:/OMG.jpg'); for example. Sayth -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: how to use regexp to match symbols

2011-06-13 Thread Sayth Renshaw
RE in m/only one brace > here[ <-- HERE anything.mp3/ at Searching google I found that several scripts use the Find::Duplicates Module. http://search.cpan.org/~tmtm/File-Find-Duplicates-1.00/lib/File/Find/Duplicates.pm Sayth -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For ad

Re: kills Padre 0.84 on execution

2011-06-12 Thread Sayth Renshaw
> If you go to Tools / Preferences / Run Parameters and check 'Use > external window for execution' then Padre will start up a new cmd window > for execution which will respond as you expect. > > Rob > Thanks. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-m

kills Padre 0.84 on execution

2011-06-12 Thread Sayth Renshaw
\n"; my $phrase = "Howdy Partner \n"; print " $phrase "; sayth -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: using Perl, How to search for files in my computer

2011-06-12 Thread Sayth Renshaw
"); my @dirList = find(sub {print if -d}, $dir); # old file line $mp3 = new File::List("C:/Users/RenshawFamily/maven/Music/Foo Fighters"); foreach $dirList (@dirList) { @musicFiles = @{ $dirList->find("\.mp3\$") }; } @musicFiles = sort(@musicFiles); foreach

Re: using Perl, How to search for files in my computer

2011-06-12 Thread Sayth Renshaw
Patience & Grace/Ballad of the Beaconsfield Miners.mp3 C:/Users/RenshawFamily/maven/Music/Foo Fighters/Echoes, Silence, Patience & Grace/But, Honestly.mp3 Sayth -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: using Perl, How to search for files in my computer

2011-06-12 Thread Sayth Renshaw
On Sun, Jun 12, 2011 at 8:40 PM, eventual wrote: > Thanks, > I've read perldoc File::Find but I dont understand. > So If I wish to search for "mp3" in d:\ and all its sub-directories, and to > print it out if found, > How should I write? > Thanks > > > From: Shawn H Corey > To: beginners@perl.or

Re: Uninitialized value in concatenation

2011-06-08 Thread Sayth Renshaw
ontext of this program is it saying whatever the default is in the foreach loop for $mynames -1 from it(to correct the index) and proceed. Sayth -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: Uninitialized value in concatenation

2011-06-08 Thread Sayth Renshaw
> Hello Sayth > > The program you have published seems to work fine. Are you certain that > the print line inside the foreach loop is as you say? > > Rob > This is copied direct from my editor. #!/usr/bin/perl use strict; use warnings; use Data::Dumper; my @mynames = qw/f

Uninitialized value in concatenation

2011-06-08 Thread Sayth Renshaw
Working through the exercises in Learning Perl. Chapter 3 exercise 2. Basically have to look up a set of names and return an output list of based on the numbers selected by the user. 1 would print fred etc. For the longest time I had the below code but couldn't figure out the body of the foreach l

Re: practical perl guides

2011-06-01 Thread Sayth Renshaw
On Wed, Jun 1, 2011 at 8:04 PM, Sayth Renshaw wrote: >> You don't need Microsoft Visual Studio to install perl modules. I will >> go on a limb and assume here you're thinking of using MS Visual C >> compiler to compile perl and subsequent c modules, but even that'

Re: practical perl guides

2011-05-31 Thread Sayth Renshaw
Shlomi> stuff from CPAN without having to resort to a lot of proprietary Shlomi> and costly software from Microsoft. What is the costly software that you would need to install? Sayth -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: begin

Re: Conversion program decimal to hex and oct using assertions

2011-05-31 Thread Sayth Renshaw
On Tue, May 31, 2011 at 3:45 PM, Uri Guttman wrote: >>>>>> "SR" == Sayth Renshaw writes: > >  SR> my $hex = sprintf("ox%o2x\n", $number); > > why is the \n there? you just chomp it off. better to not put it in the > string to begin with. &

Re: Conversion program decimal to hex and oct using assertions

2011-05-30 Thread Sayth Renshaw
On Tue, May 31, 2011 at 3:24 PM, Michael Greb wrote: > On Tue, May 31, 2011 at 02:27:53PM +1000, Sayth Renshaw wrote: >> This there formula $oct_perm_str = sprintf "%o", $perms; >> However it is not working for me. I have used my $oct = sprintf "%0", >> $

Conversion program decimal to hex and oct using assertions

2011-05-30 Thread Sayth Renshaw
"%0", $number; # use assertions ' $hex == $oct == $number'; print " $number is ", $hex, " as a hexidecimal and is ", $oct, " as an octal","\n"; Sayth -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: practical perl guides

2011-05-27 Thread Sayth Renshaw
On Fri, May 27, 2011 at 9:12 PM, Leo Lapworth wrote: > Hi, > > On 27 May 2011 10:26, Shlomi Fish wrote: >> On Friday 27 May 2011 09:35:32 Sayth Renshaw wrote: >>> Which Perl Should I use ActivePerl or Strawberry Perl on Windows? 5.10 or >>> 5.12? >> >&

Re: practical perl guides

2011-05-26 Thread Sayth Renshaw
On Fri, May 27, 2011 at 3:35 PM, Sayth Renshaw wrote: > On Fri, May 27, 2011 at 3:30 PM, shawn wilson wrote: >> On May 27, 2011 1:28 AM, "shawn wilson" wrote: >>> >>> >>> On May 27, 2011 12:21 AM, "Sayth Renshaw" wrote: >>>

practical perl guides

2011-05-26 Thread Sayth Renshaw
you'll want to achieve this is how its put together and here a some ways to alter it change it etc using these language features... there you go son have a crack. Really if a language feature confuses me I can more than likely find a library reference to refer to for that. Thanks in advance

practical perl guides

2011-05-26 Thread Sayth Renshaw
you'll want to achieve this is how its put together and here a some ways to alter it change it etc using these language features... there you go son have a crack. Really if a language feature confuses me I can more than likely find a library reference to refer to for that. Thanks in advance

practical perl guides.

2011-05-26 Thread Sayth Renshaw
vance Sayth -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/