User Leonardo Herrera - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T09:49:53Zhttp://stackoverflow.com/feeds/user/7841http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1821841/why-does-my-perl-cgi-complain-about-premature-end-of-script-headers/1821947#18219472Answer by Leonardo Herrera for Why does my Perl CGI complain about "Premature end of script headers"?Leonardo Herrera2009-11-30T19:39:57Z2009-11-30T19:39:57Z<p>You probably want <code>system</code>, not <code>exec</code>:</p>
<blockquote>
<p>The exec function executes a system
command and never returns-- use system
instead of exec if you want it to
return.</p>
</blockquote>
<p>See the documentation for <a href="http://perldoc.perl.org/functions/exec.html" rel="nofollow">exec</a>.</p>
http://stackoverflow.com/questions/1808029/perl-to-python-ruby-code-translator/1808493#18084930Answer by Leonardo Herrera for Perl to Python/Ruby code translatorLeonardo Herrera2009-11-27T12:29:23Z2009-11-27T12:29:23Z<blockquote>
<p>"Only <code>perl</code> can parse Perl."</p>
</blockquote>
http://stackoverflow.com/questions/1804202/regex-to-remove-prefix-and-another-to-upper-case-the-first-letter/1804309#18043093Answer by Leonardo Herrera for regex to remove prefix and another to upper case the first letterLeonardo Herrera2009-11-26T15:26:44Z2009-11-26T15:50:30Z<p>In Perl:</p>
<pre><code>#!/usr/bin/perl
while (<>) {
s/\[(?:xx_)?([^]]+)\]/\[\u$1\]/g;
print;
}
</code></pre>
<p>Of course, you can do it from the command line:</p>
<pre><code> perl -pe 's/\[(?:xx_)?([^]]+)\]/\[\u$1\]/g'
</code></pre>
<p>This was tested with your example.</p>
<pre><code>CREATE TABLE [dbo].[xx_SomeAttribute]( [someAttributeID] [int] NOT NULL, [dateTypeID] [tinyint] NOT NULL
CREATE TABLE [Dbo].[SomeAttribute]( [SomeAttributeID] [Int] NOT NULL, [DateTypeID] [Tinyint] NOT NULL
</code></pre>
<p>Please note that <strong>all</strong> text inside brackets is affected.</p>
http://stackoverflow.com/questions/158756/what-is-the-best-image-manipulation-library/1770409#17704090Answer by Leonardo Herrera for What is the best image manipulation library?Leonardo Herrera2009-11-20T13:26:52Z2009-11-20T13:26:52Z<p>Well, when I get to use Delphi, <a href="http://graphics32.org/wiki/" rel="nofollow">Graphics32</a> is a joy to use.</p>
http://stackoverflow.com/questions/1756831/perl-search-and-replace-with-variables/1765497#17654970Answer by Leonardo Herrera for Perl search and replace with variablesLeonardo Herrera2009-11-19T18:27:06Z2009-11-19T18:27:06Z<p>Well, let's jump into the XML bandwagon: use an XML library like <a href="http://search.cpan.org/dist/XML-LibXML/" rel="nofollow">XML::LibXML</a> to manipulate XML documents.</p>
<pre><code>use XML::LibXML;
my $dom = XML::LibXML->load_xml(string => $data);
foreach my $field (sort keys %field_list) {
my $value = $field_list{$field};
if (my $enum_string = &convert_enumeration_to_string($field, $value)) {
foreach my $node ($dom->findnodes("//xml/${field}[. = '$value']")
->get_nodelist) {
my $element = $dom->createElement($field);
$element->appendText($enum_string);
$node->replaceNode($element);
}
}
}
print $dom->toString;
</code></pre>
http://stackoverflow.com/questions/1751098/are-there-any-drawbacks-to-interpolation-in-perl/1751133#17511331Answer by Leonardo Herrera for Are there any drawbacks to interpolation in Perl?Leonardo Herrera2009-11-17T19:21:17Z2009-11-17T19:21:17Z<p>(This should probably be community wiki.)</p>
<p>The only obvious issue that comes to my mind is the interpolation of arrays. Compare</p>
<pre><code>print @arr, "\n";
</code></pre>
<p>with</p>
<pre><code>print "@arr\n";
</code></pre>
<p>Also, sometimes complicated dereferencing don't work well with interpolation, but those are kind of rare. </p>
http://stackoverflow.com/questions/1727701/creating-and-placing-objects-in-the-pdf-using-c-or-perl/1729108#17291080Answer by Leonardo Herrera for Creating and Placing Objects in the PDF using C# or perlLeonardo Herrera2009-11-13T13:05:56Z2009-11-13T15:27:24Z<p>I would have used a Perl script to generate LaTeX scripts. But that's me.</p>
<p><strong>Edit:</strong></p>
<p>Well, this is what I love about Stackoverflow: lots of interesting and fun problems to solve. My wife is kind of a Sudoku junkie, so I thought printing a couple of booklets to keep her happy wouldn't hurt.</p>
<p><em>Note: A sample result PDF file is available at <a href="http://www.scribd.com/doc/22511784/Puzzle1-Booklet" rel="nofollow">Scribd</a>.</em></p>
<p>First, I went to <a href="http://www.ctan.org/" rel="nofollow">CTAN</a> (in case you don't know, this is CPAN's big brother.) I found a module for LaTeX called (what else?) <a href="http://www.ctan.org/tex-archive/macros/latex/contrib/sudoku/" rel="nofollow">sudoku</a>. I read the documentation and deemed it good enough.</p>
<p>Secondly, I wanted it in booklet format. This time, the module I found on CTAN was too obscure and difficult to use, so I kept searching and found an article named <a href="http://www.svenhartenstein.de/latex-booklets.php" rel="nofollow">LaTeX: creating a5 booklets</a> written by Sven Hartenstein. The first line on this article says "this is how I produce A5 booklets printed on A4 paper (which is then folded once) with LaTeX ..."</p>
<p>Last, I searched CPAN for a good Sudoku generator. There are lots of solvers, but I just wanted to print a puzzle, so I settled with <a href="http://search.cpan.org/dist/Games-Sudoku-Component/" rel="nofollow">Games::Sudoku::Component</a> and I wrote a little Perl script for generate the TeX file, called sudoku.pl:</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use Games::Sudoku::Component;
my $sudoku = Games::Sudoku::Component->new(size => 9);
print '
\documentclass[a5paper,headsepline,titlepage,10pt,normalheadings,DIVcalc]{scrbook}
\usepackage{sudoku}
\begin{document}
\title{Sudoku}
\author{L. Herrera}
\maketitle
\renewcommand*\sudokuformat[1]{\Large\sffamily#1}
\setlength\sudokusize{6cm}
\setlength\sudokuthickline{1pt}
';
print "\\chapter*{Easy puzzles}\n";
foreach (1 .. 16) {
print "\\section*{Puzzle $_}\n";
$sudoku->generate(blanks => 50);
my $puzzle = $sudoku->as_string(
separator => '|',
linebreak => "|.\n|",
);
$puzzle =~ s/0/ /gs;
print "\\begin{sudoku}\n|", $puzzle, "|.\n";
print "\\end{sudoku}\n\n\n";
}
print "\\end{document}\n";
</code></pre>
<p>Then, I copied verbatim the script created by Sven and named it <code>booklet.sh</code>:</p>
<pre><code>#!/bin/sh
#
# This script takes an A5 latex file as input and produces an A4
# document (both ps and pdf) for printing an A5 booklet
#
# Usage:
# booklet [filename without extension]
latex $1
latex $1
# make an a5 ps from dvi:
dvips -t a5 -o $1.ps $1.dvi
# sort pages
psbook $1.ps tmp1.ps
# put two pages on one a4 sheet
psnup -Pa5 -pa4 -2 tmp1.ps tmp2.ps
# change a5 to a4 in ps file
sed 's/^%%DocumentPaperSizes: A5/%%DocumentPaperSizes: a4/g' < tmp2.ps > $1_booklet.ps
# produce pdf files, pdflatex ist used (twice) to get bookmarks
pdflatex $1.tex
pdflatex $1.tex
ps2pdf -sPAPERSIZE=a4 $1_booklet.ps
# delete tmp files
rm tmp1.ps tmp2.ps
</code></pre>
<p>Now, I regenerate a small booklet ready for print just by executing</p>
<pre><code>perl sudoku.pl > puzzle1.tex && ./booklet.sh puzzle1
</code></pre>
http://stackoverflow.com/questions/1705695/replace-specific-inline-css-with-html-counterpart-in-perl/1710404#17104041Answer by Leonardo Herrera for Replace specific inline CSS with HTML counterpart in PerlLeonardo Herrera2009-11-10T19:06:45Z2009-11-10T20:04:44Z<p>By using <a href="http://search.cpan.org/perldoc?HTML%3A%3AElement" rel="nofollow">HTML::TreeBuilder</a> you are definitely on the right track; for parsing CSS, I've just found <a href="http://search.cpan.org/perldoc?CSS%3A%3ADOM" rel="nofollow">CSS::DOM</a>. It is a really interesting module, which allows you to access properties with little effort.</p>
<pre><code>#!/usr/bin/perl
use warnings;
use strict;
use HTML::TreeBuilder;
use CSS::DOM::Style;
my $html = <<HTML;
<p style="text-align:center"><span style="font-weight:bold;font-style:italic;">Some random text here. What's here doesn't matter so much as what needs to ha>
HTML
my $tb = HTML::TreeBuilder->new_from_content($html);
my @replacements = (
{ property => 'font-style', value => 'italic', replacement => 'em' },
{ property => 'font-weight', value => 'bold', replacement => 'strong' },
{ property => 'text-align', value => 'center', replacement => 'center' },
);
# build a sensible list of tag names (or just use sub { 1 })
my @nodes = $tb->look_down(sub { $_[0]->tag =~ /^(p|span)$/ });
for my $el (@nodes) {
if ($el->attr('style')) {
my $st = CSS::DOM::Style::parse($el->attr('style'));
if ($st) {
foreach my $h (@replacements) {
if ($st->getPropertyValue($h->{property}) eq $h->{value}) {
$st->removeProperty($h->{property});
my $new = HTML::Element->new($h->{replacement});
foreach my $inner ($el->detach_content) {
$new->push_content($inner);
}
$el->push_content($new);
}
}
$el->attr('style', $st->cssText ? $st->cssText : undef);
}
}
}
print $tb->as_HTML(undef, "\t");
</code></pre>
http://stackoverflow.com/questions/1654326/has-anyone-implemented-peter-norvigs-spellchecker-in-perl/1667226#16672261Answer by Leonardo Herrera for Has anyone implemented Peter Norvig's spellchecker in Perl?Leonardo Herrera2009-11-03T13:04:29Z2009-11-03T13:04:29Z<p>Uh, I did it as an exercise. Had to use hashes instead of them nifty dict objects; yep, it is a little cumbersome, but not that much.</p>
http://stackoverflow.com/questions/1665636/how-can-i-reclaim-memory-from-perl/1667010#16670101Answer by Leonardo Herrera for How can I reclaim memory from perl?Leonardo Herrera2009-11-03T12:21:57Z2009-11-03T12:21:57Z<p>Undef often, depth-first.</p>
http://stackoverflow.com/questions/1661653/how-can-i-parse-a-mathematical-function-from-user-input-in-perl/1663488#16634880Answer by Leonardo Herrera for How can I parse a mathematical function from user input in Perl?Leonardo Herrera2009-11-02T20:29:04Z2009-11-02T23:40:30Z<p><a href="http://search.cpan.org/perldoc/Math%3A%3AExpression%3A%3AEvaluator" rel="nofollow">Math::Expression::Evaluator</a> <em>almost</em> does what you want, except that has no <code>abs()</code> and no way to add user functions (callbacks.) It took me about five minutes to add some rudimentary support, thought.</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use Math::Trig;
use Math::Expression::Evaluator;
my $expr = join ' ', @ARGV;
die "No expression provided" unless $expr;
my $m = Math::Expression::Evaluator->new;
# NOT in the distribution
$m->add_user_function('abs', sub { abs($_[0]) });
my $func = $m->parse($expr);
die "Cannot parse" unless $func;
for my $i (0 .. 10){
my $rads = deg2rad($i);
my $res = $func->val({x => $_});
print("$i Grad: ($rads RAD|$res RES) \n");
}
</code></pre>
http://stackoverflow.com/questions/1658594/why-doesnt-the-match-operator-match-anything/1661303#16613033Answer by Leonardo Herrera for Why doesn't the match operator match anything?Leonardo Herrera2009-11-02T13:22:24Z2009-11-02T13:22:24Z<p>Okay, this is not exactly what you are asking, but I think (based in this and your older question) that you are parsing HTML.</p>
<p>Let me tell you this: regexes aren't the solution. You should use <a href="http://search.cpan.org/~petek/HTML-Tree-3.23/lib/HTML/TreeBuilder.pm" rel="nofollow">HTML::TreeBuilder</a> to parse HTML documents, because HTML documents are horribly messy.</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use HTML::TreeBuilder;
my $root = HTML::TreeBuilder->new_from_file(\*DATA);
foreach my $div ($root->find_by_tag_name('div')) {
if ($div->attr('class') eq 'v120WrapperInner') {
foreach (my $a = $div->find_by_tag_name('a')) {
print "m:\n", $a->attr('href'), "\n", $a->attr('title'), "\n";
}
}
}
</code></pre>
http://stackoverflow.com/questions/1598053/how-can-i-remove-external-links-from-html-using-perl/1609685#16096850Answer by Leonardo Herrera for How can I remove external links from HTML using Perl?Leonardo Herrera2009-10-22T20:13:34Z2009-10-22T20:13:34Z<p>Yet another solution. I love <a href="http://search.cpan.org/~petek/HTML-Tree-3.23/lib/HTML/Tree.pm" rel="nofollow">HTML::TreeBuilder</a> and family.</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use HTML::TreeBuilder;
my $root = HTML::TreeBuilder->new_from_file(\*DATA);
foreach my $a ($root->find_by_tag_name('a')) {
if ($a->attr('href') !~ /^#/) {
$a->replace_with_content($a->as_text);
}
}
print $root->as_HTML(undef, "\t");
__DATA__
<a HREF="#FN1" name="01">1</a>
some other html
<a href="155.htm">No. 155
</a> <!-- end tag not necessarily on the same line -->
<a class="external" href="http://example.com">An example you
might not have considered</a>
<p>Maybe you did not consider <a
href="test.html">click here >>></a>
either</p>
</code></pre>
http://stackoverflow.com/questions/1600551/how-can-i-plot-a-time-series-graph-with-perl/1603348#16033480Answer by Leonardo Herrera for How can I plot a time series graph with Perl?Leonardo Herrera2009-10-21T20:20:06Z2009-10-21T20:20:06Z<p>Do you need your graph to be generated in real time, or is for a one-off report? If the latter, then you can use DateTime modules to generate Excel values and graph them in Excel (or its open-source counterpart.)</p>
<pre><code>use DateTime::Format::MySQL;
use DateTime::Format::Excel;
my $dt = DateTime::Format::MySQL->parse_datetime( '2003-01-16 23:12:01' );
print $dt, "\n";
my $daynum = DateTime::Format::Excel->format_datetime($dt);
print $daynum, "\n";
</code></pre>
<p>Time ago I did something like this using <a href="http://sourceforge.net/projects/asymptote/" rel="nofollow">Asymptote</a>. It is an incredible package, but it's not easy to use.</p>
http://stackoverflow.com/questions/1586709/is-there-a-c-equivalent-for-perls-carp-module/1588455#15884551Answer by Leonardo Herrera for Is there a C equivalent for Perl's Carp module?Leonardo Herrera2009-10-19T12:37:11Z2009-10-19T12:37:11Z<p>Well, I never tried to show the call stack, but for my programs I used to do the following.</p>
<p>First, I define a function that do the actual logging. This is <strong>just an example</strong>; please note that this function is highly insecure (buffer overrun anyone?)</p>
<pre><code>void strLog(char *file, char *function, int line, char *fmt, ...)
{
char buf[1024];
va_list args;
va_start(args, fmt);
vsprintf(buf, fmt, args);
va_end(args);
fprintf(stderr, "%s:%s:%d:%s\n", file, function, line, buf);
}
</code></pre>
<p>However, this is not very practical. What is practical is to use a macro to call this function.</p>
<pre><code>#define die( ... ) \
strLog( __FILE__, __PRETTY_FUNCTION__, \
__LINE__, __VA_ARGS__ )
</code></pre>
<p>Then you can call just like <code>printf()</code>.</p>
<pre><code>if (answer == 42) die("Oh, %d of course.", answer);
</code></pre>
<p>and you would get something like this:</p>
<pre><code>main.c:10:somefunc: Oh, 42 of course.
</code></pre>
<p>Well, no backtrace but something's something.</p>
http://stackoverflow.com/questions/1565402/fast-algorithm-to-check-membership-of-a-pair-of-numbers-in-large-x-y-coordinate/1566385#15663851Answer by Leonardo Herrera for Fast algorithm to check membership of a pair of numbers in large (x,y) coordinates in PerlLeonardo Herrera2009-10-14T13:55:10Z2009-10-14T13:55:10Z<p>Restating your question, do you want to print <em>all</em> ranges in a file that contains the (x, y) pair and also have the same id? If that's the case, you don't need to parse the file and storing it in memory.</p>
<pre><code>while (<DATA>) {
my ($chr, $tx, $ty) = split /\s+/;
print "IN : $chr, $tx, $ty\n"
if $chr eq $chrid
&& $point_to_check_x >= $tx
&& $point_to_check_y <= $ty;
}
</code></pre>
http://stackoverflow.com/questions/262652/php-tag-library-3PHP tag libraryLeonardo Herrera2008-11-04T17:41:08Z2009-10-03T03:48:05Z
<p>I'm writing a small web app as a side project. It's done in PHP.</p>
<p>Boy, how I loathe PHP.</p>
<p>Well, actually, I don't hate PHP per se. I can't stand HTML intermixed with code. I can barely look at one of those templates without feeling nauseated. I know, when you have an army of "web designers" at your disposal, and you are the only developer, it makes sense to use some templating system. I heard about Smarty a lot. But in my case it has been always the source of yet more work.</p>
<p>Anyways, this time I'm going solo, so I don't want to touch an HTML template with the proverbial pole. So what I'm currently doing looks like this:</p>
<pre><code><?php
$page = new html_page('My wonderful page');
$page->add_contents(new html_tag('p', 'It works', array('id' => 'helloworld', 'class' => 'somecssclass')));
echo $page->render();
?>
</code></pre>
<p>Everything belongs to a nice hierarchy of objects, which is good and dandy. Of course I have a lot of smaller classes, and I'm thinking of using dynamic classes (for example, 'html_a' will automagically create an html_tag object of type 'a'.) </p>
<p>Now, my question: it seems that nobody else is doing this. Why? I'm too far out there, and my feeble, oxygen deprived mind is missing something from the big picture?</p>
<p>(I clearly remember an open source library that did exactly this, but can't find it anymore. So unless I'm actually imagining things, I'm not the only one who thought of this approach to render HTML.)</p>
<p>Do you have any thoughts on this? (please refrain to recommend another language; my favorite language is Perl, so I can <em>outfan</em> you easily :-). I'm stuck with PHP.)</p>
<p><strong>Edit</strong></p>
<p>Uh-uh, seems that I struck a nerve. Some clarifications:</p>
<ol>
<li>I'm the only developer in this project.</li>
<li>How I'm mixing code with HTML? An "html_tag" object from my library is pretty similar to, say, a node in the DOM. The "render" method is the one that creates html (beautifully indented, I must add) but I don't write any opening or closing tag anywhere.</li>
<li>I create small objects for several tasks. These objects have methods to build tag objects; these resulting objects are then inserted into, say, tables or pages.</li>
<li>Did I mention that I'm stuck with PHP?</li>
<li>My library have some primitive access methods to find objects. So the iterator example posted in <a href="http://stackoverflow.com/questions/262652/php-tag-library#262881">26288</a> can be implemented with relative ease.</li>
<li>I'm not worried about performance (yet.) I've always thought that's a really nice problem to have, but I'm not there yet.</li>
</ol>
http://stackoverflow.com/questions/1487629/regexp-perl-code-for-handling-both-dots-and-commas-as-valid-decimal-separators/1487937#14879370Answer by Leonardo Herrera for Regexp/perl code for handling both dots and commas as valid decimal separatorsLeonardo Herrera2009-09-28T16:15:57Z2009-09-30T18:27:26Z<p>Trying to <em>guess</em> the locale of anything is always an ongoing effort, at best. What are you using this function for? The following tests look simply wrong to me:</p>
<pre><code>ok(&parse_decimal("12.34") == 12.34);
ok(&parse_decimal("12.345") == 12345);
</code></pre>
<p>If I were parsing a single document with values on it I would be very irritated to find this result.</p>
<p>I would design this function with some knobs and dials in the package to use either the locale information (using <a href="http://perldoc.perl.org/perllocale.html#The-localeconv-function" rel="nofollow">localeconv()</a>) or ad-hoc values (like in <a href="http://stackoverflow.com/questions/1487629/regexp-perl-code-for-handling-both-dots-and-commas-as-valid-decimal-separators/1487663#1487663">this answer</a>.)</p>
<p><strong>Edit:</strong>
Okay, let me try to explain it better. For "single source" I mean a context or scope delimiter. I know you can import from different sources; that's the very nature of importing data. We also know that we cannot know beforehand the encoding of these different sources.</p>
<p>What I would do is to is to do a preliminary scan of the file being imported (just taking a sample, not reading it whole) and check the numeric values. If I can determine the locale from the sample, then I would try to import the whole file <strong>using the same locale</strong>. To me, one file is a single source, and I wouldn't expect it to suddenly change its locale.</p>
<p>That's why I would ask again: what is the purpose of this program?</p>
http://stackoverflow.com/questions/1489023/why-does-my-perl-for-loop-exit-early/1489670#14896702Answer by Leonardo Herrera for Why does my Perl for loop exit early?Leonardo Herrera2009-09-28T22:22:00Z2009-09-28T22:22:00Z<p>There are lots of strange things in your code: you are initializing a matrix then not using it; reading a whole file into an array; scanning a string C style but then not doing anything with the unmatched values; and finally, just printing the two last processed values (which, in your case, are the two first elements of your array, since you are using pop.)</p>
<p>Here's a guess.</p>
<pre><code>use strict;
my $aminoacids = 'ARNDCQEGHILKMFPSTWYV';
# Preparing a regular expression. This is kind of useful if processing large
# amounts of data. This will match anything that is not in the string above.
my $regex = qr([^$aminoacids]);
# Our work function.
sub do_something {
my ($a, $b) = @_;
$a =~ s/$regex//g; # removing unwanted characters
$b =~ s/$regex//g; # ditto
# Printing, saving, whatever...
print "Something: $a - $b\n";
return ($a, $b);
}
my $prev;
while (<>) {
chomp;
if ($prev) {
do_something($prev, $_);
$prev = undef;
} else {
$prev = $_;
}
}
print STDERR "Warning: trailing data: $prev\n"
if $prev;
</code></pre>
http://stackoverflow.com/questions/1393168/is-999-9-a-real-number-in-perl/1394121#13941211Answer by Leonardo Herrera for Is 999...9 a real number in Perl?Leonardo Herrera2009-09-08T13:44:36Z2009-09-08T13:44:36Z<p>Also, you may want to take a look at <a href="http://perldoc.perl.org/bignum.html" rel="nofollow">bignum</a> in the Perl documentation. </p>
http://stackoverflow.com/questions/1198687/can-i-read-and-write-to-multiple-filehandles-simulateously-perl/1201148#12011481Answer by Leonardo Herrera for Can I read and write to multiple filehandles simulateously (Perl)?Leonardo Herrera2009-07-29T15:33:02Z2009-07-29T15:33:02Z<p>From what I gather, your script wants to convert a file in the following form:</p>
<pre><code>define({{VAR1}}, {{__VALUE__}})
define({{VAR2}}, {{__VALUE__}})
define({{VAR3}}, {{__VALUE__}})
define({{VAR4}}, {{__VALUE__}})
</code></pre>
<p>to something like this:</p>
<pre><code>define({{VAR1}}, {{}})
define({{VAR2}}, {{VALUE2}})
define({{VAR3}}, {{VALUE3}})
define({{VAR4}}, {{}})
</code></pre>
<p>The following works. I don't know what manda_def means, and also I didn't bother to create an actual variable replacement function.</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
sub work {
my ($ref, $newref, $manda_def) = @_;
# Open needed files (ref & default)
open(my $refhandle, '<', $ref) or die "Cannot open ref $ref : $!";
open(my $newrefhandle, '>', $newref) or die "Cannot open new ref $newref: $!";
# Read each line
while (my $refline = <$refhandle>) {
# if line read is not an editable macro
if ($refline =~ /^define\({{(.+)}},\s+{{.*__VALUE__.*}}\)/){
my $parvalue = _ref_param_handling($1, $manda_def); # manda_def?
# Substitution in ref
$refline =~ s/__VALUE__/$parvalue/;
# Param not specified and no default value
$refline =~ s/__COM__/#/ if $parvalue eq '';
}
print $newrefhandle $refline;
}
close $newrefhandle;
close $refhandle;
return $newref;
}
sub _ref_param_handling {
my %parms = (VAR2 => 'VALUE2', VAR3 => 'VALUE3');
return $parms{$_[0]} if exists $parms{$_[0]};
}
work('ref.txt', 'newref.txt', 'manda.txt');
</code></pre>
http://stackoverflow.com/questions/1091634/why-do-perl-variables-need-to-start-with/1092410#10924106Answer by Leonardo Herrera for Why do Perl variables need to start with $, %,@ ?Leonardo Herrera2009-07-07T13:41:34Z2009-07-07T13:41:34Z<p>Several reasons are <a href="http://books.google.com/books?id=oh8lz4A3sUsC&pg=PA54&lpg=PA54" rel="nofollow">explained</a> by Larry Wall et al in "Programming Perl":</p>
<blockquote>
<p>Within any given namespace [...] every variable type has its own subnamespace, determined by the funny character. You can, without fear of conflict, use the same name for a scalar variable, an array, or a hash (or, for that matter, a filehandle, a subroutine matter, a label or your pet llama.)</p>
<p>[...]</p>
<p>Like most computer languages, Perl has a list of reserved words that it recognizes as special keywords. However, because variable names always start with a funny character, reserved words don't actually conflict with variable names.</p>
</blockquote>
http://stackoverflow.com/questions/1040291/parsing-comma-separated-lines-and-calculating-sum/1040923#10409230Answer by Leonardo Herrera for Parsing comma separated lines and calculating sumLeonardo Herrera2009-06-24T20:53:06Z2009-06-24T20:53:06Z<p>Well, it seems that everybody is trying to understand what you really want. I don't understand it, but it seems that you only want to capture the sum of all lines that contain a given key=value pair. Except, you don't actually care for the key.</p>
<p>Or something like that.</p>
<p>So, my question would be: can you provide the expected output for the example set of data?</p>
<p>Anyways, here's my try (the '#/' comments are just to help the syntax highlighter.)</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
my %h;
my @ord_keys;
while (<DATA>) {
chomp;
my @cols = split /,\s*/; #/
my $val = pop @cols;
foreach my $k (@cols) {
if (exists($h{$k})) {
$h{$k} += $val;
} else {
push @ord_keys, $k;
$h{$k} = $val;
}
}
}
foreach my $key (@ord_keys) {
my ($k, $v) = split /=/, $key; #/
print "$k = $v, sum = $h{$key}\n";
}
__DATA__
3=5002, 0=10002, 5=1, 4=1, 7=1, 8=1, 9=0, 1=14002, 6=5, 200
3=5002, 0=10002, 5=0, 4=1, 7=0, 8=0, 9=1, 1=14002, 6=5, 300
3=5001, 0=10001, 5=0, 4=0, 7=0, 8=0, 9=0, 1=14001, 6=3, 1000
3=5001, 0=10004, 5=1, 4=1, 7=2, 8=2, 9=1, 1=14001, 6=3, 10000
3=5003, 0=10004, 5=2, 4=0, 7=2, 8=2, 9=1, 1=14003, 6=8, 5000
3=5003, 0=10004, 5=3, 4=1, 7=2, 8=1, 9=0, 1=14003, 6=8, 1000
</code></pre>
<p>And the results:</p>
<pre><code>3 = 5002, sum = 500
0 = 10002, sum = 500
5 = 1, sum = 10200
4 = 1, sum = 11500
7 = 1, sum = 200
8 = 1, sum = 1200
9 = 0, sum = 2200
1 = 14002, sum = 500
6 = 5, sum = 500
5 = 0, sum = 1300
7 = 0, sum = 1300
8 = 0, sum = 1300
9 = 1, sum = 15300
3 = 5001, sum = 11000
0 = 10001, sum = 1000
4 = 0, sum = 6000
1 = 14001, sum = 11000
6 = 3, sum = 11000
0 = 10004, sum = 16000
7 = 2, sum = 16000
8 = 2, sum = 15000
3 = 5003, sum = 6000
5 = 2, sum = 5000
1 = 14003, sum = 6000
6 = 8, sum = 6000
5 = 3, sum = 1000
</code></pre>
<p>Comments welcome.</p>
http://stackoverflow.com/questions/1027634/how-can-i-convert-json-boolean-values-for-output-using-xmlout/1028082#1028082-2Answer by Leonardo Herrera for How can I convert JSON boolean values for output using XMLout?Leonardo Herrera2009-06-22T16:14:56Z2009-06-23T01:35:08Z<p><strong><em>Edit:</strong> I wrote this answer before all the edits to the original question. The question as stated now is that the original poster wants to create an XML-ready structure for using with XML::Simple; originally stated, it seemed that he just wanted to put the JSON structure in a text node.</em></p>
<p>Perl objects need to be JSON-encoded before sending them through the wire.</p>
<p>From your example:</p>
<pre><code>my $text = '{"a":"x","b":true}';
my $result = decode_json($text);
print JSON->new->utf8->pretty(1)->encode($result);
</code></pre>
<p>You get the following:</p>
<pre><code>$ perl json.pl
{
"a" : "x",
"b" : true
}
</code></pre>
http://stackoverflow.com/questions/1025342/how-can-i-store-a-perl-array-in-an-array/1027284#10272841Answer by Leonardo Herrera for How can I store a Perl array in an array?Leonardo Herrera2009-06-22T13:43:28Z2009-06-22T13:43:28Z<p>Use <a href="http://perldoc.perl.org/functions/splice.html" rel="nofollow">splice</a>.</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use Data::Dumper;
my @array1 = ("element 1", "element 2", "element 3");
my $array_ref = ["this will", "go between", "element 1 and 2"];
splice(@array1, 1, 0, $array_ref);
print Dumper \@array1;
</code></pre>
<p>This will print the following:</p>
<pre><code>$VAR1 = [
'element 1',
[
'this will',
'go between',
'element 1 and 2'
],
'element 2',
'element 3'
];
</code></pre>
http://stackoverflow.com/questions/1016910/how-can-i-strip-invalid-xml-characters-from-strings-in-perl/1018910#10189103Answer by Leonardo Herrera for How can I strip invalid XML characters from strings in Perl?Leonardo Herrera2009-06-19T16:38:25Z2009-06-19T18:54:23Z<p>Okay, this seems to be already answered, but what the hey. If you want to author XML documents, you <strong>must</strong> use an XML library.</p>
<pre><code>#!/usr/bin/perl
use strict;
use XML::LibXML;
my $doc = XML::LibXML::Document->createDocument('1.0');
$doc->setURI('http://example.com/myuri');
$doc->setDocumentElement($doc->createElement('root-node'));
$doc->documentElement->appendTextChild('text-node',<<EOT);
This node contains &, ñ, á, <, >...
EOT
print $doc->toString;
</code></pre>
<p>This produces the following:</p>
<pre><code>$ perl test.pl
<?xml version="1.0"?>
<root-node><text-node> This node contains &amp;, &#x6C821;, &lt;, &gt;...
</text-node></root-node>
</code></pre>
<p><strong>Edit:</strong> I now see that you are already using XML::LibXML. This should do the trick.</p>
http://stackoverflow.com/questions/952283/how-can-i-search-css-with-perl/952387#9523872Answer by Leonardo Herrera for How can I search CSS with Perl?Leonardo Herrera2009-06-04T18:46:49Z2009-06-04T19:33:22Z<p>Well, this is not as simple as it seems.</p>
<p>CSS classes can be defined in many ways. For example,</p>
<pre><code> .classy {
color: black;
}
</code></pre>
<p>Good luck using a line-by-line approach for parsing that.</p>
<p>Actually, my first approach would be searching CPAN. This looks promising:</p>
<p><a href="http://search.cpan.org/perldoc?CSS" rel="nofollow">CSS - Object oriented access to Cascading Style Sheets (CSS)</a></p>
<p><strong>Edit:</strong></p>
<p>I installed HTML::TreeBuilder and CSS modules from CPAN and concocted the following aberration:</p>
<pre><code>use strict;
use HTML::TreeBuilder;
use CSS;
foreach my $file_name (@ARGV) {
my $tree = HTML::TreeBuilder->new; # empty tree
$tree->parse_file($file_name);
my $styles = $tree->find('style');
if ($styles) {
foreach my $style ($styles) {
# This is an insane hack, not guarantee
# to work in the future.
my $css = CSS->new;
$css->read_string(join "\n", @{$style->{_content}});
print $css->output;
}
}
$tree = $tree->delete;
}
</code></pre>
<p>This thing only prints all the CSS selectors from list of HTML files, but nicely formatted so you should be able to continue from here.</p>
http://stackoverflow.com/questions/884512/how-to-cap-and-round-number-in-ruby/884578#8845781Answer by Leonardo Herrera for How to cap and round number in rubyLeonardo Herrera2009-05-19T19:24:55Z2009-05-19T19:35:25Z<p>Don't get it. I see in the <a href="http://www.ruby-doc.org/core/classes/Float.html#M000242" rel="nofollow">core documentation</a> that there is a <code>round()</code> method in the <code>Float</code> class.</p>
<blockquote>
<p><strong>flt.round => integer</strong></p>
<p>Rounds flt to the nearest integer. Equivalent to:</p>
</blockquote>
<pre><code>def round
return (self+0.5).floor if self > 0.0
return (self-0.5).ceil if self < 0.0
return 0
end
1.5.round #=> 2 (-1.5).round #=> -2
</code></pre>
http://stackoverflow.com/questions/278526/what-was-your-biggest-nix-blooper/315236#3152360Answer by Leonardo Herrera for What was your biggest *nix blooper?Leonardo Herrera2008-11-24T19:53:19Z2008-11-24T19:53:19Z<p>This wasn't me, I swear. </p>
<p><code>killall -</code> on a Tru64 cluster.</p>
http://stackoverflow.com/questions/308279/c-strings-vs/309009#3090090Answer by Leonardo Herrera for C++ strings: [] vs. *Leonardo Herrera2008-11-21T14:56:29Z2008-11-21T14:56:29Z<p>Okay, I had left two negative comments. That's not really useful; I've removed them.</p>
<ul>
<li>The following code initializes a char pointer, pointing to the start of a dynamically allocated memory portion (in the heap.)</li>
</ul>
<pre><code>
char *str = new char[100];
</code></pre>
<p>This block can be freed using <code>delete []</code>.</p>
<ul>
<li>The following code creates a char array in the stack, initialized to the value specified by a string literal.</li>
</ul>
<pre><code>
char [] str2 = "Hi world!";
</code></pre>
<p>This array can be modified without problems, which is nice. So</p>
<pre><code>
str2[0] = 'N';
cout << str2;
</code></pre>
<p>should print <code>Ni world!</code> to the standard output, making certain knights feel very uncomfortable.</p>
<ul>
<li>The following code creates a char pointer in the stack, pointing to a <strong>string literal</strong>... The pointer can be reassigned without problems, but the pointed block cannot be modified (this is undefined behavior; it segfaults under Linux, for example.)</li>
</ul>
<pre><code>
char *str = "Hi all";
str[0] = 'N'; // ERROR!
</code></pre>
<ul>
<li>The following two declarations </li>
</ul>
<pre><code>
void upperCaseString(char *_str) {};
void upperCaseString(char [] _str) {};
</code></pre>
<p>look the same <strong>to me</strong>, and in your case (you want to uppercase a string in place) it really doesn't matters.</p>
<p>However, all this begs the question: why are you using <code>char *</code> to express strings in C++?</p>
http://stackoverflow.com/questions/1839551/how-can-i-get-the-second-level-keys-in-a-perl-hash-of-hashes/1839742#1839742Comment by Leonardo Herrera on How can I get the second-level keys in a Perl hash-of-hashes?Leonardo Herrera2009-12-04T13:03:07Z2009-12-04T13:03:07ZI really don't understand the downvote...http://stackoverflow.com/questions/1839551/how-can-i-get-the-second-level-keys-in-a-perl-hash-of-hashes/1839742#1839742Comment by Leonardo Herrera on How can I get the second-level keys in a Perl hash-of-hashes?Leonardo Herrera2009-12-03T17:50:20Z2009-12-03T17:50:20ZYes, <i>if</i> you have Key1.http://stackoverflow.com/questions/1821517/how-can-i-controll-while-loop-into-another-while-loopComment by Leonardo Herrera on how can i controll while loop into another while loopLeonardo Herrera2009-12-01T14:25:16Z2009-12-01T14:25:16Zcballou: I'm one of those individuals. That's not the problem in this case. Proving sample data for both tables and the expected output would have helped. Just take a look at the answers -- all of them are in the form "I don't understand what you want, but here's a guess."http://stackoverflow.com/questions/1814447/why-is-last-called-last-in-perl/1814451#1814451Comment by Leonardo Herrera on Why is 'last' called 'last' in Perl?Leonardo Herrera2009-11-30T19:04:44Z2009-11-30T19:04:44ZOkay, let's take a break. At last.http://stackoverflow.com/questions/1821517/how-can-i-controll-while-loop-into-another-while-loopComment by Leonardo Herrera on how can i controll while loop into another while loopLeonardo Herrera2009-11-30T18:43:54Z2009-11-30T18:43:54ZYour question makes no sense. Please try to explain it better, providing an example of what you want to accomplish if possible.http://stackoverflow.com/questions/1820517/drawing-in-wofmspaint/1821583#1821583Comment by Leonardo Herrera on Drawing in wof(MsPaint)Leonardo Herrera2009-11-30T18:39:50Z2009-11-30T18:39:50ZPlease don't answer your own questions; this isn't a forum. You may want to check out the FAQ section.http://stackoverflow.com/questions/27516/whats-the-difference-between-programmer-and-software-engineer/27544#27544Comment by Leonardo Herrera on What's the difference between programmer and software engineer?Leonardo Herrera2009-11-30T14:43:02Z2009-11-30T14:43:02ZIn Chile, a Programmer is a person with a technical degree (2 yrs) in programming; an Engineer is somebody with an engineering degree (4 or 5 yrs.) "Software Developer" is just a job description.http://stackoverflow.com/questions/1804202/regex-to-remove-prefix-and-another-to-upper-case-the-first-letter/1804377#1804377Comment by Leonardo Herrera on regex to remove prefix and another to upper case the first letterLeonardo Herrera2009-11-27T12:25:31Z2009-11-27T12:25:31ZThe square brackets are part of the match alsohttp://stackoverflow.com/questions/1804202/regex-to-remove-prefix-and-another-to-upper-case-the-first-letter/1804309#1804309Comment by Leonardo Herrera on regex to remove prefix and another to upper case the first letterLeonardo Herrera2009-11-27T12:24:35Z2009-11-27T12:24:35ZThen don't try to use the command line version -- use a script instead.http://stackoverflow.com/questions/1804202/regex-to-remove-prefix-and-another-to-upper-case-the-first-letter/1804309#1804309Comment by Leonardo Herrera on regex to remove prefix and another to upper case the first letterLeonardo Herrera2009-11-26T20:03:17Z2009-11-26T20:03:17ZI used single quotes because my shell doesn't like the '$' signhttp://stackoverflow.com/questions/1804202/regex-to-remove-prefix-and-another-to-upper-case-the-first-letter/1804377#1804377Comment by Leonardo Herrera on regex to remove prefix and another to upper case the first letterLeonardo Herrera2009-11-26T15:53:01Z2009-11-26T15:53:01ZThank you for remind me about '-p'. I'm not used to one liners.http://stackoverflow.com/questions/1804202/regex-to-remove-prefix-and-another-to-upper-case-the-first-letter/1804309#1804309Comment by Leonardo Herrera on regex to remove prefix and another to upper case the first letterLeonardo Herrera2009-11-26T15:42:02Z2009-11-26T15:42:02ZOh, you should update your question then. You want to include the square brackets?http://stackoverflow.com/questions/1783631/how-can-i-make-perls-filefind-faster/1783662#1783662Comment by Leonardo Herrera on How can I make Perl's File::Find faster?Leonardo Herrera2009-11-25T12:23:55Z2009-11-25T12:23:55Z...and accept the answer.http://stackoverflow.com/questions/1765606/looking-for-a-good-documentation-tutorial-for-sybaseComment by Leonardo Herrera on looking for a good documentation/tutorial for sybaseLeonardo Herrera2009-11-19T18:42:50Z2009-11-19T18:42:50ZWhat type of work you plan to do? DB administration? Programming?http://stackoverflow.com/questions/1765248/migrating-soap-functionality-from-php-to-perl-using-soapwsdlComment by Leonardo Herrera on Migrating SOAP functionality from PHP to Perl using SOAP::WSDLLeonardo Herrera2009-11-19T18:41:42Z2009-11-19T18:41:42Z"Just doesn't work" is NOT an appropriate way to ask, IMHO. Can you provide more details?