User Leon Timmermans - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T19:26:03Z http://stackoverflow.com/feeds/user/4727 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1855493/what-are-some-specific-examples-of-backward-incompatibilities-in-perl-versions/1855532#1855532 9 Answer by Leon Timmermans for What are some specific examples of backward incompatibilities in Perl versions? Leon Timmermans 2009-12-06T14:28:43Z 2009-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#1813317 5 Answer by Leon Timmermans for Is this a good way of testing Perl code? Leon Timmermans 2009-11-28T18:34:39Z 2009-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#1810572 0 Answer by Leon Timmermans for Creating Threaded callbacks in XS Leon Timmermans 2009-11-27T20:43:38Z 2009-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#1384268 0 Answer by Leon Timmermans for How can I check that a perl version is not greater than some value? Leon Timmermans 2009-09-05T21:06:21Z 2009-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#1352339 3 Answer by Leon Timmermans for Why don't more C programs embed Perl? Leon Timmermans 2009-08-29T20:51:24Z 2009-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#161976 11 Answer by Leon Timmermans for Hidden features of Perl? Leon Timmermans 2008-10-02T12:19:21Z 2009-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#1060778 0 Answer by Leon Timmermans for Linux/perl mmap performance Leon Timmermans 2009-06-29T21:57:25Z 2009-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#1037585 2 Answer by Leon Timmermans for Perl: How do I change the header in something else and find and replace in this .txt file Leon Timmermans 2009-06-24T10:39:05Z 2009-06-24T10:39:05Z <pre><code>#! /usr/bin/perl -i.v2 $_ = &lt;&gt;; s/EntrezGene/EntrezGene_MusMusculus/; s/EntrezGene\(Mus musculus\)/EntrezGene_HomoSapiens/; print; while(&lt;&gt;) { 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#1011836 2 Answer by Leon Timmermans for Is the select() wrapper in IO::Select thread-safe? How to work around? Leon Timmermans 2009-06-18T09:49:06Z 2009-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#729113 3 Answer by Leon Timmermans for What is the modern way of creating an XS module from scratch? Leon Timmermans 2009-04-08T08:52:03Z 2009-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#683731 0 Answer by Leon Timmermans for How do I handle both caught and uncaught errors in a Perl subroutine? Leon Timmermans 2009-03-25T22:17:22Z 2009-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#682583 7 Answer by Leon Timmermans for How can I detect if the file for an open filehandle has been deleted on Windows using Perl? Leon Timmermans 2009-03-25T17:19:54Z 2009-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#678538 6 Answer by Leon Timmermans for Why do you not use CPAN modules? Leon Timmermans 2009-03-24T18:02:43Z 2009-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#671595 5 Answer by Leon Timmermans for CL-WHO-like HTML templating for other languages? Leon Timmermans 2009-03-22T20:51:03Z 2009-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 =&gt; 1, -cellpading =&gt; 4}, loop({ below =&gt; 25, by=&gt; 5}, sub { my $i = shift; tr( {-align =&gt; 'right'} , loop({ from =&gt; $i, below $i + 5}, sub { my $j = shift; td({-bgcolor =&gt; ($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#571683 11 Answer by Leon Timmermans for What modules are distributed with Perl? Leon Timmermans 2009-02-20T23:43:23Z 2009-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#616221 20 Answer by Leon Timmermans for How can I install Perl module without using CPAN.pm? Leon Timmermans 2009-03-05T19:15:47Z 2009-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#614565 5 Answer by Leon Timmermans for Is there a need for a "use strict" Python compiler? Leon Timmermans 2009-03-05T12:25:19Z 2009-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#611418 0 Answer by Leon Timmermans for How do you use Sed in Perl? Leon Timmermans 2009-03-04T16:42:13Z 2009-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#607342 11 Answer by Leon Timmermans for What's the best way to discover all subroutines a Perl module has? Leon Timmermans 2009-03-03T17:29:56Z 2009-03-03T21:23:59Z <pre><code>sub list_module { my $module = shift; no strict 'refs'; return grep { defined &amp;{"$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-&gt;isa('B::CV') or $cv-&gt;GV-&gt;isa('B::SPECIAL'); return $cv-&gt;GV-&gt;STASH-&gt;NAME eq $package; } sub list_module { my $module = shift; no strict 'refs'; return grep { defined &amp;{"$module\::$_"} and in_package(\&amp;{*$_}, $module) } keys %{"$module\::"} } </code></pre> http://stackoverflow.com/questions/603163/is-perl-a-good-option-for-heavy-text-processing/603176#603176 16 Answer by Leon Timmermans for Is Perl a good option for heavy text-processing? Leon Timmermans 2009-03-02T17:24:47Z 2009-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#596082 2 Answer by Leon Timmermans for How can I easily generate a function depending on name of class to export to? Leon Timmermans 2009-02-27T18:48:53Z 2009-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 =&gt; \&amp;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#588571 2 Answer by Leon Timmermans for Can I install a pre-configured Perl binary package in my home directory? Leon Timmermans 2009-02-26T00:28:40Z 2009-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#588384 13 Answer by Leon Timmermans for How can I conditionally define a Perl subroutine? Leon Timmermans 2009-02-25T23:22:23Z 2009-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#572891 2 Answer by Leon Timmermans for How do I serve a large file for download with Perl? Leon Timmermans 2009-02-21T12:25:34Z 2009-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#569914 4 Answer by Leon Timmermans for Why can't C# decrypt the output from Perl's Crypt::Rijndael? Leon Timmermans 2009-02-20T15:17:45Z 2009-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#566421 8 Answer by Leon Timmermans for Why does grep on my array slice cause a stack overflow in Perl? Leon Timmermans 2009-02-19T17:52:50Z 2009-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#566143 2 Answer by Leon Timmermans for How can I tail a remote file? Leon Timmermans 2009-02-19T16:38:33Z 2009-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#564715 8 Answer by Leon Timmermans for How can I encrypt a message in Perl to decrypt it in C#? Leon Timmermans 2009-02-19T10:40:28Z 2009-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#560846 2 Answer by Leon Timmermans for How can I tar a file that is being used by another process? Leon Timmermans 2009-02-18T12:26:45Z 2009-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#557335 4 Answer by Leon Timmermans for Why isn't the process I start with Perl's system() a child process? Leon Timmermans 2009-02-17T15:23:26Z 2009-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-usi Comment by Leon Timmermans on Why are some characters missing when I converted my Perl script to executable using Perlapp? Leon Timmermans 2009-12-05T08:36:41Z 2009-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#1352199 Comment by Leon Timmermans on Why don't more C programs embed Perl? Leon Timmermans 2009-08-29T21:24:19Z 2009-08-29T21:24:19Z Performance 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-stderr Comment by Leon Timmermans on How can I reinitialize Perl's STDIN/STDOUT/STDERR? Leon Timmermans 2009-08-28T19:59:24Z 2009-08-28T19:59:24Z On 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#227936 Comment by Leon Timmermans on How can I copy a directory recursively and filter filenames in Perl? Leon Timmermans 2009-08-18T12:04:10Z 2009-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#452570 Comment by Leon Timmermans on How do I make private functions in a Perl module? Leon Timmermans 2009-08-11T11:16:20Z 2009-08-11T11:16:20Z Ether: 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#206682 Comment by Leon Timmermans on What are canonical, efficient, or concise ways to slurp a file into a string in Perl? Leon Timmermans 2009-07-13T22:08:46Z 2009-07-13T22:08:46Z The 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#729113 Comment by Leon Timmermans on What is the modern way of creating an XS module from scratch? Leon Timmermans 2009-04-09T09:09:53Z 2009-04-09T09:09:53Z ppport.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#722136 Comment by Leon Timmermans on How can I retrieve SQL field names of a temp table using Perl? Leon Timmermans 2009-04-06T16:13:30Z 2009-04-06T16:13:30Z That is MySQL specific... http://stackoverflow.com/questions/714813/how-can-i-remove-all-tokens-with-non-word-characters-in-perl/715055#715055 Comment by Leon Timmermans on How can I remove all tokens with non-word characters in Perl? Leon Timmermans 2009-04-03T21:13:06Z 2009-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#713238 Comment by Leon Timmermans on When will Perl6 development be complete? Why do they call Ruby an implemented version of Perl 6? Leon Timmermans 2009-04-03T10:52:34Z 2009-04-03T10:52:34Z AFAIK 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#710326 Comment by Leon Timmermans on Is there a Perl module to monitor an email queue? Leon Timmermans 2009-04-02T16:28:41Z 2009-04-02T16:28:41Z IMAP 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#686779 Comment by Leon Timmermans on C++ Native Way to Pack and Unpack String Leon Timmermans 2009-03-26T17:30:52Z 2009-03-26T17:30:52Z Actually, 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-string Comment by Leon Timmermans on C++ Native Way to Pack and Unpack String Leon Timmermans 2009-03-26T16:23:16Z 2009-03-26T16:23:16Z Actually 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#678653 Comment by Leon Timmermans on Why do you not use CPAN modules? Leon Timmermans 2009-03-24T20:00:28Z 2009-03-24T20:00:28Z Fixed the capitalization ;) http://stackoverflow.com/questions/670179/deferring-code-on-scope-change-in-perl/670581#670581 Comment by Leon Timmermans on Deferring code on scope change in Perl Leon Timmermans 2009-03-22T13:27:52Z 2009-03-22T13:27:52Z It's a good idea, but I intend to make a better version of that. The implementation is a bit cumbersome IMHO.