Re: muralis module

2010-06-20 Thread Erez Schatz
For a windows machine, I'd actually recommend a non-perl solution, called autoit, available here http://www.autoitscript.com/autoit3/index.shtml. It's a Windows-oriented scripting language which is very useful for automating actions in the GUI and the GUI system (in Windows, the GUI is an integral

Re: variable naming

2010-06-20 Thread Uri Guttman
> "JL" == Jason Lewis writes: JL> Hey, this might be a stupid question... not a stupid question. but a dangerous one. JL> If I need to name a variable with the contents of another scalar, how do I JL> do that? reference? the answer is you don't do it (even though you can in perl). it

variable naming

2010-06-20 Thread Jason Lewis
Hey, this might be a stupid question... If I need to name a variable with the contents of another scalar, how do I do that? reference? thx, Jason Lewis Email jasonlewi...@gmail.com Mobile 410.428.0253 AIM canweriotnow Facebookhttp://www.facebook.com/canweriotno

Re: muralis module

2010-06-20 Thread Jakub Safar
Thanks for your quick response I use Windows XP (sorry, noob response. I hope that is an adequate answer to your question) Jakub On Sun, Jun 20, 2010 at 7:40 PM, Bob goolsby wrote: > According to the doc: > > "The muralis script displays a given image file on the desktop > background (that is,

Re: muralis module

2010-06-20 Thread Bob goolsby
According to the doc: "The muralis script displays a given image file on the desktop background (that is, the root window) of an X-windows display." So, I'd say that it depends on your operating system -- are you running xwindows on a Unix-ish OS or not? B On Sun, Jun 20, 2010 at 7:02 PM, Jaku

muralis module

2010-06-20 Thread Jakub Safar
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

Re: sort hash in Data::Dumper

2010-06-20 Thread Chas. Owens
On Sun, Jun 20, 2010 at 04:41, philge philip wrote: > hi > > can someone tell me how i can sort by keys from a hash (huge data) stored > using Data::Dumper? snip Data::Dumper can be configured through the use of its package variables (or methods if you are using the OO version). For instance:

Re: sort hash in Data::Dumper

2010-06-20 Thread Shlomi Fish
On Sunday 20 Jun 2010 11:41:42 philge philip wrote: > hi > > can someone tell me how i can sort by keys from a hash (huge data) stored > using Data::Dumper? > You need to do: [code] my @keys = sort { $a cmp $b } keys(%hash); [/code] Is it causing a memory overflow? Regards, Shlomi Fi

Re: XML output processing question

2010-06-20 Thread Shlomi Fish
On Friday 18 Jun 2010 17:02:39 saw wrote: > Given one large XML file such as: > > > > > > > > > I want to create many small XML files consisting of a Root element and > the sub-tree. I would like to copy the sub-tree from input to > output as a block without having to ad

XML output processing question

2010-06-20 Thread saw
Given one large XML file such as: I want to create many small XML files consisting of a Root element and the sub-tree. I would like to copy the sub-tree from input to output as a block without having to address the sub-components. I have read the input into a hash using

Re: Fork ssh

2010-06-20 Thread C.DeRykus
On Jun 17, 7:51 pm, dery...@gmail.com ("C.DeRykus") wrote: > On Jun 16, 7:34 pm, knowsuperunkn...@gmail.com (Unknown User) wrote: > > > > > Hi > > > I wrote the following script to fork ssh processes with perl and > > Parallel::ForkManager: > > > #!/usr/local/bin/perl -w > > use strict; > > > my @c

sort hash in Data::Dumper

2010-06-20 Thread philge philip
hi can someone tell me how i can sort by keys from a hash (huge data) stored using Data::Dumper? thanking you philge

sorting DB_File hash data

2010-06-20 Thread philge philip
hi can someone tell me how i can sort by keys from a hash (huge data) stored in a DB_File? thanking you philge