User - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T01:42:11Z http://stackoverflow.com/feeds/user/10415 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1798861/how-do-i-insert-values-from-a-hash-into-a-database-using-perls-dbi-module/1799980#1799980 1 Answer by runrig for How do I insert values from a hash into a database using Perl's DBI module? runrig 2009-11-25T21:12:26Z 2009-11-25T21:12:26Z <p>There's <a href="http://search.cpan.org/dist/DBI/DBI.pm#prepare%5Fcached" rel="nofollow">an example</a> in <a href="http://search.cpan.org/dist/DBI/DBI.pm" rel="nofollow">the docs</a></p> http://stackoverflow.com/questions/1727623/sqlplus-inside-perl-script/1732591#1732591 0 Answer by runrig for SQL*Plus inside Perl script runrig 2009-11-13T23:43:03Z 2009-11-19T22:34:51Z <p>Any question of this type should be prefaced with "I can't use DBI because..." Because you really want to use DBI if at all possible. You might have good reason(s) not to use it, but maybe, we can tell you why your reasons aren't very good and what to do about it. That being said, here's one way to do what you asked, using fork and filehandles, and getting output one line at a time (warning: if you print too much to a process like this, it may block due to buffer issues):</p> <pre><code>use strict; use warnings; pipe(my($p_rdr, $c_wtr)) or die "Err: $!"; pipe(my($c_rdr, $p_wtr)) or die "Err: $!"; my $pid = fork; die "Could not fork: $!" unless defined $pid; unless ($pid) { close $p_rdr; close $p_wtr; open(STDOUT, "&gt;&amp;=", $c_wtr) or die "dup: $!"; open(STDIN, "&lt;&amp;=", $c_rdr) or die "dup: $!"; print "Exec sqlplus\n"; exec qw(sqlplus user/passwd@dbname); die "Could not exec: $!"; } close $c_wtr; close $c_rdr; print "Print sql\n"; print $p_wtr "select * from table_name where col1 = 'something';\n"; print "Close fh\n"; close $p_wtr; print "Read results\n"; while (&lt;$p_rdr&gt;) { print "O: $_"; } close $p_rdr; </code></pre> http://stackoverflow.com/questions/1707693/how-can-i-list-files-under-a-directory-with-a-specific-name-pattern-using-perl/1709008#1709008 0 Answer by runrig for How can I list files under a directory with a specific name pattern using Perl? runrig 2009-11-10T15:56:41Z 2009-11-18T16:41:47Z <p>For a fixed level of directories, sometimes it's easier to use <a href="http://perldoc.perl.org/functions/glob.html" rel="nofollow">glob</a> than File::Find:</p> <pre><code>while (my $file = &lt;/var/spool/[a-z]/user/*/*&gt;) { print "Processing $file\n"; } </code></pre> http://stackoverflow.com/questions/1202869/informatica-powercenter-vs-custom-perl-etl-job/1203199#1203199 1 Answer by runrig for informatica powercenter vs custom perl ETL job? runrig 2009-07-29T21:34:01Z 2009-10-30T23:09:44Z <p>ETL tools like Informatica buy you productivity (and pretty pictures) if you have people that can't code. It makes sense if there's nobody that can maintain the code. For someone that can code, it's like hiring a 500-pound gorilla to move a molehill.</p> <p>See also: <a href="http://www.dbasupport.com/forums/showpost.php?p=155078&amp;postcount=11" rel="nofollow">This post</a> and <a href="http://www.dbasupport.com/forums/showpost.php?p=155170&amp;postcount=14" rel="nofollow">this post</a> in <a href="http://www.dbasupport.com/forums/showthread.php?p=155170#post155170" rel="nofollow">this thread</a></p> <p>It is sort of nice for the automatic job logging (you don't have to think about what you want to log...it's all pretty much done for you) and the runtime monitoring tools (how far along is my workflow, and where did it fail?).</p> http://stackoverflow.com/questions/132734/presentations-on-switching-from-perl-to-python/134006#134006 9 Answer by runrig for Presentations on switching from Perl to Python runrig 2008-09-25T15:30:03Z 2009-10-29T22:21:22Z <p>There's no benefits to rewriting a ton of code from one similar language to another when both languages have similar capabilities. Perhaps you should focus on writing better perl code. Maybe learn to use perltidy, or buy a copies of Perl Best Practices and Perl Medic, and hand them out to your co-workers. And if you're worried about Perl being not-quite-as-purely OO as Python, use <a href="http://search.cpan.org/dist/Moose/" rel="nofollow">Moose</a> (and I'd counter that Python is lacking in the functional programming department compared to Perl anyway).</p> <p>In response to the comments below, I'll also say that there's no point to forcing your coworkers to learn and get up to speed on a language with similar capabilities to the one you're already using.</p> <p>Now, if there's some library or such that your company needs that is available (or far superior) in Python that is not available (or of far lesser quality) in Perl, then go ahead and switch or add another language to the mix.</p> http://stackoverflow.com/questions/1590504/what-would-be-your-choice-of-perl-xml-parsers-for-files-greater-than-15-gb/1591302#1591302 5 Answer by runrig for What would be your choice of Perl XML Parsers for files greater than 15 GB? runrig 2009-10-19T21:36:52Z 2009-10-19T21:36:52Z <p>A SAX parser is one option. Other options that don't involve loading the entire doc into memory are <a href="http://search.cpan.org/dist/XML-Twig/" rel="nofollow">XML::Twig</a> and <a href="http://search.cpan.org/dist/XML-Rules/" rel="nofollow">XML::Rules</a>.</p> http://stackoverflow.com/questions/51198/what-etl-tool-do-you-use/67784#67784 10 Answer by runrig for What ETL tool do you use? runrig 2008-09-15T22:59:41Z 2009-10-12T15:25:20Z <p>We use Informatica. But you didn't ask our opinion of what we use :-)</p> <p>My own opinion is that some well written perl (or whatever your favorite so-called "scripting" language is) can beat a shiny GUI anyday.</p> <p>And I'm <a href="http://www.perlmonks.org/?node%5Fid=134790" rel="nofollow">not alone in my opinion</a> (from <a href="http://www.perlmonks.org/?node%5Fid=134690" rel="nofollow">this thread</a>).</p> <p>And my favorite definition of ETL:</p> <blockquote> <p>ETL is that which you develop custom systems by hand to..</p> <ul> <li>backup the truck and copy legacy systems data ( 20 different systems )</li> <li>marry the data together from different legacy systems ( compute farm )</li> <li>Compress the data by summarizing</li> <li>Do some transformations</li> <li>Load into Oracle using sql*loader Direct path you may get 1/4 billion rows loaded per hour</li> <li>transform the data some more using pl/sql and perl or java</li> <li>compress the data again</li> <li>roll fact tables up by dropping columns</li> <li>complete star schema</li> <li>optimize your partitioned world and make fast</li> </ul> <p>Be told by snobby and stupid large companies you cannot work in their ETL department because you lack direct experience with...</p> <p>Ab Initio Informatica etc.</p> <p>GUIs that attempt to automate what you can do manually and probably do better.</p> </blockquote> <p>from <a href="http://www.dbasupport.com/forums/showpost.php?p=155078&amp;postcount=11" rel="nofollow">BJE_DBA</a></p> <p>Update: and I (++) Allan elsewhere in this thread.</p> http://stackoverflow.com/questions/1533067/what-is-the-best-way-to-gunzip-files-with-perl/1533337#1533337 1 Answer by runrig for What is the best way to gunzip files with Perl? runrig 2009-10-07T18:24:30Z 2009-10-07T18:31:18Z <blockquote> <p>And I also don't understand why "while (<code>&lt;$z&gt;</code>)" is slower than "while (my $line = $z->getline())"...</p> </blockquote> <p>Because $z is a self tied object, tied objects are notoriously slow, and <code>&lt;$z&gt;</code> uses the tied object interface to call getline() rather than directly calling the method.</p> <p>Also you can try <a href="http://search.cpan.org/dist/PerlIO-gzip/" rel="nofollow">PerlIO-gzip</a> but I suspect it won't be any/much faster than the other module.</p> http://stackoverflow.com/questions/1478083/how-can-i-efficiently-match-many-different-regex-patterns-in-perl/1478276#1478276 1 Answer by runrig for How can I efficiently match many different regex patterns in Perl? runrig 2009-09-25T16:25:48Z 2009-09-25T16:25:48Z <p>Maybe something like:</p> <pre><code>my @interesting = ( qr/Failed in routing out/, qr/Agent .+ failed/, qr/Record Not Exist in DB/, ); ... for my $re (@interesting) { if ($line =~ /$re/) { print $line; last; } } </code></pre> <p>You can try joining all your patterns with "|" to make one regex. That may or may not be faster.</p> http://stackoverflow.com/questions/1458454/why-is-the-list-my-perl-map-returns-just-1s/1466672#1466672 1 Answer by runrig for Why is the list my Perl map returns just 1's? runrig 2009-09-23T15:18:04Z 2009-09-23T15:18:04Z <p>As mentioned, s/// returns the number of substitutions performed, and map returns the last expression evaluated from each iteration, so your map returns all 1's. One way to accomplish what you want is:</p> <pre><code>s/\..*$// for my @output = @input; </code></pre> <p>Another way is to use Filter from <a href="http://search.cpan.org/dist/Algorithm-Loops/" rel="nofollow">Algorithm::Loops</a></p> http://stackoverflow.com/questions/462219/xkcd-random-number/620904#620904 2 Answer by runrig for XKCD - Random Number runrig 2009-03-06T23:46:49Z 2009-09-10T16:39:01Z <p>It works perfectly. With the caveat that every time the function is called, the programmer needs to roll the dice again, rewrite the function, and recompile the program. I assume that the number of dice and/or the probability distribution of the function are documented somewhere. Or not.</p> http://stackoverflow.com/questions/1406291/how-can-i-use-an-array-as-a-hash-value-in-perl/1406315#1406315 2 Answer by runrig for How can I use an array as a hash value in Perl? runrig 2009-09-10T16:27:13Z 2009-09-10T16:27:13Z <p>[] makes a reference to an empty array. You are creating an array with one element. Just say:<code>my @elements;</code> to make an empty array.</p> http://stackoverflow.com/questions/407407/how-do-i-read-fixed-length-records-in-perl/407992#407992 7 Answer by runrig for How do I read fixed-length records in Perl? runrig 2009-01-02T20:53:44Z 2009-08-04T23:14:29Z <p>Update: For the definitive answer, see Jonathan Leffler's answer below.</p> <p>I wouldn't use this for just two fields (I'd use <a href="http://perldoc.perl.org/functions/pack.html" rel="nofollow">pack</a>/<a href="http://perldoc.perl.org/functions/unpack.html" rel="nofollow">unpack</a> directly), but for 20 or 50 or so fields I like to use <a href="http://search.cpan.org/dist/Parse-FixedLength/FixedLength.pm" rel="nofollow">Parse::FixedLength</a> (but I'm biased). E.g. (for your example) (Update: also, you can use $/ and &lt;> as an alternative to read($fh, $buf, $buf_length)...see below):</p> <pre><code>use Parse::FixedLength; my $pfl = Parse::FixedLength-&gt;new([qw( key:5 blank:1 value:3 )]); # Assuming trailing newline # (or add newline to format above and remove "+ 1" below) my $data_length = $pfl-&gt;length() + 1; { local $/ = \$data_length; while(&lt;FILE&gt;) { my $data = $pfl-&gt;parse($_); print "$data-&gt;{key}:$data-&gt;{value}\n"; # or print $data-&gt;key(), ":", $data-&gt;value(), "\n"; } } </code></pre> <p>There are some similar modules that make pack/unpack more "friendly" (See the "See Also" section of Parse::FixedLength).</p> <p>Update: Wow, this was meant to be an alternative answer, not the official answer...well, since it is what it is, I should include some of Jonathan Leffler's more straight forward code, which is likely how you should usually do it (see <a href="http://perldoc.perl.org/functions/pack.html" rel="nofollow">pack</a>/<a href="http://perldoc.perl.org/functions/unpack.html" rel="nofollow">unpack</a> docs and Jonathan Leffler's node below):</p> <pre><code>$_ = "ABCDE 302"; my($key, $blank, $value) = unpack "A5A1A3"; </code></pre> http://stackoverflow.com/questions/1192707/why-am-i-not-able-to-query-a-database-from-a-forked-child-in-perl/1195250#1195250 0 Answer by runrig for Why am I not able to query a database from a forked child in Perl? runrig 2009-07-28T16:31:08Z 2009-07-28T16:31:08Z <p>You are asking for trouble by using the same db handle simultaneously in all of the child processes. You should be creating a new connection in each child.</p> <p>Never mind...I read the rest of the code.</p> http://stackoverflow.com/questions/814475/which-repository-contains-lwpparalleluseragent/815091#815091 1 Answer by runrig for Which repository contains LWP::Parallel::UserAgent? runrig 2009-05-02T16:05:38Z 2009-05-02T16:05:38Z <p>If you want to see what ppm packages are available, go to <a href="http://cpan.uwinnipeg.ca/htdocs/faqs/cpan-search.html" rel="nofollow">Kobes Search</a>. There you'll see that <a href="http://cpan.uwinnipeg.ca/search?query=paralleluseragent&amp;mode=dist" rel="nofollow">ParallelUserAgent</a> is currently only available for perl 5.8 in the repositories known to Kobes. I see a lot of <a href="http://matrix.cpantesters.org/?dist=ParallelUserAgent%2B2.57" rel="nofollow">test failures on Windows</a> so I kind of doubt that it'll work there anyway, but it's a pure perl module, so all you really have to do is copy the files from the <a href="http://search.cpan.org/dist/ParallelUserAgent/" rel="nofollow">CPAN distribution</a> to see for yourself whether it works or not.</p> http://stackoverflow.com/questions/773340/can-you-provide-an-example-of-parsing-html-with-your-favorite-parser/773571#773571 3 Answer by runrig for Can you provide an example of parsing HTML with your favorite parser? runrig 2009-04-21T16:51:23Z 2009-04-21T17:03:47Z <p>Language: Perl<br/> Library: <a href="http://search.cpan.org/dist/HTML-Parser/Parser.pm" rel="nofollow">HTML::Parser</a><br/> Purpose: <a href="http://stackoverflow.com/questions/667130/how-can-i-remove-unused-nested-html-span-tags-with-a-perl-regex/667425#667425">How can I remove unused, nested HTML span tags with a Perl regex?</a></p> http://stackoverflow.com/questions/738840/how-can-i-write-perl-that-doesnt-look-like-c/744470#744470 0 Answer by runrig for How can I write Perl that doesn't look like C? runrig 2009-04-13T16:31:46Z 2009-04-15T04:08:45Z <p>This is probably more like C, but is also more simple:</p> <pre><code>use Socket qw(inet_aton inet_ntoa); my $ip = ("192.156.255.255"); my $ip_1 = inet_ntoa(pack("N", unpack("N", inet_aton($ip))+1)); print "$ip $ip_1\n"; </code></pre> <p>Update: I posted this before reading all of the code in the question. The code here just does the incrementing of the ip address.</p> http://stackoverflow.com/questions/512613/how-can-i-set-the-windows-path-variable-from-perl/512682#512682 8 Answer by runrig for How can I set the Windows PATH variable from Perl? runrig 2009-02-04T18:36:03Z 2009-03-26T16:43:09Z <p>If you need to change environment variables globally and permanently, as if you set it in the control panel, then you have to <a href="http://www.perlmonks.org/?node%5Fid=471822" rel="nofollow">muck with the registry</a> (update: and now there are modules to do this, <a href="http://search.cpan.org/dist/Win32-Env/" rel="nofollow">Win32::Env</a> and <a href="http://search.cpan.org/dist/Win32-Env-Path/" rel="nofollow">Win32::Env::Path</a>). Note that changing variables in the registry and "broadcasting" the change will not change the environment variables in some current processes, notably perl.exe and cmd.exe.</p> <p>If you just want to change the current process (and subsequently spawned child processes), then the global %ENV hash variable is what you want (e.g. $ENV{PATH}). See <a href="http://perldoc.perl.org/perlvar.html" rel="nofollow">perldoc perlvar</a>.</p> http://stackoverflow.com/questions/656981/what-software-for-your-own-personal-use-did-you-write/668297#668297 3 Answer by runrig for What software for your own personal use did you write? runrig 2009-03-20T22:58:39Z 2009-03-20T22:58:39Z <p>I wrote an app that finds my wife a temp job (so important in today's economy). It logs into a website, keeps refreshing the list of available jobs, and if there is anything in the list, it selects a gig based on certain criteria.</p> <p>And I may not be the direct user, but I do directly benefit :-)</p> http://stackoverflow.com/questions/667130/how-can-i-remove-unused-nested-html-span-tags-with-a-perl-regex/667425#667425 8 Answer by runrig for How can I remove unused, nested HTML span tags with a Perl regex? runrig 2009-03-20T18:41:38Z 2009-03-20T22:43:42Z <p>Try <a href="http://search.cpan.org/perldoc?HTML::Parser" rel="nofollow">HTML::Parser</a>:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; use HTML::Parser; my @print_span; my $p = HTML::Parser-&gt;new( start_h =&gt; [ sub { my ($text, $name, $attr) = @_; if ( $name eq 'span' ) { my $print_tag = %$attr; push @print_span, $print_tag; return if !$print_tag; } print $text; }, 'text,tagname,attr'], end_h =&gt; [ sub { my ($text, $name) = @_; if ( $name eq 'span' ) { return if !pop @print_span; } print $text; }, 'text,tagname'], default_h =&gt; [ sub { print shift }, 'text'], ); $p-&gt;parse_file(\*DATA) or die "Err: $!"; $p-&gt;eof; __END__ &lt;html&gt; &lt;head&gt; &lt;title&gt;This is a title&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;h1&gt;This is a header&lt;/h1&gt; a &lt;span&gt;b &lt;span style="color:red;"&gt;c&lt;/span&gt; d&lt;/span&gt;e &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/619926/should-i-escape-shell-arguments-in-perl/619968#619968 20 Answer by runrig for Should I escape shell arguments in Perl? runrig 2009-03-06T18:43:52Z 2009-03-20T20:47:50Z <p>If you use <code>system $cmd, @args</code> rather than <code>system "$cmd @args"</code> (an array rather than a string), then you do not have to escape the arguments because no shell is invoked (see <a href="http://perldoc.perl.org/functions/system.html" rel="nofollow">system</a>). <code>system {$cmd} $cmd, @args</code> will not invoke a shell either even if $cmd contains metacharacters and @args is empty (this is documented as part of <a href="http://perldoc.perl.org/functions/exec.html" rel="nofollow">exec</a>). If the args are coming from user input, you will still want to untaint them. See <code>-T</code> in the <a href="http://perldoc.perl.org/perlrun.html" rel="nofollow">perlrun</a> docs, and the <a href="http://perldoc.perl.org/perlsec.html" rel="nofollow">perlsec</a> docs.</p> <p>If you need to read the output or send input to the command, <code>qx</code> and <code>readpipe</code> have no equivalent. Instead, use <code>open my $output, "-|", $cmd, @args</code> or <code>open my $input, "|-", $cmd, @args</code> although this is not portable as it requires a real <code>fork</code> which means Unix only... I think. Maybe it'll work on Windows with it's simulated fork. A better option is something like <a href="http://search.cpan.org/dist/IPC-Run/" rel="nofollow">IPC::Run</a>, which will also handle the case of piping commands to other commands, which neither the multi-arg form of system nor the 4 arg form of open will handle.</p> http://stackoverflow.com/questions/658060/perl-libxml-and-schemas/659026#659026 3 Answer by runrig for Perl, LibXML and Schemas runrig 2009-03-18T16:29:31Z 2009-03-18T19:42:03Z <p>From the <a href="http://search.cpan.org/perldoc?XML::LibXML::Node" rel="nofollow">XML::LibXML docs</a>:</p> <blockquote> <p>A common mistake about XPath is to assume that node tests consisting of an element name with no prefix match elements in the default namespace. This assumption is wrong - by XPath specification, such node tests can only match elements that are in no (i.e. null) namespace. ...(and later)... ...The recommended way is to use the <a href="http://search.cpan.org/perldoc?XML::LibXML::XPathContext" rel="nofollow">XML::LibXML::XPathContext</a> module</p> </blockquote> <p>So, from the perspective of XPath, there is no "default" namespace...for any non-null namespace, you have to specify it in your XPath. The XML::LibXML::XPathContext module lets you create a prefix for any namespace to use in your XPath expression.</p> http://stackoverflow.com/questions/635993/what-is-a-good-way-to-determine-dates-in-a-date-range/636388#636388 3 Answer by runrig for What is a good way to determine dates in a date range? runrig 2009-03-11T21:10:07Z 2009-03-13T00:07:58Z <p>Here's an example using <a href="http://search.cpan.org/dist/DateTime" rel="nofollow">DateTime</a>:</p> <pre><code>use strict; use warnings; use DateTime; my $d1 = DateTime-&gt;new( month =&gt; 1, day =&gt; 29, year =&gt; 2009); my $d2 = DateTime-&gt;new( month =&gt; 2, day =&gt; 3, year =&gt; 2009); while ($d1 &lt;= $d2) { print $d1-&gt;strftime("%m/%d/%Y"),"\n"; $d1-&gt;add(days =&gt; 1); } </code></pre> http://stackoverflow.com/questions/471106/how-can-i-get-a-list-of-indices-on-a-sql-table-using-perl/471194#471194 2 Answer by runrig for How can I get a list of indices on a SQL table using Perl? runrig 2009-01-22T22:57:57Z 2009-03-06T23:49:55Z <p>There's a statistics_info() method in DBI, but unfortunately, the only DBD I've seen it implemented in so far is DBD::ODBC . So if you use ODBC (update: or PostgreSQL!) you're in luck. Otherwise sp_helpindex (or the sysindexes table) is about as good as it gets for Sybase.</p> <p>Here's what I've used for Sybase (in my own OO module - it returns only unique indexes unless the all_indexes argument is true):</p> <pre><code>{ my $sql_t = &lt;&lt;EOT; select sysindexes.name, index_col(object_name(sysindexes.id), sysindexes.indid, syscolumns.colid) col_name from sysindexes, syscolumns where sysindexes.id = syscolumns.id and syscolumns.colid &lt;= sysindexes.keycnt and sysindexes.id = object_id(%s) EOT sub index_info { my ( $self, $table, $all_indexes ) = @_; my $dbh = $self-&gt;{DBH}; my $sql = sprintf $sql_t, $dbh-&gt;quote($table); $sql .= "and sysindexes.status &amp; 2 = 2\n" unless $all_indexes; my $sth = $dbh-&gt;prepare($sql); $sth-&gt;execute(); my @col_names = @{$sth-&gt;{NAME_lc}}; my %row; $sth-&gt;bind_columns(\@row{@col_names}); my %ind; while ($sth-&gt;fetch()) { if ( $row{col_name} ) { push @{$ind{$row{name}}}, lc($row{col_name}); } } return unless %ind; return \%ind; } } </code></pre> <p>Or if your goal is to just copy indexes, maybe you should get the <a href="http://freshmeat.net/projects/dbschema.pl/" rel="nofollow">dbschema.pl</a> utility (which uses Sybase::DBlib). It will generate the "CREATE INDEX" statements for you.</p> http://stackoverflow.com/questions/618953/how-can-i-redirect-the-output-from-one-filehandle-into-another/619581#619581 1 Answer by runrig for How can I redirect the output from one filehandle into another? runrig 2009-03-06T16:54:29Z 2009-03-06T18:02:12Z <p>I like <a href="http://search.cpan.org/dist/Proc-SafeExec/" rel="nofollow">Proc::SafeExec</a> it lets you tie together processes and file handles in almost arbitrary ways easily. Here's an example:</p> <pre><code>use strict; use warnings; use Proc::SafeExec; open(my $ls, "-|", "ls", "-l") or die "Err: $!"; open(my $fh, "&gt;", "tmp.txt") or die "Err: $!"; my $p = Proc::SafeExec-&gt;new({ exec =&gt; [qw(sed -e s/a/b/)], stdin =&gt; $ls, stdout =&gt; $fh, }); $p-&gt;wait(); </code></pre> <p>After looking at IPC::Run, it looks a lot simpler...here's the same example using IPC::Run instead:</p> <pre><code>use IPC::Run qw(run); run [qw(ls -l)], "|", [qw(sed -e s/a/b/)], "&gt;", "tmp.txt"; </code></pre> http://stackoverflow.com/questions/611377/how-can-i-impress-people-with-perls-capabilities/612144#612144 2 Answer by runrig for How can I impress people with Perl's capabilities? runrig 2009-03-04T19:45:40Z 2009-03-05T23:05:47Z <p>I think being able to <a href="http://www.perlmonks.org/?node%5Fid=648493" rel="nofollow">write macros to manipulate the Windows Clipboard</a> is pretty impressive. It has all sorts of possibilities, and gives you the power of Perl from just about any Windows app where you can cut/paste text.</p> http://stackoverflow.com/questions/611981/how-can-i-record-changes-made-during-in-place-editing-in-perl/612044#612044 8 Answer by runrig for How can I record changes made during in-place editing in Perl? runrig 2009-03-04T19:23:28Z 2009-03-05T19:07:00Z <p>Something like this to send all changes to STDERR:</p> <pre><code>perl -pi -e '$old = $_; s/find/replace/g and warn "${ARGV}[$.]: $old $_"; close ARGV if eof' $1/*.html </code></pre> <p>Updated: Fixed $. on multiple files.</p> http://stackoverflow.com/questions/587457/expand-string-inline-in-perl/587509#587509 0 Answer by runrig for Expand string inline in Perl runrig 2009-02-25T19:44:57Z 2009-02-26T00:48:03Z <p>What's your question? Perhaps you are looking for <a href="http://search.cpan.org/dist/ack" rel="nofollow">ack</a>? It seems like you are attempting to <a href="http://perldoc.perl.org/functions/eval.html" rel="nofollow">eval</a> a string (usually a bad idea). You should at least use qr//. Maybe something like:</p> <pre><code>my @regexs = map qr/(?i)$_/, @ARGV; my $search = sub { for my $re (@regexes) { return unless /$re/; } return 1; } open IP, "&lt;", "vm.txt" or die "Err: $!"; while (&lt;IP&gt;) { print $_ if $search-&gt;(); } </code></pre> <p>This could easily be improved. And it's not tested. YMMV.</p> http://stackoverflow.com/questions/576536/how-can-i-print-a-literal-null-for-undefined-values-in-perl/579431#579431 1 Answer by runrig for How can I print a literal 'null' for undefined values in Perl? runrig 2009-02-23T21:24:17Z 2009-02-23T21:24:17Z <p>You don't say what database you're using, but you can do it at the SQL level if you don't mind a non-portable solution, e.g., in Oracle:</p> <pre><code>select NVL(some_column, 'NULL') from some_table </code></pre> http://stackoverflow.com/questions/569772/how-do-i-read-two-items-at-a-time-in-a-perl-foreach-loop/571673#571673 0 Answer by runrig for How do I read two items at a time in a Perl foreach loop? runrig 2009-02-20T23:39:31Z 2009-02-20T23:39:31Z <p>here's an implementation of natatime that doesn't make a copy of the list:</p> <pre><code>sub natatime { my $n = shift; my $list = \@_; sub { return splice @$list, 0, $n; } } my $it = natatime(3, qw(1 2 3 4 5 6)); while ( my @list = $it-&gt;() ) { print "@list\n"; } </code></pre> http://stackoverflow.com/questions/1717963/in-perl-how-can-i-get-the-fields-in-this-csv-string-into-an-array-without-spaces/1718000#1718000 Comment by on In Perl, how can I get the fields in this CSV string into an array without spaces? 2009-11-12T00:13:57Z 2009-11-12T00:13:57Z See my map comment on Paul Nathan's answer. http://stackoverflow.com/questions/1717963/in-perl-how-can-i-get-the-fields-in-this-csv-string-into-an-array-without-spaces/1717990#1717990 Comment by on In Perl, how can I get the fields in this CSV string into an array without spaces? 2009-11-12T00:11:37Z 2009-11-12T00:11:37Z s/// will transform the elements in @groups, therefore this is a useless use of map. You can just do: s/^\s+//, s/\s+$// for @groups; Or use Filter in Algorithm::Loops. http://stackoverflow.com/questions/1707117/how-can-i-install-perls-dbi-module-on-ubuntu Comment by on How can I install Perl's DBI module on Ubuntu? 2009-11-10T16:00:04Z 2009-11-10T16:00:04Z Perhaps you forgot to use tar/gzip? or cd to the directory created by tar? http://stackoverflow.com/questions/132734/presentations-on-switching-from-perl-to-python/133247#133247 Comment by on Presentations on switching from Perl to Python 2009-10-29T22:16:07Z 2009-10-29T22:16:07Z This might work, if you're not only indisputably ahead of the curve, but indisputably ahead of everyone else. Otherwise, you're likely to get &quot;So what, perl can do that too&quot;, and rightfully so. http://stackoverflow.com/questions/1588795/how-can-i-speed-up-perls-processing-of-fixed-width-data/1588819#1588819 Comment by on How can I speed up Perl's processing of fixed-width data? 2009-10-22T15:48:39Z 2009-10-22T15:48:39Z .+ is greedy, so you'll leave one space at the end of your string. You want .+? there. http://stackoverflow.com/questions/1489355/managing-perl-habits-in-a-python-environment/1489505#1489505 Comment by on Managing Perl habits in a Python environment 2009-10-02T18:00:48Z 2009-10-02T18:00:48Z @steveha: In perl, you can have $x, @x, %x, and *x, all different types with the same name. Not entirely best practice to do that, but it's there if you want it. (But yes, &quot;@x&quot; means array x if that's all you're after). http://stackoverflow.com/questions/1478083/how-can-i-efficiently-match-many-different-regex-patterns-in-perl/1478186#1478186 Comment by on How can I efficiently match many different regex patterns in Perl? 2009-09-25T16:30:50Z 2009-09-25T16:30:50Z /o is obsolete/deprecated. Use qr//. And I think in modern perls, as long as $regex doesn't change, then it won't be recompiled anyway. But don't quote me :-) http://stackoverflow.com/questions/1464923/how-can-i-print-only-every-third-index-in-perl-or-python/1465560#1465560 Comment by on How can I print only every third index in Perl or Python? 2009-09-23T15:09:22Z 2009-09-23T15:09:22Z state is nice. But if you execute that line more than once, it'll only work the first time unless the list length is a multiple of 3. http://stackoverflow.com/questions/1406291/how-can-i-use-an-array-as-a-hash-value-in-perl/1406303#1406303 Comment by on How can I use an array as a hash value in Perl? 2009-09-10T16:31:28Z 2009-09-10T16:31:28Z The parenthesis are superfluous. You might say @array=() to empty an array, but you never need 'my @array=()' http://stackoverflow.com/questions/619926/should-i-escape-shell-arguments-in-perl/624676#624676 Comment by on Should I escape shell arguments in Perl? 2009-08-27T18:00:06Z 2009-08-27T18:00:06Z s/backslash/double-quote/ in comment above. http://stackoverflow.com/questions/1331454/how-can-i-check-the-status-of-the-first-program-in-pipeline-in-perls-system/1331538#1331538 Comment by on How can I check the status of the first program in pipeline in Perl's system()? 2009-08-27T17:03:08Z 2009-08-27T17:03:08Z @vt: you can accomplish something similar with open(..., &quot;-|&quot;, ...) or open(..., &quot;|-&quot;, ...) (fork with STDIN/STDOUT attached between child processes), and exec(...), but IPC::Run or Proc::SafeExec is so much easier to use. I'd get over your preference if I were you, rather than using a temp file (which is another type of dependency). I have some code here: perlmonks.org/?node_id=246397 http://stackoverflow.com/questions/1331454/how-can-i-check-the-status-of-the-first-program-in-pipeline-in-perls-system/1331478#1331478 Comment by on How can I check the status of the first program in pipeline in Perl's system()? 2009-08-26T15:08:17Z 2009-08-26T15:08:17Z No need for a temp file. JB has a better answer below. http://stackoverflow.com/questions/1331454/how-can-i-check-the-status-of-the-first-program-in-pipeline-in-perls-system/1331538#1331538 Comment by on How can I check the status of the first program in pipeline in Perl's system()? 2009-08-26T14:57:07Z 2009-08-26T14:57:07Z I'm sure IPC::Run is great, but back when I was looking for something similar I found Proc::SafeExec first. It worked great, though seems a little more verbose then IPC::Run. It's nice to have options :-) http://stackoverflow.com/questions/1248812/what-does-the-s-operator-in-perl-do/1248825#1248825 Comment by on What does the "s!" operator in Perl do? 2009-08-09T01:50:07Z 2009-08-09T01:50:07Z Perl borrows from a lot of languages. It borrowed this from sed. http://stackoverflow.com/questions/1202869/informatica-powercenter-vs-custom-perl-etl-job/1236369#1236369 Comment by on informatica powercenter vs custom perl ETL job? 2009-08-07T16:09:44Z 2009-08-07T16:09:44Z Ville M: yes it has a nice GUI that would be tough to just &quot;throw together&quot; quickly. The idea is that you could quickly throw together the 20% of the app that you'll use 90% of the time. And you'll still be able to do easily things that are totally bass ackwards in Informatica or what it can't do at all.