User moritz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T21:03:31Zhttp://stackoverflow.com/feeds/user/14132http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/95820/in-perl-how-do-i-create-a-hash-whose-keys-come-from-a-given-array/96088#9608815Answer by moritz for In Perl, how do I create a hash whose keys come from a given array?moritz2008-09-18T19:33:27Z2009-11-20T14:40:14Z<pre><code> @hash{@array} = (1) x @array;
</code></pre>
<p>It's a hash slice, a list of values from the hash, so it gets the list-y @ in front.</p>
<p>From <a href="http://perldoc.perl.org/perldata.html#Slices" rel="nofollow">the docs</a>:</p>
<blockquote>
<p>If you're confused about why you use
an '@' there on a hash slice instead
of a '%', think of it like this. The
type of bracket (square or curly)
governs whether it's an array or a
hash being looked at. On the other
hand, the leading symbol ('$' or '@')
on the array or hash indicates whether
you are getting back a singular value
(a scalar) or a plural one (a list).</p>
</blockquote>
http://stackoverflow.com/questions/1678263/how-can-i-extend-mooses-automatic-pragma-exports/1680770#16807701Answer by moritz for How can I extend Moose's automatic pragma exports?moritz2009-11-05T14:00:20Z2009-11-05T14:17:36Z<p>You have to define a sub called import in your package, and import all the other stuff there.</p>
<p>An example from Modern::Perl (another policy module you might look at):</p>
<pre><code>use 5.010_000;
use strict;
use warnings;
use mro ();
use feature ();
sub import {
warnings->import();
strict->import();
feature->import( ':5.10' );
mro::set_mro( scalar caller(), 'c3' );
}
</code></pre>
<p>Update: Sorry, didn't read the question carefully enough.</p>
<p>A good way to extend an existing import method is to write your own in a new package, and call Moose's import method from there. You can do that by subclassing, maybe you can even use Moose yourself for that ;-)</p>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/162094#16209425Answer by moritz for Hidden features of Perl?moritz2008-10-02T12:50:58Z2009-08-23T21:39:45Z<p>There are many non-obvious features in Perl.</p>
<p>For example, did you know that there can be a space after a sigil?</p>
<pre><code> $ perl -wle 'my $x = 3; print $ x'
3
</code></pre>
<p>Or that you can give subs numeric names if you use symbolic references?</p>
<pre><code>$ perl -lwe '*4 = sub { print "yes" }; 4->()'
yes
</code></pre>
<p>There's also the "bool" quasi operator, that return 1 for true expressions and the empty string for false:</p>
<pre><code>$ perl -wle 'print !!4'
1
$ perl -wle 'print !!"0 but true"'
1
$ perl -wle 'print !!0'
(empty line)
</code></pre>
<p>Other interesting stuff: with <code>use overload</code> you can overload string literals and numbers (and for example make them BigInts or whatever).</p>
<p>Many of these things are actually documented somewhere, or follow logically from the documented features, but nonetheless some are not very well known.</p>
<p><em>Update</em>: Another nice one. Below the <code>q{...}</code> quoting constructs were mentioned, but did you know that you can use letters as delimiters?</p>
<pre><code>$ perl -Mstrict -wle 'print q bJet another perl hacker.b'
Jet another perl hacker.
</code></pre>
<p>Likewise you can write regular expressions:</p>
<pre><code>m xabcx
# same as m/abc/
</code></pre>
http://stackoverflow.com/questions/1182820/open-source-examples-of-well-written-scm-web-interface-in-perl/1184534#11845344Answer by moritz for Open source examples of well written SCM web interface in Perlmoritz2009-07-26T13:02:56Z2009-07-26T13:02:56Z<p>I haven't looked at the source code of <a href="http://search.cpan.org/dist/SVN-Web/" rel="nofollow">SVN::Web</a>, so I can't tell you if it's well written, but I sure like to use it. <a href="http://deps.cpantesters.org/?module=SVN%3A%3AWeb&perl=any+version&os=any+OS" rel="nofollow">Here</a> is a list of the dependencies, and you can <a href="http://perlcabal.org/svn/pugs/revision/?rev=27740" rel="nofollow">see it in action</a>.</p>
http://stackoverflow.com/questions/176343/whats-the-deal-with-all-the-different-perl-6-equality-operators-eq-e/176381#17638126Answer by moritz for What's the deal with all the different Perl 6 equality operators? (==, ===, eq, eqv, ~~, =:=, ...)moritz2008-10-06T22:00:15Z2009-07-23T18:47:35Z<p><code>=:=</code> tests if two containers (variables or items of arrays or hashes) are aliased, ie if one changes, does the other change as well?</p>
<pre><code>my $x;
my @a = 1, 2, 3;
# $x =:= @a[0] is false
$x := @a[0];
# now $x == 1, and $x =:= @a[0] is true
$x = 4;
# now @a is 4, 2, 3
</code></pre>
<p>As for the others: <code>===</code> tests if two references point to the same object, and <code>eqv</code> tests if two things are structurally equivalent. So <code>[1, 2, 3] === [1, 2, 3]</code> will be false (not the same array), but <code>[1, 2, 3] eqv [1, 2, 3]</code> will be true (same structure).</p>
<p><code>leg</code> compares strings like Perl 5's <code>cmp</code>, while Perl 6's <code>cmp</code> is smarter and will compare numbers like <code><=></code> and strings like <code>leg</code>.</p>
<pre><code>13 leg 4 # -1, because 1 is smaller than 4, and leg converts to string
13 cmp 4 # +1, because both are numbers, so use numeric comparison.
</code></pre>
<p>Finally <code>~~</code> is the "smart match", it answers the question "does <code>$x</code> match <code>$y</code>". If <code>$y</code> is a type, it's type check. If <code>$y</code> is a regex, it's regex match - and so on.</p>
http://stackoverflow.com/questions/1090712/where-can-i-find-demo-sample-code-for-perl-6/1090795#10907955Answer by moritz for Where Can I Find Demo/Sample Code For Perl 6?moritz2009-07-07T07:13:40Z2009-07-07T07:13:40Z<p>Please check out the perl6-examples repository from <a href="http://github.com/perl6/perl6-examples/tree/master" rel="nofollow">http://github.com/perl6/perl6-examples/tree/master</a>, it contains many nice examples.</p>
<p>Also don't hesitate to join #perl6 or irc.freenode.net if you have any questions (or perl6-users@perl.org if you're more the email user).</p>
<p>Sometimes there are also very nice examples on the Perl 6 blogs out there, most of them are collected on <a href="http://planetsix.perl.org/" rel="nofollow">http://planetsix.perl.org/</a>.</p>
http://stackoverflow.com/questions/766480/does-perl-6-make-any-promises-about-the-order-alternations-will-be-used/767121#7671216Answer by moritz for Does Perl 6 make any promises about the order alternations will be used?moritz2009-04-20T06:24:04Z2009-04-20T06:24:04Z<p>To put it only a few words: the alternatives should be matched (at least notionally) in parallel, and the longest match wins. If you want sequential alternations, you can use the double bar ||, which promises a left-to-right order just like | does in Perl 5 regexes.</p>
http://stackoverflow.com/questions/179441/what-content-encoding-does-a-perl-cgi-script-use-by-default/179490#1794908Answer by moritz for What content encoding does a Perl CGI script use by default?moritz2008-10-07T17:21:28Z2009-03-26T09:25:48Z<p>By default Perl handles strings as being byte sequences, so if you read from a file, and print that to STDOUT, it will produce the same byte sequence. If your templates are Latin-1, your output will also be Latin-1.</p>
<p>If you use a string in text string context (like with <code>uc</code>, <code>lc</code> and so on) perl assumes Latin-1 semantics, unless the string has been decoded before.</p>
<p><a href="http://perlgeek.de/en/article/encodings-and-unicode" rel="nofollow">More on Perl, charsets and encodings</a></p>
http://stackoverflow.com/questions/230065/what-are-some-code-coverage-tools-for-perl/230149#23014914Answer by moritz for What are some code coverage tools for Perl?moritz2008-10-23T15:20:51Z2008-10-23T15:20:51Z<p>Yes, Devel::Cover is the way to go.</p>
<p>If you develop a module, and use Module::Build to manage the installation, you even have a <code>testcover</code> target:</p>
<pre><code> perl Build.PL
./Build testcover
</code></pre>
<p>That runs the whole test suite, and makes a combined coverage report in nice HTML, where you can browser through your modules and watch their coverage.</p>
http://stackoverflow.com/questions/227613/how-can-i-copy-a-directory-recursively-and-filter-filenames-in-perl/227675#2276755Answer by moritz for How can I copy a directory recursively and filter filenames in Perl?moritz2008-10-22T21:52:22Z2008-10-22T21:52:22Z<p>If you happen to be on a Unix-like OS and have access to <code>rsync (1)</code>, you should use that (for example through <code>system()</code>).</p>
<p>Perl's File::Copy is a bit broken (it doesn't copy permissions on Unix systems, for example), so if you don't want to use your system tools, look at CPAN. Maybe <a href="http://search.cpan.org/perldoc?File::Copy::Recursive" rel="nofollow">File::Copy::Recursive</a> could be of use, but I don't see any exclude options. I hope somebody else has a better idea.</p>
http://stackoverflow.com/questions/226562/how-can-i-remove-an-entire-html-tag-and-its-contents-by-its-class-using-a-regex/226601#2266011Answer by moritz for How can I remove an entire HTML tag (and its contents) by its class using a regex?moritz2008-10-22T16:37:05Z2008-10-22T16:37:05Z<p>In Perl you need the <code>/s</code> modifier, otherwise the dot won't match a newline. </p>
<p>That said, using a proper HTML or XML parser to remove unwanted parts of a HTML file is much more appropriate.</p>
http://stackoverflow.com/questions/218717/what-is-a-good-open-source-pastebin-in-python-or-perl/218772#2187729Answer by moritz for What is a good open source pastebin in Python or Perl?moritz2008-10-20T15:12:30Z2008-10-20T15:24:06Z<p>I like <a href="http://sourceforge.net/projects/pastebot/" rel="nofollow">pastebot</a>, which powers <a href="http://sial.org/pbot/paste" rel="nofollow">http://sial.org/pbot/paste</a> (for example). It's Perl and uses POE.</p>
http://stackoverflow.com/questions/218531/how-can-i-create-a-repeatable-signature-of-a-data-structure/218590#2185907Answer by moritz for How can I create a repeatable signature of a data structure?moritz2008-10-20T14:13:30Z2008-10-20T14:13:30Z<p>Use <a href="http://search.cpan.org/perldoc?Storable" rel="nofollow">Storable</a>::nstore to turn it into a binary representation, and then calculate a checksum (for example with the Digest module).</p>
<p>Both modules are core modules.</p>
http://stackoverflow.com/questions/211260/how-can-i-extract-and-save-text-using-perl/211269#2112691Answer by moritz for How can I extract and save text using Perl?moritz2008-10-17T07:05:11Z2008-10-17T07:05:11Z<p>When I run your code, but name the input file <code>My1.txt</code> instead of <code>MyFile.txt</code> I get the desired output - except with empty lines, which you can remove by removing the <code>, "\n"</code> from the print statement.</p>
http://stackoverflow.com/questions/210068/perl-golf-print-the-powers-of-a-number/210140#21014015Answer by moritz for Perl golf: Print the powers of a numbermoritz2008-10-16T20:24:20Z2008-10-16T21:55:24Z<p>With perl 5.10.0 and above:</p>
<pre><code>perl -E'say 0.37**$_ for 0..8'
</code></pre>
<p>With older perls you don't have <code>say</code> and -E, but this works:</p>
<pre><code>perl -le'print 0.37**$_ for 0..8'
</code></pre>
<p>Update: the first solution is made of 30 key strokes. Removing the first 0 gives 29. Another space can be saved, so my final solution is this with 28 strokes:</p>
<pre><code>perl -E'say.37**$_ for 0..8'
</code></pre>
http://stackoverflow.com/questions/207871/how-do-i-use-unicode-characters-in-pod-and-perldoc/208699#2086996Answer by moritz for How do I use Unicode characters in Pod and perldoc?moritz2008-10-16T14:04:48Z2008-10-16T14:04:48Z<p>Use <code>=encoding utf-8</code> as the first POD directive in your file, and use a fairly recent <code>perldoc</code> (for example from 5.10-maint). Then it should work.</p>
http://stackoverflow.com/questions/206661/what-are-canonical-efficient-or-concise-ways-to-slurp-a-file-into-a-string-in-p/207611#2076110Answer by moritz for What are canonical, efficient, or concise ways to slurp a file into a string in Perl?moritz2008-10-16T06:44:44Z2008-10-16T06:44:44Z<p>This is neither fast, nor platform independent, and really evil, but it's short (and I've seen this in Larry Wall's code ;-):</p>
<pre><code> my $contents = `cat $file`;
</code></pre>
<p>Kids, don't do that at home ;-).</p>
http://stackoverflow.com/questions/203605/how-do-i-match-only-fully-composed-characters-in-a-unicode-string-in-perl/203894#2038944Answer by moritz for How do I match only fully-composed characters in a Unicode string in Perl?moritz2008-10-15T06:48:26Z2008-10-15T07:13:06Z<p>I think you don't want or need locales for that but, but rather Unicode. If you have decoded a text string, <code>\w</code> will match word characters in any language, <code>\d</code> matches not just <code>0..9</code> but every Unicode digit etc. In regexes you can query Unicode properties with <code>\p{PropertyName}</code>. Particularly interesting for you might be <code>\p{Print}</code>. <a href="http://perldoc.perl.org/perlunicode.html#Unicode-Character-Properties" rel="nofollow">Here's a list of all the available Unicode character properties</a>.</p>
<p>I wrote an <a href="http://perlgeek.de/en/article/encodings-and-unicode" rel="nofollow">article about the basics and subtleties of Unicode and Perl</a>, it should give you a good idea on what to do that perl will recognize your string as a sequence of characters, not just a sequence of bytes.</p>
<p>Update: with Unicode you don't get language dependent behaviour, but instead sane defaults regardless of language. This may or may not be what you want, but for the distinction of priintable/control character I don't see why you'd need language dependent behaviour.</p>
http://stackoverflow.com/questions/203824/how-many-professional-software-developers-are-there-worldwide/203884#2038842Answer by moritz for How many professional software developers are there worldwide?moritz2008-10-15T06:39:21Z2008-10-15T06:39:21Z<p>It's hard to count, because the boundaries of what a "programmer" is could be clearer, and nobody has to register or take an exam to become a programmer.</p>
<p>On perlmonks.org we had that discussion <a href="http://www.perlmonks.org/?node_id=707975" rel="nofollow">about Perl programmers</a>, and the estimates ranged in the order of magnitude of a million. If you scale that up to all programmers, you'll get into the order of magnitude of ten millions.</p>
<p>But remember, these are <em>very</em> rough numbers and more felt than counted.</p>
http://stackoverflow.com/questions/203854/how-to-get-the-nth-digit-of-an-integer-with-bit-wise-operations/203874#2038742Answer by moritz for How to get the Nth digit of an integer with bit-wise operations?moritz2008-10-15T06:30:22Z2008-10-15T06:30:22Z<p>The reason that it won't work (easily) with bit-wise operations is that the base of the decimal system (10) is not a power of the base of the binary system (2).</p>
<p>If you were coding in base 8, you'd have <code>pow(2, 3) == 8</code>, and could extract each octal digit as a block of three bits.</p>
<p>So you really have to convert to base 10, which is usually done by converting to a string (with toString (Java) or sprintf (C), as the others have shown in their replies).</p>
http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/202744#2027448Answer by moritz for Coding in Other (Spoken) Languagesmoritz2008-10-14T20:49:25Z2008-10-14T21:26:06Z<p>The programming language defines keywords and standard class names, and it's best practice to give user defined types, variables and functions also English names (as a non-native speaker I can tell ;-).</p>
<p>So yes, if all is well, you'll be able to read the code.</p>
<p>However languages like Java and Perl allow the full Unicode set for identifiers, so if somebody writes his class names in Kanji, you'll likely have a problem.</p>
<p>Update: For Perl there's a <a href="http://search.cpan.org/perldoc?Lingua::Romana::Perligata" rel="nofollow">joke module</a> that allows you to write Perl in Latin. But it's really just that, a joke. Nobody uses things like this seriously.</p>
<p>Second Update: The idea of localized programming languages isn't that ridiculous. Excel's macro language is localized, but luckily it's stored in one canonical language (English) in the file, so the localization is just a layer on top of the normal thing. Such things only make sense for small "programs", for "real" programs it becomes hard to maintain.</p>
http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language/202797#2027970Answer by moritz for Is there a human readable programming language?moritz2008-10-14T20:58:49Z2008-10-14T20:58:49Z<p>Basic was a first approach in that direction, and as has been shown in another reply, Perl also allows code that's fairly close to human language - if you ignore all that punctuation.</p>
<p>I just read a very interesting <a href="http://www.csse.monash.edu.au/~damian/papers/HTML/Perligata.html" rel="nofollow">article on how to translate Latin to Perl</a> (for which there's also a Perl module).</p>
<p>So if the human language has enough structure, and you introduce enough restrictions to avoid ambiguousness, you can indeed program in (mostly) human language.</p>
<p>But really nobody really does, because it's very verbose, and hard to make both readable and accurate.</p>
http://stackoverflow.com/questions/195408/limit-displayed-length-of-string-on-web-page/195413#1954131Answer by moritz for Limit displayed length of string on web pagemoritz2008-10-12T12:16:07Z2008-10-12T12:16:07Z<p>Perhaps the CSS property <code>overflow: hidden;</code> can help you, in conjuntion with <code>width</code>.</p>
http://stackoverflow.com/questions/195008/what-is-code-coverage-and-how-do-you-measure-it/195392#1953920Answer by moritz for What is Code Coverage and how do YOU measure it?moritz2008-10-12T11:56:19Z2008-10-12T11:56:19Z<p>For Perl there's the excellent <a href="http://search.cpan.org/perldoc?Devel::Cover" rel="nofollow">Devel::Cover</a> module which I regularly use on my modules. </p>
<p>If the build and installation is managed by Module::Build you can simply run <code>./Build testcover</code> to get a nice HTML site that tells you the coverage per sub, line and condition, with nice colors making it easy to see which code path has not been covered.</p>
http://stackoverflow.com/questions/194104/how-do-i-know-if-a-system-has-powered-on/194139#1941399Answer by moritz for How do I know if a system has powered on?moritz2008-10-11T14:37:48Z2008-10-11T14:37:48Z<p>On the rebooting machine you can install a script in your crontab with the special <code>@reboot</code> assertion (see <code>man 5 crontab</code>). That script could send a notification of some kind to the other machine, notifying it that it's up now.</p>
http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/193066#1930661Answer by moritz for What are all the Programming Paradigms?moritz2008-10-10T21:20:20Z2008-10-10T21:20:20Z<p>There's <a href="http://en.wikipedia.org/wiki/Process-oriented_programming" rel="nofollow">process-oriented programming</a>, don't know if that's "whole" enough for you.</p>
http://stackoverflow.com/questions/193020/how-do-i-use-constants-from-a-perl-module/193037#19303716Answer by moritz for How do I use constants from a Perl module?moritz2008-10-10T21:11:36Z2008-10-10T21:11:36Z<p>Constants are just subs with empty prototype, so they can be exported like any other sub.</p>
<pre><code># file Foo.pm
package Foo;
use constant BAR => 123;
use Exporter qw(import);
our @EXPORT_OK = qw(BAR);
# file main.pl:
use Foo qw(BAR);
print BAR;
</code></pre>
http://stackoverflow.com/questions/187531/how-can-i-get-perl-to-give-a-warning-message-when-a-certain-package-tag-is-import/187541#18754112Answer by moritz for How can I get Perl to give a warning message when a certain package/tag is imported?moritz2008-10-09T14:31:55Z2008-10-09T18:22:43Z<p>You write your own <code>sub import</code> in <code>package Foo</code> that will get called with the parameter list from <code>use Foo</code>.</p>
<p>An example:</p>
<pre><code>package Foo;
use Exporter;
sub import {
warn "called with paramters '@_'";
# do the real import work
goto &{Exporter->can('import')};
}
</code></pre>
<p>So in sub <code>import</code> you can search the argument list for the deprecated tag, and then throw a warning.</p>
<p><em>Update</em>: As Axeman points out, you should call <code>goto &{Exporter->can('import')}</code>. This form of goto replaces the current subroutine call on the stack, preserving the current arguments (if any). That's needed because Exporter's import() method will export to its caller's namespace.</p>
http://stackoverflow.com/questions/184590/is-there-a-perl-compatible-regular-expression-to-trim-whitespace-from-both-sides/184610#1846104Answer by moritz for Is there a Perl-compatible regular expression to trim whitespace from both sides of a string?moritz2008-10-08T20:06:06Z2008-10-08T20:06:06Z<p>Here you go: <code>$x =~ s/\A\s*(.*?)\s*\z/$1/;
</code></p>
http://stackoverflow.com/questions/148388/perl-best-practices-what-shouldnt-i-use/148439#14843917Answer by moritz for Perl Best Practices: What shouldn't I use?moritz2008-09-29T12:15:12Z2008-10-07T11:33:16Z<p>In case somebody hasn't got the point of PBP: it's not there to religiously recommend some coding practices and to "forbid" others. It's mostly there to make you <i>think</i> about coding practices, and to give you some food for thought.</p>
<p>That said; there's a nice wiki page about <a href="http://www.perlfoundation.org/perl5/index.cgi?pbp_module_recommendation_commentary" rel="nofollow">the pbp module recommendations</a>, because some of them are quite out of date. It's not complete, but full of common sense.</p>
<p>Also <a href="http://www.perlmonks.org/?node_id=674973" rel="nofollow">some of the regex recommendations can lead to slowdowns</a> on older perl versions.</p>
http://stackoverflow.com/questions/1256502/is-perl-guaranteed-to-return-consistently-ordered-hash-keys/1256787#1256787Comment by moritz on Is Perl guaranteed to return consistently-ordered hash keys?moritz2009-08-10T20:03:46Z2009-08-10T20:03:46ZI don't get it - why should you be defensive about a feature that's tested, documented and thus guaranteed to work?
This seems just as silly as using a text editor and calling File -> Safe twice in the a row in the hope that if the first one fails silently, the second one will succeed.http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/260633#260633Comment by moritz on What is your best programmer joke?moritz2008-12-14T22:03:25Z2008-12-14T22:03:25ZYou're so web 1.0 - nowadays they say "There's no place like ::1". (Or for the Unix geek, "There's no place like ~")http://stackoverflow.com/questions/229357/what-is-the-best-way-in-perl-to-copy-files-into-a-yet-to-be-created-directory-tre/229382#229382Comment by moritz on What is the best way in Perl to copy files into a yet-to-be-created directory tree?moritz2008-10-23T15:24:43Z2008-10-23T15:24:43ZMaybe because answering your own questions seems like karma whoring, and since you edited the question, somebody thought you were actually asking it?http://stackoverflow.com/questions/211240/best-way-to-automatically-synchronize-files-between-linux-and-windowsComment by moritz on Best way to automatically synchronize files between Linux and Windowsmoritz2008-10-17T07:07:09Z2008-10-17T07:07:09ZI'd go with Unison, it's good, mature and reliable.http://stackoverflow.com/questions/210068/perl-golf-print-the-powers-of-a-number/211217#211217Comment by moritz on Perl golf: Print the powers of a numbermoritz2008-10-17T06:58:43Z2008-10-17T06:58:43Zseq 9|perl -pe's/./.37**$_/e' not as short, but a bit obfuscated and doesn't need a new perl.http://stackoverflow.com/questions/210068/perl-golf-print-the-powers-of-a-number/210325#210325Comment by moritz on Perl golf: Print the powers of a numbermoritz2008-10-16T21:53:19Z2008-10-16T21:53:19Z+9 for perl -e'..'. Remeber, "2 Your stroke count includes the command line"http://stackoverflow.com/questions/210068/perl-golf-print-the-powers-of-a-number/210140#210140Comment by moritz on Perl golf: Print the powers of a numbermoritz2008-10-16T21:23:34Z2008-10-16T21:23:34ZYour answers resemble those that you can find on perlmonks, so I was curios ;-)http://stackoverflow.com/questions/210068/perl-golf-print-the-powers-of-a-number/210107#210107Comment by moritz on Perl golf: Print the powers of a numbermoritz2008-10-16T21:01:44Z2008-10-16T21:01:44ZIf you don't want "\n", you can use $/ instead. It holds the input record separator, defaults to "\n" and is two characters shorter.
http://stackoverflow.com/questions/210068/perl-golf-print-the-powers-of-a-number/210140#210140Comment by moritz on Perl golf: Print the powers of a numbermoritz2008-10-16T20:38:29Z2008-10-16T20:38:29ZYes, corrected. (Leon, you don't happen to frequent perlmonks as well? if yes, under which nick?)http://stackoverflow.com/questions/203824/how-many-professional-software-developers-are-there-worldwide/203903#203903Comment by moritz on How many professional software developers are there worldwide?moritz2008-10-15T07:22:31Z2008-10-15T07:22:31ZThe gas station problem is quite different - for example it's not so hard to define what a gas station is. But what is a programmer? Also programmers often don't do business on their own, but work in the background of a large company - how do you count that?http://stackoverflow.com/questions/203605/how-do-i-match-only-fully-composed-characters-in-a-unicode-string-in-perl/203801#203801Comment by moritz on How do I match only fully-composed characters in a Unicode string in Perl?moritz2008-10-15T06:50:51Z2008-10-15T06:50:51Z... that will also make the warning go away, because it sets up STDOUT in the same way as STDIN.http://stackoverflow.com/questions/203605/how-do-i-match-only-fully-composed-characters-in-a-unicode-string-in-perl/203801#203801Comment by moritz on How do I match only fully-composed characters in a Unicode string in Perl?moritz2008-10-15T06:43:30Z2008-10-15T06:43:30ZYou can get rid of the ugly BEGIN{binmode STDIN, ":utf8"} kludge by supplying the option -CS on the command line.http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language/202800#202800Comment by moritz on Is there a human readable programming language?moritz2008-10-14T21:12:24Z2008-10-14T21:12:24ZThat's not readable by humans, just 1337 h4x0rz ;-)http://stackoverflow.com/questions/124604/i-know-perl-5-what-are-the-advantages-of-learning-perl-6-rather-than-moving-to/125832#125832Comment by moritz on I know Perl 5. What are the advantages of learning Perl 6, rather than moving to Python?moritz2008-10-13T11:16:07Z2008-10-13T11:16:07ZJunctions are not primarily about speed, but about readability.http://stackoverflow.com/questions/193020/how-do-i-use-constants-from-a-perl-module/193935#193935Comment by moritz on How do I use constants from a Perl module?moritz2008-10-11T11:05:24Z2008-10-11T11:05:24ZWhy? What's wrong with constant?