Re: Perl and Web Development

2013-06-03 Thread Ivan Torres
y, I'm looking to build a backend to a mobile app. Everything > I've been trying to search for seems dated (2005 and earlier). > > Richard Johnson > > -- Atte: Ivan Torres <- Live Your Dreams ->

Re: Changing XML Tag Value in Perl

2011-04-12 Thread Carlos Ivan Sosa
On 4/12/11, Rob Dixon wrote: > On 12/04/2011 17:22, Carlos Ivan Sosa wrote: >> >> Since the structure of the XML output is not so complicated and >> massive > > Carlos this is data. Data grows. > Ohh sorry, misread. > Rob > -- To unsubscribe, e-mail

Re: Changing XML Tag Value in Perl

2011-04-12 Thread Carlos Ivan Sosa
Since the structure of the XML output is not so complicated and massive, you might want to try with the Perl Module "XML::Smart": http://search.cpan.org/~gmpassos/XML-Smart-1.6.9/lib/XML/Smart.pm On 4/11/11, Rajpreet wrote: > Greetings, > > Requirement goes like this. I have perl script reading

Re: What's the best IDE in windows 7 for a beginner aiming at using Bioperl?

2011-04-07 Thread Carlos Ivan Sosa
On 4/7/11, Shlomi Fish wrote: > Hi Mr./Ms. Sheep, > > On Thursday 07 Apr 2011 15:28:51 universe sheep wrote: >> What's the best IDE in windows 7 for a beginner aiming at using Bioperl? >> Speed may be the first thing considered, and it will be better if it can >> download modules automatically. >>

Re: Filling in an online form.

2011-03-28 Thread Carlos Ivan Sosa
http://perlmeme.org/tutorials/cgi_form.html I don't know of your skills with perl, but I think you might find these tutorial useful; however, be aware of the security risks with the flaws of bad code and usage of perl CGI. This should be for a starter project, then refine the project for a product

Re: tags being broken in the wrong places

2011-02-22 Thread Carlos Ivan Sosa
On Tue, Feb 22, 2011 at 5:48 AM, Rob Dixon wrote: > On 22/02/2011 13:25, Kill Switch wrote: >> >> Hi, >> >> I've tried to fiure this out on my own but hit a road block. I'm reading >> in >> an external file, then doind a search and replace. I am also using the >> following to break lines at 256 ch

How do I save uploaded files in a Perl FastCGI program?

2010-03-26 Thread Ivan Bogdanov
My upload function looks like: sub Upload_File{ my ($file, $mime) = @_; my $file_data = param('filename'); my $buffer = undef; UnTaint($file); if ($mime =~ /text/) { sysopen(VAULT, "$path/$file", O_RDWR | O_EXCL | O_CREAT | O_TEXT) or die "couldn't cre

prepend date to log

2008-11-06 Thread ivan . longhi
bviously without finding every print in the code). any idea? maybe some parameters to pass to open? thanks, ivan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: XS

2008-07-30 Thread Ivan Gromov
) See perldoc perlapi. -- Best regards, Ivan Gromov. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Embedding Perl in C: problem with modules

2008-07-30 Thread Ivan Gromov
return; } perl_run(my_perl); PL_perl_destruct_level = 1; perl_destruct(my_perl); return; } testperl.pl is: $ab = 100; print “testperl.pl. ab = $ab \n”; testperl2.pl is: $PQR = “Hello”; print “$PQR from testperl2.pl \n”; I don’t know what exactly do with my

Re: Embedding Perl in C: Replacing some subroutine in Perl from C

2008-07-16 Thread Ivan Gromov
Thank you very much for help. -- Kind regards, Ivan Gromov. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Embedding Perl in C: Replacing some subroutine in Perl from C

2008-07-15 Thread Ivan Gromov
command_line[] = {"", "-e", “./script.pl”}; Thank you very much for your help and support. -- Kind regards, Ivan Gromov -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Embedding Perl in C: Replacing some subroutine in Perl from C

2008-07-14 Thread Ivan Gromov
mp; Regards in advance Ivan Gromov -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Help with transliteration

2007-11-26 Thread Ivan Bogdanov
Hi, I have some problems with transliteration from Cyrillic text into Latin. I my mind, i have two ways to solve the problem: 1) using a tr/// operator, but it not the best way i think, because in Russian it might be one symbol and in transit it would be two symbols. 2) using two arrays, something

Re: easy module installation

2004-09-22 Thread ivan
Chris Devers wrote: On Wed, 22 Sep 2004, ivan wrote: Exists not any easy way to install this DateTime::HiRes with all modules it depend from? There is a tool called "the CPAN shell" which automates the process of finding modules, downloading & unpacking them, checking depen

easy module installation

2004-09-22 Thread ivan
. My question: Exists not any easy way to install this DateTime::HiRes with all modules it depend from? Exists any rpm for redhat 7.3 ? Many thanks in advance, ivan. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/>

RE: redirecting the output of a command to a file

2003-08-26 Thread Ivan Novick
Is there no other way some perl syntax to redirect to a file the output of a command? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 7:14 AM To: Ivan Novick; [EMAIL PROTECTED] Subject: RE: redirecting the output of a command to a file

redirecting the output of a command to a file

2003-08-26 Thread Ivan Novick
Hi, does anyone know syntax to run a command and redirect its output directly to a file? Equivalent to myCommand > myFile in shell Thanks, Ivan

Re: What am I doing wrong... I want to increment a number in a DB

2002-06-03 Thread ivan . drvaric
database after every sql dml cluase ( insert, update, delete). If that's not the case then after disconnecting from the DB rollback is issued and no change of data is done. Hope this is in your direction ... Kind Regards Ivan Dr

Time arithmetics...

2002-04-02 Thread Ivan
2... Any ideas? TIA! Ivan -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

how do I make a input from STDIN to be silent??

2002-02-12 Thread Ivan Teliatnikov
I want to read a passwd string from the terminal but without displaying it back to the screen. If I do secret secret = , what I type will be shout to the screen, can I avoid it? Thank you. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Scope, priority or bug?

2001-08-10 Thread Ivan Adzhubei
the kind of complaint you suggested. Things are looking a bit more clear for me now. Thanks for help! Cheers, Ivan -- Dr Ivan Adzhubei Tel +7 (095) 777 8913 GlaxoSmithKline Fax +7 (095) 777 8901 61 Novocheremushkinskaya str 117418 Moscow, Russia -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Scope, priority or bug?

2001-08-10 Thread Ivan Adzhubei
parser, but both Yacc-style (bottom-up) and recursive descent parsers would try to consume the whole statement with modifier to match as a production... > so it will see your $z before you declare it and tell you so under use > strict. > > runtime things work right to left, so that&#x

Scope, priority or bug?

2001-08-10 Thread Ivan Adzhubei
tailed description of my() scope issues it has for complex statements -- does *not* apply to simple ones (like the above example). However, description of the scoping within simple statements is nowhere to be found :(. -w switch produces complaints about '"main::z" used only once' bu

RE: Beginer...Any free resources for Learning Perl

2001-06-17 Thread ivan . drvaric
this is the last mail of this kind on this mail list. Otherwise It seems it would be worth to consider to start new mail list. The author first should learn something about the legislation in intelectual property. But never mind it's not worth to c