User nohat - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T01:54:19Z http://stackoverflow.com/feeds/user/3101 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1684171/how-can-i-install-several-cpan-distributions-at-once/1688090#1688090 -1 Answer by nohat for How can I install several CPAN distributions at once? nohat 2009-11-06T14:52:14Z 2009-11-06T14:52:14Z <p>I've found that for large-scale production systems relying on a third-party code source such as CPAN for production deployments is impractical. Therefore I have always used a system such as <a href="http://en.wikipedia.org/wiki/Advanced%5FPackaging%5FTool" rel="nofollow">apt</a>, <a href="http://en.wikipedia.org/wiki/RPM%5FPackage%5FManager" rel="nofollow">rpm</a>, or <a href="http://www.gnu.org/software/stow/" rel="nofollow">GNU stow</a> to build packages for all of a system's dependencies, and then a deployment script which uses the package manager to deploy all necessary packages to production servers.</p> http://stackoverflow.com/questions/1498393/how-can-i-add-a-newline-after-x-number-of-characters-in-perl/1501255#1501255 0 Answer by nohat for How can I add a newline after X number of characters in Perl? nohat 2009-09-30T23:47:50Z 2009-09-30T23:47:50Z <p>The unpack method is probably the most efficient, if a bit obtuse. The regex method is probably the most Perlish way to do it. But since this is Perl, there is more than one way to do it, so here are a few other fun ways you could do this:</p> <p>using <code>List::MoreUtils::natatime</code> ("n-at-a-time"). This method is of course wildly wasteful of memory, creating a scalar for every character in the string.</p> <pre><code>use List::MoreUtils qw(natatime); my $in = "aaaaabbbbbcccccdd"; my $out = ''; my $it = natatime 5, split //, $in; while(my @chars = $it-&gt;()) { $out .= $_ for @chars; $out .= "\n"; } </code></pre> <p>using the "replacement" argument of <code>substr</code> to splice in newlines, working from the end: (you have to work from the end because otherwise further offsets no longer line up after you start adding newlines; also working from the end means you only calculate <code>length $in</code> at loop start time without using an extra variable)</p> <pre><code>for(my $i = length($in) - length($in) % 5; $i; $i -= 5) { substr($in, $i, 0, "\n"); } </code></pre> <p>if you want to keep the input variable as is, you could pre-calculate all the offsets and extract them using <code>substr</code></p> <pre><code>foreach (map $_ * 5, 0 .. int(length($in) / 5)) { $out .= substr($in, $_, 5) . "\n"; } </code></pre> <p>probably the most succinct way using <code>substr</code> is to use replacement and concatenate the return value:</p> <pre><code>$out .= substr($in, 0, 5, '') . "\n" while $in; </code></pre> http://stackoverflow.com/questions/1469105/escaping-a-literal-php-and-in-a-php-script 0 Escaping a literal <?php and <? in a PHP script nohat 2009-09-23T23:50:28Z 2009-09-24T05:42:19Z <p>I am templatizing my php.ini using PHP. I have a script to set up a development environment by generating httpd.conf, apachectl, and php.ini from templates using a CLI PHP script. Unfortunately there are literal <code>&lt;?</code> and <code>&lt;?php</code> strings in php.ini (in a comment). Is it possible to escape those somehow so php doesn't interpret them as normal PHP escape sequences?</p> <p>Currently my workaround is to wrap them in a real PHP escape sequence that outputs them as a string, like this:</p> <pre><code>; This directive determines whether or not PHP will recognize code between ; &lt;?php echo "&lt;? and ?&gt;" ?&gt; tags as PHP source which should be processed as such. It's been ; recommended for several years that you not use the short tag "short cut" and ; instead to use the full &lt;?php echo "&lt;?php and ?&gt;" ?&gt; tag combination. With the wide spread use ; </code></pre> http://stackoverflow.com/questions/1422652/how-to-pass-variable-number-of-arguments-to-a-php-function 0 How to pass variable number of arguments to a PHP function nohat 2009-09-14T16:37:27Z 2009-09-14T16:45:17Z <p>I have a PHP function that takes a variable number of arguments (using <code>func_num_args()</code> and <code>func_get_args()</code>), but the number of arguments I want to pass the function depends on the length of an array. Is there a way to <em>call</em> a PHP function with a variable number of arguments?</p> http://stackoverflow.com/questions/1413589/how-to-combine-the-keys-and-values-of-an-array-in-php 1 How to combine the keys and values of an array in PHP nohat 2009-09-11T22:39:13Z 2009-09-11T23:03:48Z <p>Say I have an array of key/value pairs in PHP:</p> <pre><code>array( 'foo' =&gt; 'bar', 'baz' =&gt; 'qux' ); </code></pre> <p>What's the simplest way to transform this to an array that looks like the following?</p> <pre><code>array( 'foo=bar', 'baz=qux' ); </code></pre> <p>i.e.</p> <pre><code>array( 0 =&gt; 'foo=bar', 1 =&gt; 'baz=qux'); </code></pre> <p>In perl, I'd do something like</p> <pre><code>map { "$_=$hash{$_}" } keys %hash </code></pre> <p>Is there something like this in the <a href="http://us3.php.net/manual/en/ref.array.php" rel="nofollow">panoply of array functions</a> in PHP? Nothing I looked at seemed like a convenient solution.</p> http://stackoverflow.com/questions/243790/assign-auto-incrementing-value-to-new-column-in-oracle 1 Assign auto-incrementing value to new column in Oracle nohat 2008-10-28T15:43:07Z 2009-07-13T17:36:32Z <p>I have this table in an Oracle DB which has a primary key defined on 3 of the data columns. I want to drop the primary key constraint to allow rows with duplicate data for those columns, and create a new column, 'id', to contain an auto-incrementing integer ID for these rows. I know how to create a sequence and trigger to add an auto-incrementing ID for new rows added to the table, but is it possible to write a PL/SQL statement to add unique IDs to all the rows that are already in the table?</p> http://stackoverflow.com/questions/766759/what-is-a-quilt-patchset 2 What is a quilt patchset? nohat 2009-04-20T03:20:07Z 2009-04-21T02:54:51Z <p>There is a git command called <a href="http://www.kernel.org/pub/software/scm/git/docs/git-quiltimport.html" rel="nofollow">git-quiltimport</a>. Its man pages says it "Applies a quilt patchset onto the current git branch, preserving the patch boundaries, patch order, and patch descriptions present in the quilt patchset."</p> <p>However, it doesn't define what a "quilt patchset" is. What is a "quilt patchset"?</p> http://stackoverflow.com/questions/769994/can-i-force-git-diff-to-treat-a-file-as-a-copy 1 Can I force git diff to treat a file as a copy? nohat 2009-04-20T20:40:44Z 2009-04-20T21:17:56Z <p>The diff functionality in git has "copy detection"--if it detects that a new file is actually a (possibly modified) copy of an existing file, the diff output shows the differences between the source file and the new file rather than just a bunch of additions from a blank file to the new file.</p> <p>As far as I can tell, <code>git diff</code> uses some heuristics to detect this situation. Unfortunately it is not detecting a particular new file as a copy of another file because I guess it has changed too much. I'd still like to view the diff as though it were a copy. Is there a way to inform <code>git diff</code> that the new file is a copy of another so that it will do this for me?</p> http://stackoverflow.com/questions/762399/sort-by-value-hash-of-hash-of-hashes-perl/763080#763080 3 Answer by nohat for Sort by value hash of hash of hashes Perl nohat 2009-04-18T07:16:38Z 2009-04-18T07:16:38Z <p>You can also solve this problem for a nested data structure of arbitrary nesting depth using a recursive solution. You recursively build up a destination array containing paths and values, and then sort that array.</p> <pre><code>use warnings; use strict; sub paths { my ($data, $cur_path, $dest) = @_; if (ref $data eq 'HASH') { foreach my $key (keys %$data) { paths($data-&gt;{$key}, [@$cur_path, $key], $dest); } } else { push @$dest, [$cur_path, $data]; } } my $data = { KeyA =&gt; { Key1 =&gt; { Key4 =&gt; 4, Key5 =&gt; 9, Key6 =&gt; 10 }, Key2 =&gt; { Key7 =&gt; 5, Key8 =&gt; 9 } }, KeyB =&gt; { Key3 =&gt; { Key9 =&gt; 6, Key10 =&gt; 3 } } }; my $dest = []; paths($data, [], $dest); foreach my $result (sort { $a-&gt;[1] &lt;=&gt; $b-&gt;[1] } @$dest) { print join(' ', @{$result-&gt;[0]}, $result-&gt;[1]), "\n"; } </code></pre> http://stackoverflow.com/questions/760104/what-should-i-use-instead-of-printf-in-perl/761094#761094 3 Answer by nohat for What should I use instead of printf in Perl? nohat 2009-04-17T16:17:29Z 2009-04-17T16:17:29Z <p>The <code>print</code> builtin is very convenient for most situations. Besides variable interpolation:</p> <pre><code>print "Outputting $n numbers"; # These two lines print "Outputting ${n} numbers"; # are equivalent </code></pre> <p>Remember that <code>print</code> can take multiple arguments, so there is no need to concatenate them first into a single string if you need to print the result of a subroutine call:</p> <pre><code>print "Output data: ", Dumper($data); </code></pre> <p>However, for outputting numbers other than simple integers, you'll probably want the formatting convenience of printf. Outputting other data types is easy with <code>print</code>, though.</p> <p>You can use <code>join</code> to conveniently output arrays:</p> <pre><code>print join ', ', @array; </code></pre> <p>And combine with <code>map</code> and <code>keys</code> to output hashes:</p> <pre><code>print join ', ', map {"$_ : $hash{$_}"} keys %hash; </code></pre> <p>Use the <code>qq</code> operator if you want to output quotes around the data:</p> <pre><code>print join ', ', map {qq("$_" : "$hash{$_}"}) keys %hash; </code></pre> http://stackoverflow.com/questions/662050/how-can-i-eval-environment-variables-in-perl/663805#663805 1 Answer by nohat for How can I eval environment variables in Perl? nohat 2009-03-19T19:58:09Z 2009-03-19T19:58:09Z <p>Maybe what you want is not Perl's <code>eval</code> but to evaluate the environment variable <em>as the shell would</em>. For this, you want to use backticks.</p> <pre><code>$x = `$ENV{QUOTE}` </code></pre> http://stackoverflow.com/questions/504857/what-are-the-uses-of-lvalue-subroutines-in-perl/505510#505510 4 Answer by nohat for What are the uses of lvalue subroutines in Perl? nohat 2009-02-02T23:55:43Z 2009-02-02T23:55:43Z <p>You can use lvalue subs as setters for object members:</p> <pre><code>sub x : lvalue { my $self = shift; $self-&gt;{x}; } </code></pre> <p>Then later:</p> <pre><code>$foo-&gt;x = 5; </code></pre> <p>This combines the intuitiveness of setting members directly with the flexibility of encapsulating the setter, in case you later want to change how the object is implemented. Compare to the following more traditional ways to set members in Perl:</p> <p>Intuitive but fragile; what if you change how $foo is implemented?</p> <pre><code>$foo-&gt;{x} = 5; </code></pre> <p>Traditional setter method; doesn't use assignment syntax for what amounts to an assignment:</p> <pre><code>$foo-&gt;set_x(5); </code></pre> <p>Of course, lvalue methods have never really been embraced by the Perl community, and use of lvalue subs is "weird" and whatever would be gained for intuitiveness would be lost by the strangeness of it all.</p> http://stackoverflow.com/questions/378864/how-can-i-parse-peoples-full-names-into-user-names-in-perl/382818#382818 1 Answer by nohat for How can I parse people's full names into user names in Perl? nohat 2008-12-20T02:53:51Z 2008-12-20T02:53:51Z <p>It looks like your input data is comma-separated. To me, the clearest way to do this would be split into components, and then generate the login names from that:</p> <pre><code>while (&lt;&gt;) { chomp; my ($last, $first) = split /,/, lc $_; $last =~ s/[^a-z]//g; # strip out nonletters $first =~ s/[^a-z]//g; # strip out nonletters my $logname = substr($first, 0, 1) . $last; print $logname, "\n"; } </code></pre> http://stackoverflow.com/questions/247678/how-does-mediawiki-compose-the-image-paths/254972#254972 5 Answer by nohat for How does MediaWiki compose the image paths? nohat 2008-10-31T21:11:02Z 2008-10-31T21:11:02Z <p>The accepted answer is incorrect:</p> <ul> <li>The MD5 sum of a string is 32 hex characters (128 bits), not 16</li> <li>The file path is calculated from the MD5 sum of the filename, not the contents of the file itself</li> <li>The first directory in the path is the first character, and the second directory is the first and second characters. The directory path is not a combination of the first 3 or 6 characters.</li> </ul> <p>The MD5 sum of 'Herbs.jpg' is fceaa5e7250d5036ad8cede5ce7d32d6. The first 2 characters are 'fc', giving the file path f/fc/, which is what is given in the example.</p> http://stackoverflow.com/questions/160482/java-development-in-a-perl-shop-how-to-select-the-right-tool/160623#160623 3 Answer by nohat for Java development in a Perl shop: How to select the right tool? nohat 2008-10-02T02:29:14Z 2008-10-02T02:29:14Z <p>I would suggest that if the reason you're being pulled away from Perl is because of performance issues, then I would push to just rewrite in C as Perl XS modules the parts of your application that would benefit from it most, rather than move wholesale to a new development environment. I work in a mostly-Perl environment, but key parts of our system were rewritten in C and C++ to satisfy performance requirements.</p> http://stackoverflow.com/questions/153644/why-do-you-need-when-accessing-array-and-hash-elements-in-perl/153715#153715 6 Answer by nohat for Why do you need $ when accessing array and hash elements in Perl? nohat 2008-09-30T15:59:41Z 2008-09-30T15:59:41Z <p>This is valid Perl: <code>@var[0]</code>. It is an array slice of length one. <code>@var[0,1]</code> would be an array slice of length two.</p> <p><code>@var['key']</code> is not valid Perl because arrays can only be indexed by numbers, and the other two (<code>%var[0] and %var['key']</code>) are not valid Perl because hash slices use the {} to index the hash.</p> <p><code>@var{'key'}</code> and <code>@var{0}</code> are both valid hash slices, though. Obviously it isn't normal to take slices of length one, but it is certainly valid.</p> <p>See <a href="http://perldoc.perl.org/perldata.html#Slices" rel="nofollow">the slice section of perldata perldoc</a>for more information about slicing in Perl.</p> http://stackoverflow.com/questions/100106/obfuscation-puzzle-can-you-figure-out-what-this-perl-function-does/100503#100503 6 Answer by nohat for Obfuscation Puzzle: Can you figure out what this Perl function does? nohat 2008-09-19T08:32:59Z 2008-09-19T08:32:59Z <p>It takes two arrayrefs and returns a new arrayref with the contents of the second array rearranged such that the second part comes before the first part, split at a point based on the memory location of the first array. When the second array is empty or contains one item, just returns a copy of the second array. Equivalent to the following:</p> <pre><code>sub foo { my ($list1, $list2) = @_; my @output; if (@$list2 &gt; 0) { my $split = $list1 % @$list2; @output = @$list2[$split .. $#$list2, 0 .. ($split - 1)]; } else { @output = @$list2; } return \@output; } </code></pre> <p><code>$list1 % @$list2</code> essentially picks a random place to split the array, based on <code>$list</code> which evaluates to the memory address of $list when evaluated in a numeric context.</p> <p>The original mostly uses a lot of tautologies involving punctuation variables to obfuscate. e.g.</p> <ul> <li><code>!$| | $|</code> is always 1</li> <li><code>@- - @+</code> is always 0</li> </ul> <p>Updated to note that <code>perltidy</code> was very helpful deciphering here, but it choked on <code>!!$^^^!$^^</code>, which it reformats to <code>!!$^ ^ ^ !$^ ^</code>, which is invalid Perl; it should be <code>!!$^^ ^ !$^^</code>. This might be the cause of RWendi's compile error.</p> http://stackoverflow.com/questions/96848/is-there-any-way-to-use-a-constant-as-hash-key-in-perl/96869#96869 14 Answer by nohat for Is there any way to use a "constant" as hash key in Perl? nohat 2008-09-18T20:57:00Z 2008-09-18T20:57:00Z <p><code>use constant</code> actually makes constant subroutines.</p> <p>To do what you want, you need to explicitly call the sub:</p> <pre><code>use constant X =&gt; 1; my %x = ( &amp;X =&gt; 'X'); </code></pre> <p>or</p> <pre><code>use constant X =&gt; 1; my %x = ( X() =&gt; 'X'); </code></pre> http://stackoverflow.com/questions/72401/what-perl-module-would-you-be-lost-without/75478#75478 5 Answer by nohat for What Perl module would you be lost without? nohat 2008-09-16T18:30:13Z 2008-09-16T18:30:13Z <p>Can't live without <a href="http://search.cpan.org/perldoc?Text::CSV_XS" rel="nofollow">Text::CSV_XS</a> for parsing and generating line-oriented structured data.</p> http://stackoverflow.com/questions/68352/list-comparison/68417#68417 0 Answer by nohat for List comparison nohat 2008-09-16T01:05:47Z 2008-09-16T17:47:35Z <p>Here is my solution:</p> <p>Construct a hash whose keys are the union of all the elements in the input lists, and the values are bit strings, where bit <em>i</em> is set if the element is present in list <em>i</em>. The bit strings are constructed using bitwise or. Then, construct the output lists by iterating over the keys of the hash, adding keys to the associated output list.</p> <pre><code>sub list_compare { my (@lists) = @_; my %compare; my $bit = 1; foreach my $list (@lists) { $compare{$_} |= $bit foreach @$list; $bit *= 2; # shift over one bit } my @output_lists; foreach my $item (keys %compare) { push @{ $output_lists[ $compare{$item} - 1 ] }, $item; } return \@output_lists; } </code></pre> <p>Updated to include the inverted output list generation suggested by Aristotle</p> http://stackoverflow.com/questions/68352/list-comparison 0 List comparison nohat 2008-09-16T00:53:58Z 2008-09-16T17:47:35Z <p>I use this question in interviews and I wonder what the best solution is.</p> <p>Write a Perl sub that takes <em>n</em> lists, and then returns 2^<em>n</em>-1 lists telling you which items are in which lists; that is, which items are only in the first list, the second, list, both the first and second list, and all other combinations of lists. Assume that <em>n</em> is reasonably small (less than 20).</p> <p>For example:</p> <pre><code>list_compare([1, 3], [2, 3]); =&gt; ([1], [2], [3]); </code></pre> <p>Here, the first result list gives all items that are only in list 1, the second result list gives all items that are only in list 2, and the third result list gives all items that are in both lists.</p> <pre><code>list_compare([1, 3, 5, 7], [2, 3, 6, 7], [4, 5, 6, 7]) =&gt; ([1], [2], [3], [4], [5], [6], [7]) </code></pre> <p>Here, the first list gives all items that are only in list 1, the second list gives all items that are only in list 2, and the third list gives all items that are in both lists 1 and 2, as in the first example. The fourth list gives all items that are only in list 3, the fifth list gives all items that are only in lists 1 and 3, the sixth list gives all items that are only in lists 2 and 3, and the seventh list gives all items that are in all 3 lists.</p> <p>I usually give this problem as a follow up to the subset of this problem for <em>n</em>=2.</p> <p>What is the solution? </p> <p>Follow-up: The items in the lists are strings. There might be duplicates, but since they are just strings, duplicates should be squashed in the output. Order of the items in the output lists doesn't matter, the order of the lists themselves does.</p> http://stackoverflow.com/questions/37662/looking-for-a-n-ary-tree-implementation-in-perl/38857#38857 0 Answer by nohat for Looking for a n-ary tree implementation in Perl nohat 2008-09-02T05:08:59Z 2008-09-02T07:12:46Z <p>Depending on what you need a tree structure for, you might not need any pre-built implementation. Perl already supports them using arrays of arrayrefs.</p> <p>For example, a simple representation of this tree</p> <pre><code> t / \ a d / \ / \ b c e f </code></pre> <p>could be represented by the following Perl code:</p> <pre><code>$tree = [ t =&gt; [ a =&gt; [ b =&gt; [], c =&gt; [] ] d =&gt; [ e =&gt; [], f =&gt; [] ] ] ]; </code></pre> <p>Here, the tree's representation is as nested pairs: first the element (in this case, the letter), then an anonymous array reference representing the children of that element. Note that <code>=&gt;</code> is just a fancy comma in Perl that exempts you having to put quotes around the the token to the left of the comma, provided it is a single word. The above code could also have been written thus:</p> <pre><code>$tree = [ 't', [ 'a' , [ 'b' , [], 'c' , [] ] 'd' , [ 'e' , [], 'f' , [] ] ] ]; </code></pre> <p>Here's a simple depth-first accumulator of all the elements in the tree:</p> <pre><code>sub elements { my $tree = shift; my @elements; my @queue = @$tree; while (@queue) { my $element = shift @queue; my $children = shift @queue; push @elements, $element; unshift @queue, @$children; } return @elements; } @elements = elements($tree) # qw(t a b c d e f) </code></pre> <p>(For breadth first, change the line <code>unshift @queue, @$children</code> to <code>push @queue, @$children</code>)</p> <p>So, depending on what operations you want to perform on your tree, the simplest thing might be just to use Perl's built-in support for arrays and array references.</p> http://stackoverflow.com/questions/35178/regex-to-replace-boolean-with-bool/35358#35358 2 Answer by nohat for Regex to replace Boolean with bool nohat 2008-08-29T21:36:34Z 2008-08-29T21:36:34Z <p>Watch out with that quote-matching lookahead assertion. That'll only match if <em>Boolean</em> is the last part of a string, but not in the middle of the string. You'll need to match an even number of quote marks preceding the match if you want to be sure you're not in a string (assuming no multi-line strings and no escaped embedded quote marks).</p> http://stackoverflow.com/questions/30454/parsing-xml-elements-attributes-with-perl/30586#30586 3 Answer by nohat for Parsing XML Elements & Attributes with Perl nohat 2008-08-27T16:26:57Z 2008-08-27T16:26:57Z <p><code>$item</code> is a hashref that looks like this:</p> <pre><code>$item = { 'RunningTime' =&gt; {'content' =&gt; '90', 'Units' =&gt; 'minutes'}, 'ProductGroup' =&gt; 'DVD' }; </code></pre> <p>Therefore you can get the running time like this:</p> <pre><code>$RunningTime = $item-&gt;{RunningTime}-&gt;{content} </code></pre> http://stackoverflow.com/questions/29242/off-the-shelf-hex-dump-code/29395#29395 3 Answer by nohat for Off-the-Shelf Hex Dump Code nohat 2008-08-27T02:42:07Z 2008-08-27T02:42:07Z <p>The unix tool <code>xxd</code> is distributed as part of <a href="http://www.vim.org/download.php" rel="nofollow"><code>vim</code></a>, and according to <a href="http://www.vmunix.com/vim/util.html#xxd" rel="nofollow">http://www.vmunix.com/vim/util.html#xxd</a>, the source for xxd is <a href="ftp://ftp.uni-erlangen.de:21/pub/utilities/etc/xxd-1.10.tar.gz" rel="nofollow">ftp://ftp.uni-erlangen.de:21/pub/utilities/etc/xxd-1.10.tar.gz</a>. It was written in C and is about 721 lines. The only licensing information given for it is this:</p> <pre><code>* Distribute freely and credit me, * make money and share with me, * lose money and don't ask me. </code></pre> <p>The unix tool <code>hexdump</code> is available from <a href="http://gd.tuwien.ac.at/softeng/Aegis/hexdump.html" rel="nofollow">http://gd.tuwien.ac.at/softeng/Aegis/hexdump.html</a>. It was written in C and can be compiled from source. It's quite a bit bigger than xxd, and is distributed under the GPL.</p> http://stackoverflow.com/questions/14118/how-can-i-test-stdin-without-blocking-in-perl/28699#28699 0 Answer by nohat for How can I test STDIN without blocking in Perl? nohat 2008-08-26T17:40:17Z 2008-08-26T17:40:17Z <p>I just want to say that the described project here seems like a story for <a href="http://thedailywtf.com" rel="nofollow">The Daily WTF</a> in that's it's a ridiculously complex and Rube Goldberg-esque solution to a problem that should be solved in a better way. A remote-controlled servo to press the power button? Controlled by an AIM bot? Really? I almost feel like the setup for this question has to be a joke... </p> <p>But in case it's not, you should instead do the following:</p> <ol> <li>Investigate the root cause of the crashes and eliminate it; either by fixing the software or replacing the failing hardware.</li> <li>Invest in a server that offers a remote management console, like the <a href="http://www.rackable.com/products/dsheet_pdfs/Roamer_Datasheet.pdf" rel="nofollow">Rackable Roamer</a>, and set up a status-checking server that resets the server automatically via the console if the status check fails.</li> </ol> http://stackoverflow.com/questions/12647/how-do-i-tell-if-a-variable-has-a-numeric-value-in-perl/28589#28589 8 Answer by nohat for How do I tell if a variable has a numeric value in Perl? nohat 2008-08-26T16:53:34Z 2008-08-26T16:53:34Z <p>Use <code>Scalar::Util::looks_like_number()</code> which uses the internal Perl C API's looks_like_number() function, which is probably the most efficient way to do this.</p> <h2>Example:</h2> <pre><code>#!/usr/local/bin/perl use warnings; use strict; use Scalar::Util qw(looks_like_number); my @exprs = qw(1 5.25 0.001 1.3e8 foo bar 1dd); foreach my $expr (@exprs) { print "$expr is", looks_like_number($expr) ? '' : ' not', " a number\n"; } </code></pre> <p>Gives this output:</p> <pre><code>1 is a number 5.25 is a number 0.001 is a number 1.3e8 is a number foo is not a number bar is not a number 1dd is not a number </code></pre> <h2>see also:</h2> <pre><code>perldoc Scalar::Util perldoc perlapi </code></pre> http://stackoverflow.com/questions/329289/really-wow-them-in-the-interview/329312#329312 Comment by nohat on Really "wow" them in the interview nohat 2009-12-16T23:45:00Z 2009-12-16T23:45:00Z beta blockers++ http://stackoverflow.com/questions/329289/really-wow-them-in-the-interview Comment by nohat on Really "wow" them in the interview nohat 2009-12-16T23:43:52Z 2009-12-16T23:43:52Z Ask your doctor for a prescription for metoprolol. http://stackoverflow.com/questions/1684171/how-can-i-install-several-cpan-distributions-at-once/1688090#1688090 Comment by nohat on How can I install several CPAN distributions at once? nohat 2009-11-11T13:41:45Z 2009-11-11T13:41:45Z Why the downvote? http://stackoverflow.com/questions/1468957/should-i-use-hashstring-or-hashstring-in-perl/1469040#1469040 Comment by nohat on Should I use $hash{"string"} or $hash{string} in Perl? nohat 2009-10-14T20:52:55Z 2009-10-14T20:52:55Z $foo{baz} always means $foo{baz}. There isn't really any gotcha. I would say it's a gotcha if $foo{baz} sometimes meant something else, but it doesn't, so it's not. http://stackoverflow.com/questions/149600/php-code-formatter-beautifier-and-php-beautificaton-in-general/150028#150028 Comment by nohat on Php code formatter / beautifier and php beautificaton in general nohat 2009-10-06T17:45:04Z 2009-10-06T17:45:04Z FWIW, this appears to be a closed-source app and is not available for Mac OS X. http://stackoverflow.com/questions/1468957/should-i-use-hashstring-or-hashstring-in-perl/1469040#1469040 Comment by nohat on Should I use $hash{"string"} or $hash{string} in Perl? nohat 2009-10-01T00:13:29Z 2009-10-01T00:13:29Z what gotchas exactly does always quoting avoid? http://stackoverflow.com/questions/1498393/how-can-i-add-a-newline-after-x-number-of-characters-in-perl/1498447#1498447 Comment by nohat on How can I add a newline after X number of characters in Perl? nohat 2009-09-30T23:58:00Z 2009-09-30T23:58:00Z 1. Addition is a mathematical operation in Perl, even on strings; you want the string concatenation operator '.'. 2. The 3rd argument to substr is the length of the substring, not the offset of the end of the substring. 3. Newline has to be in double quotes: &quot;\n&quot;; '\n' is the literal string \n. 4. The test in your while loop is backwards; it should be while(length($string)&gt;$x). http://stackoverflow.com/questions/1469105/escaping-a-literal-php-and-in-a-php-script/1469927#1469927 Comment by nohat on Escaping a literal <?php and <? in a PHP script nohat 2009-09-24T16:56:00Z 2009-09-24T16:56:00Z HTML encoding would only work if the output were HTML. It's not—it's a php.ini file http://stackoverflow.com/questions/1422652/how-to-pass-variable-number-of-arguments-to-a-php-function/1422654#1422654 Comment by nohat on How to pass variable number of arguments to a PHP function nohat 2009-09-14T16:55:19Z 2009-09-14T16:55:19Z Is it possible to use call_user_func_array() with an object method call? http://stackoverflow.com/questions/1422652/how-to-pass-variable-number-of-arguments-to-a-php-function/1422654#1422654 Comment by nohat on How to pass variable number of arguments to a PHP function nohat 2009-09-14T16:54:07Z 2009-09-14T16:54:07Z Yes, thank you. call_user_func_array() is exactly the function I was looking for. http://stackoverflow.com/questions/1361088/what-factors-could-determine-whether-clojure-scala-or-haskell-will-gain-traction/1361238#1361238 Comment by nohat on What factors could determine whether Clojure, Scala or Haskell will gain traction? nohat 2009-09-14T00:37:31Z 2009-09-14T00:37:31Z Running on the JVM and .NET is attractive because it enables easy and deep integration with existing codebases on those runtimes. http://stackoverflow.com/questions/1413589/how-to-combine-the-keys-and-values-of-an-array-in-php/1413607#1413607 Comment by nohat on How to combine the keys and values of an array in PHP nohat 2009-09-11T23:36:16Z 2009-09-11T23:36:16Z I accept this answer because it is straightforward, and how I ended up solving my problem. I am disappointed there is no way to do it in a single expression, avoiding the need for the temporary $out variable. http://stackoverflow.com/questions/1413589/how-to-combine-the-keys-and-values-of-an-array-in-php/1413618#1413618 Comment by nohat on How to combine the keys and values of an array in PHP nohat 2009-09-11T22:49:51Z 2009-09-11T22:49:51Z array_map(), it seems, only gives you the array's values http://stackoverflow.com/questions/1290318/php-constants-containing-arrays/1290354#1290354 Comment by nohat on PHP Constants Containing Arrays? nohat 2009-09-04T16:58:56Z 2009-09-04T16:58:56Z I agree with John—PHP should allow array constants. Perl permits that, and array constants in Perl can be quite handy. http://stackoverflow.com/questions/1005507/how-do-i-convert-datadumper-output-back-into-a-perl-data-structure/1008323#1008323 Comment by nohat on How do I convert Data::Dumper output back into a Perl data structure? nohat 2009-06-17T18:24:55Z 2009-06-17T18:24:55Z The regex isn't necessary—the value of the assignment statement is the same as the right-hand side of the assignment.