User Leon Timmermans - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T19:26:03Zhttp://stackoverflow.com/feeds/user/4727http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1855493/what-are-some-specific-examples-of-backward-incompatibilities-in-perl-versions/1855532#18555329Answer by Leon Timmermans for What are some specific examples of backward incompatibilities in Perl versions?Leon Timmermans2009-12-06T14:28:43Z2009-12-06T14:28:43Z<p><a href="http://perldoc.perl.org/perl5100delta.html#Pseudo-hashes-have-been-removed" rel="nofollow">Pseudo-hashes</a> are a recent example that spring to my mind. In general, <a href="http://perldoc.perl.org/index-history.html" rel="nofollow">perldelta files</a> have an overview of incompatible changes in a specific version. These changes almost always either obscure (like pseudo-hashes) or small.</p>
http://stackoverflow.com/questions/1813272/is-this-a-good-way-of-testing-perl-code/1813317#18133175Answer by Leon Timmermans for Is this a good way of testing Perl code?Leon Timmermans2009-11-28T18:34:39Z2009-11-28T18:34:39Z<p>Using Test::More's 'no_plan' option makes testing less reliable: you can't really know if you missed tests for some reason. It's best to plan a predefined number of tests, or if that isn't possible you can use the done_testing function (but that required a recent version of Test::More).</p>
<p>ETA: I don't see the use of the open-close-open-close-unlink thing you do. I think you can better open a tempfile, fill it and use that for your tests.</p>
http://stackoverflow.com/questions/1791114/creating-threaded-callbacks-in-xs/1810572#18105720Answer by Leon Timmermans for Creating Threaded callbacks in XSLeon Timmermans2009-11-27T20:43:38Z2009-11-27T20:48:54Z<p>My preferred way of handling this is storing the data in the <a href="http://perldoc.perl.org/perlapi.html#PL%5Fmodglobal" rel="nofollow">PL_modglobal</a> hash. It's automatically tied to the current interpreter.</p>
http://stackoverflow.com/questions/1377469/how-can-i-check-that-a-perl-version-is-not-greater-than-some-value/1384268#13842680Answer by Leon Timmermans for How can I check that a perl version is not greater than some value?Leon Timmermans2009-09-05T21:06:21Z2009-09-05T21:06:21Z<p>The simplest solution would be to do this:</p>
<pre><code>no 5.010;
</code></pre>
http://stackoverflow.com/questions/1352192/why-dont-more-c-programs-embed-perl/1352339#13523393Answer by Leon Timmermans for Why don't more C programs embed Perl?Leon Timmermans2009-08-29T20:51:24Z2009-08-29T20:51:24Z<p>There are two reasons why one may call a perl function from C: extending and embedding.</p>
<p>In the former case, it isn't all that uncommon actually, but it's rather invisible for outsiders.</p>
<p>What I think your question really is though is <em>"why don't people embed perl more often?"</em> There are a number of reasons for that, it being far more difficult than it should be is the most important one IMHO (see <a href="http://perldoc.perl.org/perlcall.html" rel="nofollow">perlcall</a>, <a href="http://perldoc.perl.org/perlembed.html" rel="nofollow">perlembed</a>, <a href="http://perldoc.perl.org/perlguts.html" rel="nofollow">perlguts</a> and <a href="http://perldoc.perl.org/perlapi.html" rel="nofollow">perlapi</a>).</p>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/161976#16197611Answer by Leon Timmermans for Hidden features of Perl?Leon Timmermans2008-10-02T12:19:21Z2009-08-23T21:53:59Z<p>My vote would go for the (?{}) and (??{}) groups in Perl's regular expressions. The first executes Perl code, ignoring the return value, the second executes code, using the return value as a regular expression.</p>
http://stackoverflow.com/questions/1052765/linux-perl-mmap-performance/1060778#10607780Answer by Leon Timmermans for Linux/perl mmap performanceLeon Timmermans2009-06-29T21:57:25Z2009-06-29T21:57:25Z<p>If I may plug my own module: I'd advice using <a href="http://search.cpan.org/perldoc?File::Map" rel="nofollow">File::Map</a> instead of <a href="http://search.cpan.org/perldoc?Sys::Mmap" rel="nofollow">Sys::Mmap</a>. It's much easier to use, and is less crash-prone than Sys::Mmap.</p>
http://stackoverflow.com/questions/1037464/perl-how-do-i-change-the-header-in-something-else-and-find-and-replace-in-this/1037585#10375852Answer by Leon Timmermans for Perl: How do I change the header in something else and find and replace in this .txt fileLeon Timmermans2009-06-24T10:39:05Z2009-06-24T10:39:05Z<pre><code>#! /usr/bin/perl -i.v2
$_ = <>;
s/EntrezGene/EntrezGene_MusMusculus/;
s/EntrezGene\(Mus musculus\)/EntrezGene_HomoSapiens/;
print;
while(<>) {
s{///}{_}g; # replaces /// into_
s/,/_/g; # replaces , into_
s/ /_/g; # replaces space into_
print
}
</code></pre>
http://stackoverflow.com/questions/1011338/is-the-select-wrapper-in-ioselect-thread-safe-how-to-work-around/1011836#10118362Answer by Leon Timmermans for Is the select() wrapper in IO::Select thread-safe? How to work around?Leon Timmermans2009-06-18T09:49:06Z2009-06-18T09:55:52Z<p>By default, perl threads don't share any data, so if one thread changes its sets it will not affect the other. So yes, it is thread-safe, but it probably doesn't do what you want it to do.</p>
<p>If you really want to wake-up another thread or process that's blocking on a select, an easy solution is to add a pipe to it's read queue. You can then wake it up by writing a byte to that pipe.</p>
http://stackoverflow.com/questions/725963/what-is-the-modern-way-of-creating-an-xs-module-from-scratch/729113#7291133Answer by Leon Timmermans for What is the modern way of creating an XS module from scratch?Leon Timmermans2009-04-08T08:52:03Z2009-04-08T08:52:03Z<p>Personally I just use Module::Starter and add the .xs file myself. It depends on what your aim is: if you're making a one-on-one mapping to a C api then h2xs can do a lot of boilerplate for you, but if you're making a completely new interface, or when you're only doing things with perl itself (and not some external library) it doesn't add much but trouble IMHO.</p>
http://stackoverflow.com/questions/683672/how-do-i-handle-both-caught-and-uncaught-errors-in-a-perl-subroutine/683731#6837310Answer by Leon Timmermans for How do I handle both caught and uncaught errors in a Perl subroutine?Leon Timmermans2009-03-25T22:17:22Z2009-03-25T22:17:22Z<p>I'm not completely sure what you want to do, but I think you can do it with a handler.</p>
<pre><code>$SIG{__DIE__} = sub { print $@ } ;
eval{ function($param); 1 } or next;
</code></pre>
http://stackoverflow.com/questions/682404/how-can-i-detect-if-the-file-for-an-open-filehandle-has-been-deleted-on-windows-u/682583#6825837Answer by Leon Timmermans for How can I detect if the file for an open filehandle has been deleted on Windows using Perl?Leon Timmermans2009-03-25T17:19:54Z2009-03-25T17:19:54Z<p>I may be mistaken (I'm not a Windows programmer), but I thought files can't be deleted or replaced when they are opened in Win32, or at least by default it isn't possible. </p>
http://stackoverflow.com/questions/678393/why-do-you-not-use-cpan-modules/678538#6785386Answer by Leon Timmermans for Why do you not use CPAN modules?Leon Timmermans2009-03-24T18:02:43Z2009-03-24T18:02:43Z<p>You may find <a href="http://perlmonks.org/?node%5Fid=750190" rel="nofollow">this essay</a> (and its comments) interesting.</p>
http://stackoverflow.com/questions/671572/cl-who-like-html-templating-for-other-languages/671595#6715955Answer by Leon Timmermans for CL-WHO-like HTML templating for other languages?Leon Timmermans2009-03-22T20:51:03Z2009-03-23T11:18:41Z<p>Perl's CGI module has support for something like this.</p>
<pre><code>use CGI ':standard';
use Lisp::Fmt
print header();
print table( { -border => 1, -cellpading => 4},
loop({ below => 25, by=> 5}, sub {
my $i = shift;
tr( {-align => 'right'} ,
loop({ from => $i, below $i + 5}, sub {
my $j = shift;
td({-bgcolor => ($oddp eq $j ? 'pink' : 'green')}
fmt("~@R", 1+$j);
})
)
});
</code></pre>
<p>I tried to keep it lispy, so you'll have to implement a lispy <code>loop</code> function yourself. I don't really program Common List, so I hope I understood your code correctly.</p>
http://stackoverflow.com/questions/571654/what-modules-are-distributed-with-perl/571683#57168311Answer by Leon Timmermans for What modules are distributed with Perl?Leon Timmermans2009-02-20T23:43:23Z2009-03-20T23:09:31Z<p>If you install <a href="http://search.cpan.org/perldoc?Module::CoreList" rel="nofollow">Module::CoreList</a>, the command line program <code>corelist</code> can tell you everything about modules and their versions in different versions of perl. The page you linked to gives an overview for the latest version of perl.</p>
<p>Do note that distributions often provide much more by default than this list, but this list can be assumed to be present everywhere (unless it is explicitly a OS dependent module such as Win32).</p>
http://stackoverflow.com/questions/616097/how-can-i-install-perl-module-without-using-cpan-pm/616221#61622120Answer by Leon Timmermans for How can I install Perl module without using CPAN.pm?Leon Timmermans2009-03-05T19:15:47Z2009-03-05T19:15:47Z<p>If you download the source code, and read the <code>README</code> file. This will probably tell you you should do</p>
<pre><code>perl Makefile.PL
make
make test
make install
</code></pre>
<p>or</p>
<pre><code>perl Build.PL
./Build
./Build test
./Build install
</code></pre>
http://stackoverflow.com/questions/613364/is-there-a-need-for-a-use-strict-python-compiler/614565#6145655Answer by Leon Timmermans for Is there a need for a "use strict" Python compiler?Leon Timmermans2009-03-05T12:25:19Z2009-03-05T12:25:19Z<p>Python has no true lexical scoping, so strict vars wouldn't be very sensible. It has no symbolic references AFAIK, so it has not need for strict refs. It has not barewords, so it has no need for strict vars.</p>
<p>To be honest, it's only lexical scoping I miss. The other two I'd consider warts in Perl.</p>
http://stackoverflow.com/questions/611366/how-do-you-use-sed-in-perl/611418#6114180Answer by Leon Timmermans for How do you use Sed in Perl?Leon Timmermans2009-03-04T16:42:13Z2009-03-04T19:57:28Z<p>Edited: OK, I fixed it now.</p>
<pre><code>use File::Grep qw/fmap/;
my @lineNumbers = fmap { /$pattern/ ? $_[1] : () } $fileToProcess;
</code></pre>
http://stackoverflow.com/questions/607282/whats-the-best-way-to-discover-all-subroutines-a-perl-module-has/607342#60734211Answer by Leon Timmermans for What's the best way to discover all subroutines a Perl module has?Leon Timmermans2009-03-03T17:29:56Z2009-03-03T21:23:59Z<pre><code>sub list_module {
my $module = shift;
no strict 'refs';
return grep { defined &{"$module\::$_"} } keys %{"$module\::"}
}
</code></pre>
<p>ETA: if you want to filter out imported subroutines, you can do this</p>
<pre><code>use B qw/svref_2object/;
sub in_package {
my ($coderef, $package) = @_;
my $cv = svref_2object($coderef);
return if not $cv->isa('B::CV') or $cv->GV->isa('B::SPECIAL');
return $cv->GV->STASH->NAME eq $package;
}
sub list_module {
my $module = shift;
no strict 'refs';
return grep { defined &{"$module\::$_"} and in_package(\&{*$_}, $module) } keys %{"$module\::"}
}
</code></pre>
http://stackoverflow.com/questions/603163/is-perl-a-good-option-for-heavy-text-processing/603176#60317616Answer by Leon Timmermans for Is Perl a good option for heavy text-processing?Leon Timmermans2009-03-02T17:24:47Z2009-03-02T17:24:47Z<p>Yes, Perl is a good option. As a language, it's definitely more suitable for those kinds of tasks than Java or PHP. If you have the Perl knowledge, I would recommend it for this kind of task.</p>
http://stackoverflow.com/questions/595662/how-can-i-easily-generate-a-function-depending-on-name-of-class-to-export-to/596082#5960822Answer by Leon Timmermans for How can I easily generate a function depending on name of class to export to?Leon Timmermans2009-02-27T18:48:53Z2009-02-27T19:04:49Z<p>You aren't clear how you want to determine the name. If I understand you correctly, this does what you want.</p>
<pre><code>my %sub_for = (
foo => \&foo,
#...
);
sub install_as {
my ($package, $exported_name, $sub) = @_;
no strict 'refs';
*{"$package\::$exported_name"} = $sub;
return;
}
sub get_name_for {
my ($package, $name) = @_;
#... your code here
}
sub import {
my $class = shift;
my $package = caller;
for my $internal_name (@_) {
install_as($package, get_name_for($package, $internal_name), $get_sub_for{$name});
}
return;
}
</code></pre>
http://stackoverflow.com/questions/588559/can-i-install-a-pre-configured-perl-binary-package-in-my-home-directory/588571#5885712Answer by Leon Timmermans for Can I install a pre-configured Perl binary package in my home directory?Leon Timmermans2009-02-26T00:28:40Z2009-02-26T00:28:40Z<p>It depends on whether or not your <code>perl</code> binary is relocatable. It's a compile time option. What is the output of this command? Is it defined or not?</p>
<pre><code>perl -V:userelocatableinc
</code></pre>
http://stackoverflow.com/questions/588349/how-can-i-conditionally-define-a-perl-subroutine/588384#58838413Answer by Leon Timmermans for How can I conditionally define a Perl subroutine?Leon Timmermans2009-02-25T23:22:23Z2009-02-26T00:17:30Z<p>What you want to do can be achieved like this:</p>
<pre><code>if ($ARGV[0] eq 'square') {
*difference = sub { return ($_[0] - $_[1]) ** 2 };
}
elsif ($ARGV[0] eq 'constant') {
*difference = sub { return 1 };
}
</code></pre>
http://stackoverflow.com/questions/571744/how-do-i-serve-a-large-file-for-download-with-perl/572891#5728912Answer by Leon Timmermans for How do I serve a large file for download with Perl?Leon Timmermans2009-02-21T12:25:34Z2009-02-21T12:25:34Z<p>You could use my <a href="http://search.cpan.org/perldoc?Sys::Sendfile" rel="nofollow">Sys::Sendfile</a> module. It's should be highly efficient (as it uses sendfile underneath the hood), but not entirely portable (only Linux, FreeBSD and Solaris are currently supported).</p>
http://stackoverflow.com/questions/569871/why-cant-c-decrypt-the-output-from-perls-cryptrijndael/569914#5699144Answer by Leon Timmermans for Why can't C# decrypt the output from Perl's Crypt::Rijndael?Leon Timmermans2009-02-20T15:17:45Z2009-02-20T15:17:45Z<p>I'm assuming you run this on Windows. You're dealing with binary data, so you need to take that into account. In Perl, you have to use <a href="http://perldoc.perl.org/functions/binmode.html" rel="nofollow">binmode</a>. I think you need to use BinaryReader in C# (but I'm no C# programmer, so I'm not sure).</p>
http://stackoverflow.com/questions/566362/why-does-grep-on-my-array-slice-cause-a-stack-overflow-in-perl/566421#5664218Answer by Leon Timmermans for Why does grep on my array slice cause a stack overflow in Perl?Leon Timmermans2009-02-19T17:52:50Z2009-02-19T17:57:58Z<p>By using the slice as an lvalue, you are enlarging the array every time it is too short. Hence, it will never be out of elements.</p>
<p>In the first two examples, you only used it as an rvalue, thus no extra elements are created. In the third one it is an lvalue, and thus the elements are created, so that <code>$_</code> can be assigned to.</p>
<p>This is not a behavior specific to slices: in normal array access exactly the same behavior is shown.</p>
http://stackoverflow.com/questions/566110/how-can-i-tail-a-remote-file/566143#5661432Answer by Leon Timmermans for How can I tail a remote file?Leon Timmermans2009-02-19T16:38:33Z2009-02-19T16:38:33Z<p>Some ideas:</p>
<ul>
<li>You could mount it over NFS or CIFS, and then use <a href="http://search.cpan.org/perldoc?File::Tail" rel="nofollow">File::Tail</a>.</li>
<li>You could use one of Perl's SSH modules (there are a number of them), combined with <code>tail -f</code>.</li>
</ul>
http://stackoverflow.com/questions/564632/how-can-i-encrypt-a-message-in-perl-to-decrypt-it-in-c/564715#5647158Answer by Leon Timmermans for How can I encrypt a message in Perl to decrypt it in C#?Leon Timmermans2009-02-19T10:40:28Z2009-02-19T10:40:28Z<p>As Lars said, AES is probably the best choice these days. For a Perl implementation, see <a href="http://search.cpan.org/perldoc?Crypt::Rijndael" rel="nofollow">Crypt::Rijndael</a></p>
http://stackoverflow.com/questions/560731/how-can-i-tar-a-file-that-is-being-used-by-another-process/560846#5608462Answer by Leon Timmermans for How can I tar a file that is being used by another process?Leon Timmermans2009-02-18T12:26:45Z2009-02-18T12:26:45Z<p>Your second output is made <em>after</em> your first, that can't be right. I'm guessing that <code>tar</code> is right here: when it was doing its job, the file was empty. You may be dealing with a race condition here.</p>
http://stackoverflow.com/questions/557271/why-isnt-the-process-i-start-with-perls-system-a-child-process/557335#5573354Answer by Leon Timmermans for Why isn't the process I start with Perl's system() a child process?Leon Timmermans2009-02-17T15:23:26Z2009-02-17T15:23:26Z<p>What you probably want to do is something like this:</p>
<pre><code>my $pid = fork || exec './test.sh';
print "pid: -$pid-\n";
waitpid($pid, 0);
</code></pre>
<p>Though since the shell script is in an infinite loop, it will wait forever.</p>
http://stackoverflow.com/questions/1851408/why-are-some-characters-missing-when-i-converted-my-perl-script-to-executable-usiComment by Leon Timmermans on Why are some characters missing when I converted my Perl script to executable using Perlapp?Leon Timmermans2009-12-05T08:36:41Z2009-12-05T08:36:41Z You don't have to post the whole piece of code, but a a working snipplet is necessary; where do $code and $value come from?http://stackoverflow.com/questions/1352192/why-dont-more-c-programs-embed-perl/1352199#1352199Comment by Leon Timmermans on Why don't more C programs embed Perl?Leon Timmermans2009-08-29T21:24:19Z2009-08-29T21:24:19ZPerformance will be similar to calling the same functions from Perl itself. It will be slower than doing the same in C, but by much and if that's acceptable depends entirely on the problem you're trying to fix.http://stackoverflow.com/questions/1348639/how-can-i-reinitialize-perls-stdin-stdout-stderrComment by Leon Timmermans on How can I reinitialize Perl's STDIN/STDOUT/STDERR?Leon Timmermans2009-08-28T19:59:24Z2009-08-28T19:59:24ZOn a stylistic note: It's better to use three argument open than two argument open.http://stackoverflow.com/questions/227613/how-can-i-copy-a-directory-recursively-and-filter-filenames-in-perl/227936#227936Comment by Leon Timmermans on How can I copy a directory recursively and filter filenames in Perl?Leon Timmermans2009-08-18T12:04:10Z2009-08-18T12:04:10Z. and .. are not an issue on Windows AFAIK, so that shouldn't be a problem, but for portability you're right it would be better to filter those out. As for mkpath: personally I think such a situation should give an error, but that's a matter of taste.http://stackoverflow.com/questions/451521/how-do-i-make-private-functions-in-a-perl-module/452570#452570Comment by Leon Timmermans on How do I make private functions in a Perl module?Leon Timmermans2009-08-11T11:16:20Z2009-08-11T11:16:20ZEther: You're completely wrong, it's more efficient in fact, because it doesn't require method lookup.http://stackoverflow.com/questions/206661/what-are-canonical-efficient-or-concise-ways-to-slurp-a-file-into-a-string-in-p/206682#206682Comment by Leon Timmermans on What are canonical, efficient, or concise ways to slurp a file into a string in Perl?Leon Timmermans2009-07-13T22:08:46Z2009-07-13T22:08:46ZThe easiest way to prevent that from being likely is that simply first checking if the file exists...http://stackoverflow.com/questions/725963/what-is-the-modern-way-of-creating-an-xs-module-from-scratch/729113#729113Comment by Leon Timmermans on What is the modern way of creating an XS module from scratch?Leon Timmermans2009-04-09T09:09:53Z2009-04-09T09:09:53Zppport.h is for portability to older versions of Perl. The kind of stuff I do usually makes that impossible anyway (most of my XS modules require 5.8 anyway, one even requires 5.10), but in your case it may be different. The proper way to generate ppport.h is using Devel::PPPort.http://stackoverflow.com/questions/722088/how-can-i-retrieve-sql-field-names-of-a-temp-table-using-perl/722136#722136Comment by Leon Timmermans on How can I retrieve SQL field names of a temp table using Perl?Leon Timmermans2009-04-06T16:13:30Z2009-04-06T16:13:30ZThat is MySQL specific...http://stackoverflow.com/questions/714813/how-can-i-remove-all-tokens-with-non-word-characters-in-perl/715055#715055Comment by Leon Timmermans on How can I remove all tokens with non-word characters in Perl?Leon Timmermans2009-04-03T21:13:06Z2009-04-03T21:13:06Z[A-Za-z] doesn't deal with Unicode, you probably want to use [[:alpha:]] instead.http://stackoverflow.com/questions/713144/when-will-perl6-development-be-complete-why-do-they-call-ruby-an-implemented-ver/713238#713238Comment by Leon Timmermans on When will Perl6 development be complete? Why do they call Ruby an implemented version of Perl 6?Leon Timmermans2009-04-03T10:52:34Z2009-04-03T10:52:34ZAFAIK most Perl6 implementations will be able to use Perl 5 libraries in some way, so that isn't necessarily a problem.http://stackoverflow.com/questions/710304/is-there-a-perl-module-to-monitor-an-email-queue/710326#710326Comment by Leon Timmermans on Is there a Perl module to monitor an email queue?Leon Timmermans2009-04-02T16:28:41Z2009-04-02T16:28:41ZIMAP is much faster than WebDAV, so I'd advise you to go with that.http://stackoverflow.com/questions/686378/c-native-way-to-pack-and-unpack-string/686779#686779Comment by Leon Timmermans on C++ Native Way to Pack and Unpack StringLeon Timmermans2009-03-26T17:30:52Z2009-03-26T17:30:52ZActually, I did just that for my libperl++. Unless I'm already embedding perl, I would opt for a different solution tough.http://stackoverflow.com/questions/686378/c-native-way-to-pack-and-unpack-stringComment by Leon Timmermans on C++ Native Way to Pack and Unpack StringLeon Timmermans2009-03-26T16:23:16Z2009-03-26T16:23:16ZActually I have that on my TODO list, but I haven't written it yet. A pack should be fairly easy to write in a type safe manner (serialization isn't that hard, really), unpack on the other hand I haven't completely figured out yet.http://stackoverflow.com/questions/678393/why-do-you-not-use-cpan-modules/678653#678653Comment by Leon Timmermans on Why do you not use CPAN modules?Leon Timmermans2009-03-24T20:00:28Z2009-03-24T20:00:28ZFixed the capitalization ;)http://stackoverflow.com/questions/670179/deferring-code-on-scope-change-in-perl/670581#670581Comment by Leon Timmermans on Deferring code on scope change in PerlLeon Timmermans2009-03-22T13:27:52Z2009-03-22T13:27:52ZIt's a good idea, but I intend to make a better version of that. The implementation is a bit cumbersome IMHO.