User Adam Bellaire - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T09:20:04Zhttp://stackoverflow.com/feeds/user/21632http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language21What is your favorite esoteric programming language?Adam Bellaire2008-10-09T15:10:08Z2009-11-29T22:02:26Z
<p>In the spirit of "fun polls"...
What is your favorite <a href="http://en.wikipedia.org/wiki/Esoteric%5Fprogramming%5Flanguage" rel="nofollow">esoteric programming language</a>?</p>
<p>Guidelines:</p>
<ul>
<li>One language per response, upvote to echo others' responses</li>
<li>If you can, describe what makes it your favorite</li>
<li>Provide a code sample (if practical)</li>
</ul>
<p>See Also: </p>
<ul>
<li><a href="http://stackoverflow.com/questions/17851/is-it-worth-it-to-learn-an-esoteric-programming-language">Is it worth it to learn an esoteric programming language?</a></li>
<li><a href="http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used">What is the strangest programming language you have used?</a></li>
<li><a href="http://stackoverflow.com/questions/200721/most-interesting-non-mainstream-language">Most interesting non-mainstream language?</a></li>
</ul>
<p><hr /></p>
<p>I thought it might be nice to summarize the responses, because although there are other lists (see comments below), it turns out that this list resulted in some (arguably) non-esoteric languages getting in. Also, to my knowledge none of the other lists is ranked based on votes, but these of course are. Note that only responses with at least 1 upvote are listed below.</p>
<h2>Responses by Votes</h2>
<ul>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187751">LOLCODE</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187858">Brain****</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187724">Whitespace</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187786">Ook!</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187754">APL</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187723">Perl</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187911">The Shakespeare Programming Language</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187755">HOtMEfSPRIbNG</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187752">Scratch</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187859">Prolog</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187731">Lisp</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187760">Piet</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187820">LabVIEW</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187784">F#</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187822">Bash</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187847">INTERCAL</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#188295">Subtext</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#193010">K Language</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187739">Haskell</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187844">REXX</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187870">BRIEF scripting</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#187892">FORTH</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#192921">java2k</a></li>
<li><a href="http://stackoverflow.com/questions/187715/what-is-your-favorite-esoteric-programming-language#340378">Iota</a></li>
</ul>
http://stackoverflow.com/questions/1808554/how-can-i-change-spaces-to-underscores-and-lowercase-everything/1808941#18089417Answer by Adam Bellaire for How can I change spaces to underscores and lowercase everything?Adam Bellaire2009-11-27T13:59:29Z2009-11-27T13:59:29Z<p>Another Perl method:</p>
<pre><code>perl -pe 'y/A-Z /a-z_/' file
</code></pre>
http://stackoverflow.com/questions/1803655/how-can-i-set-multiple-timefmt-in-gnuplot-with-perl/1804533#18045330Answer by Adam Bellaire for How can I set multiple timefmt in gnuplot with perl?Adam Bellaire2009-11-26T16:07:19Z2009-11-26T16:07:19Z<p>It will depend on how you use your scripts. Are these command-line scripts, CGI scripts, or something else?</p>
<p>If your scripts are invoked on the command line, you can use a module like <a href="http://perldoc.perl.org/Getopt/Long.html" rel="nofollow">GetOpt::Long</a> to work with command-line options, and use control logic in your script to change the format depending on these options.</p>
<p>Alternatively, you could attempt to detect something in the data file which can clue your script as to which format to use.</p>
<p>Unfortunately, I don't have enough information in your question to make more than these very general recommendations. If you'd like more specifics, update your question to tell us how your scripts are invoked, and how you are reading and processing your data files.</p>
http://stackoverflow.com/questions/1803618/how-can-i-identify-if-an-item-is-a-file-or-a-directory-using-netsftp/1803798#18037983Answer by Adam Bellaire for How can I identify if an item is a file or a directory using Net::SFTP?Adam Bellaire2009-11-26T13:54:31Z2009-11-26T13:54:31Z<p>To illustrate the use of <a href="http://stackoverflow.com/questions/1803618/related-to-netsftp-directory/1803738#1803738">Manni's recommendation</a>:</p>
<pre><code>use Fcntl(:mode);
my $permissions = $sftp->do_stat($path)->perm();
my $is_directory = S_ISDIR($permissions);
</code></pre>
http://stackoverflow.com/questions/1800170/are-there-perl-gui-builders-especially-for-wxperl/1800293#18002933Answer by Adam Bellaire for Are there Perl GUI builders, especially for WxPerl?Adam Bellaire2009-11-25T22:11:54Z2009-11-25T22:11:54Z<p>There is <a href="http://www.darserman.com/Perl/Loft/" rel="nofollow">The GUI Loft</a> for <a href="http://search.cpan.org/dist/Win32-GUI/" rel="nofollow">Win32::GUI</a>, but of course it's not portable off of Win32.</p>
http://stackoverflow.com/questions/1793105/how-do-i-access-the-arrays-element-stored-in-my-hash-in-perl/1793141#179314113Answer by Adam Bellaire for How do I access the array's element stored in my hash in Perl?Adam Bellaire2009-11-24T21:46:44Z2009-11-24T21:46:44Z<p>Your array syntax is incorrect. You are creating an anonymous list reference, and <code>@my_array</code> is a single-element list containing that reference.</p>
<p>You can either work with the reference properly, as a scalar: </p>
<pre><code>$my_array = ["aa" , "bbb"];
$my_hash{"Kunjan"} = $my_array;
</code></pre>
<p>Or you can work with the list as a list, creating the reference only when putting it into the hash:</p>
<pre><code>@my_array = ("aa" , "bbb");
$my_hash{"Kunjan"} = \@my_array;
</code></pre>
http://stackoverflow.com/questions/1790380/how-can-i-sum-large-hexadecimal-values-in-perl/1790452#17904523Answer by Adam Bellaire for How can I sum large hexadecimal values in Perl?Adam Bellaire2009-11-24T14:34:17Z2009-11-24T14:34:17Z<p>To expand on <a href="http://stackoverflow.com/questions/1790380/perl-hexadecimal-summation/1790422#1790422">Sinan's answer</a>, both <code>&=</code> operator and and the <code>%X</code> format are affected by the size of integers compiled into Perl. In this case, the maximum size of either is 4294967295, or 0xFFFFFFFF.</p>
<p>While your variables can hold values larger than this, they will be truncated to this maximum when passed through <code>&=</code> or <code>sprintf("%X")</code>.</p>
http://stackoverflow.com/questions/1790194/how-do-i-set-cookies-using-perl-cgi/1790229#17902296Answer by Adam Bellaire for How do I set cookies using Perl CGI?Adam Bellaire2009-11-24T13:58:00Z2009-11-24T13:58:00Z<p>If your missing semicolons are just an artifact of pasting your question, the key point here is that you need to <code>print</code> the call to <code>header</code> for it to get sent to the browser.</p>
<pre><code>print $qry->header(-cookie=>$cookie);
</code></pre>
http://stackoverflow.com/questions/1786208/how-do-i-create-a-sash-in-perl-tkx/1786471#17864713Answer by Adam Bellaire for How do I create a sash in Perl Tkx?Adam Bellaire2009-11-23T22:23:02Z2009-11-24T12:12:21Z<p>Sashes are created for you automatically when you create widgets that need them. For example, Paned Windows, created via <code>new_ttk__panedwindow()</code> as in <a href="http://www.tkdocs.com/tutorial/onepage.html" rel="nofollow">this tutorial</a>.</p>
http://stackoverflow.com/questions/1789555/how-do-i-call-another-perl-cgi-script-within-a-cgi-script/1789662#17896623Answer by Adam Bellaire for How do I call another Perl CGI script within a CGI script?Adam Bellaire2009-11-24T12:08:41Z2009-11-24T12:08:41Z<p>An example using <a href="http://perldoc.perl.org/CGI.html" rel="nofollow">CGI</a> as <a href="http://stackoverflow.com/questions/1789555/how-do-i-call-another-perl-cgi-script-within-a-cgi-script/1789577#1789577">David Dorward</a> mentions.</p>
<pre><code>use CGI;
if (redirect_needed) {
# If redirect is desired, don't print headers...
print CGI->redirect("http://some.other.url/");
exit;
}
# If no redirect is desired...
print CGI->header();
# etc...
</code></pre>
http://stackoverflow.com/questions/1787170/mysqlcant-set-a-nullable-column-to-null/1787188#17871881Answer by Adam Bellaire for MySqlcan't set a nullable column to nullAdam Bellaire2009-11-24T01:09:18Z2009-11-24T01:09:18Z<p>It seems that:</p>
<blockquote>
<p>If a table has a column which is part of a multi-column primary key then that column
cannot be nullable.</p>
</blockquote>
<p>See <a href="http://bugs.mysql.com/bug.php?id=48896" rel="nofollow">this bug report</a> and its response.</p>
http://stackoverflow.com/questions/1787124/programmatically-darken-a-hex-colour/1787135#17871352Answer by Adam Bellaire for Programmatically darken a Hex colourAdam Bellaire2009-11-24T00:55:28Z2009-11-24T00:55:28Z<ul>
<li>Split the hex color into its RGB components.</li>
<li>Convert each of these components into an integer value. </li>
<li>Multiply that integer by a fraction, such as <code>0.5</code>, making sure the result is also integer.
<ul>
<li>Alternatively, subtract a set amount from that integer, being sure not to go below 0.</li>
</ul></li>
<li>Convert the result back to hex.</li>
<li>Concatenate these values in RGB order, and use.</li>
</ul>
http://stackoverflow.com/questions/1785274/what-happened-to-the-jquery-contains-traversal-method/1785374#17853741Answer by Adam Bellaire for What happened to the jQuery "contains" traversal method?Adam Bellaire2009-11-23T19:22:25Z2009-11-23T19:22:25Z<p>It looks like in <a href="http://jqueryjs.googlecode.com/files/jquery-1.1.3.1.js" rel="nofollow">jQuery 1.1.3.1</a>, <code>contains</code> was a supported function, along with <code>eq</code>, <code>lt</code>, and <code>gt</code>, as an alias for a call to <code>filter()</code> using those CSS filters. As of jQuery 1.2, the method no longer is present in the code. </p>
<p>So it would seem the documentation is for the previous version, that method was indeed removed from jQuery. Note that in the table of contents for <a href="http://docs.jquery.com/Traversing" rel="nofollow">Traversing</a>, it's not listed. Of course, using <code>filter()</code> instead will work as it always has.</p>
http://stackoverflow.com/questions/1784457/need-help-with-pack-for-perl-and-php/1785076#17850765Answer by Adam Bellaire for Need help with "pack" for perl and phpAdam Bellaire2009-11-23T18:33:21Z2009-11-23T18:43:29Z<p>It seems that the Perl implementation of <code>pack()</code> is tolerant of invalid hex digits in the input string, and the PHP version is decidedly not.</p>
<p>Consider:</p>
<pre><code>print pack("H*", "ZZ");
</code></pre>
<p>This prints <code>3</code> in Perl (for some reason), but results in the error you mentioned in PHP.</p>
<p>I'm not sure exactly what Perl is doing with these 'digits', but it's definitely not the same as PHP.</p>
<p><strong>EDIT:</strong> It looks like, Perl actually will "roll" the hex digit domain forward into the character set. That is:</p>
<pre><code>0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ #-- Give this to Perl...
0123456789ABCDEF0123456789ABCDEF0123 #-- .. and it's treated as this hex digit
</code></pre>
<p>Thus, "ZZ" is the same as "33", which is why it prints <code>3</code>. Note that this behavior is <strong>not well-defined</strong> according to the documentation. Thus the original implementation in Perl can be considered buggy, since it relies on behavior that isn't well-defined.</p>
http://stackoverflow.com/questions/577554/when-is-assembler-faster-than-c60When is assembler faster than C?Adam Bellaire2009-02-23T13:03:26Z2009-11-22T21:22:26Z
<p>One of the stated reasons for knowing assembler is that, on occasion, it can be employed to write code that will be more performant than writing that code in a higher-level language, C in particular. However, I've also heard it stated many times that although that's not entirely false, the cases where assembler can <strong>actually</strong> be used to generate more performant code are both extremely rare and require expert knowledge of and experience with assembler. </p>
<p>This question doesn't even get into the fact that assembler instructions will be machine-specific and non-portable, or any of the other aspects of assembler. There are plenty of good reasons for knowing assembler besides this one, of course, but this is meant to be a specific question soliciting examples and data, not an extended discourse on assembler versus higher-level languages.</p>
<p>Can anyone provide some <strong>specific examples</strong> of cases where assembler will be faster than well-written C code using a modern compiler, and can you support that claim with profiling evidence? I am pretty confident these cases exist, but I really want to know exactly how esoteric these cases are, since it seems to be a point of some contention.</p>
http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen9What's the least useful comment you've ever seen?Adam Bellaire2008-09-27T11:11:00Z2009-11-20T02:26:35Z
<p>We all know that commenting our code is an important part of coding style for making our code understandable to the next person who comes along, or even ourselves in 6 months or so.</p>
<p>However, sometimes a comment just doesn't cut the mustard. I'm not talking about obvious jokes or vented frustraton, I'm talking about comments that appear to be making an attempt at explanation, but do it so poorly they might as well not be there. Comments that are <strong>too short</strong>, are <strong>too cryptic</strong>, or are <strong>just plain wrong</strong>. </p>
<p>As a cautonary tale, could you share something you've seen that was really just <strong>that bad</strong>, and if it's not obvious, show the code it was referring to and point out what's wrong with it? What <strong>should</strong> have gone in there instead?</p>
<p>See also: </p>
<ul>
<li><a href="http://stackoverflow.com/questions/163600/when-not-to-comment-code">When NOT to comment your code</a></li>
<li><a href="http://stackoverflow.com/questions/121945/how-do-you-like-your-comments-best-practices">How do you like your comments? (Best Practices)</a></li>
<li><a href="http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered">What is the best comment in source code you have ever encountered?</a></li>
</ul>
http://stackoverflow.com/questions/161872/hidden-features-of-perl65Hidden features of Perl?Adam Bellaire2008-10-02T11:49:22Z2009-11-19T12:21:56Z
<p>What are some really useful but esoteric language features in Perl that you've actually been able to employ to do useful work?</p>
<p>Guidelines:</p>
<ul>
<li>Try to limit answers to the Perl core and not CPAN</li>
<li>Please give an example and a short description</li>
</ul>
<p><hr /></p>
<h2>Hidden Features also found in other languages' Hidden Features:</h2>
<p>(These are all from <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162257">Corion's answer</a>)</p>
<ul>
<li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c#">C#</a>
<ul>
<li>Duff's Device</li>
<li>Portability and Standardness</li>
<li>Quotes for whitespace delimited lists and strings</li>
<li>Aliasable namespaces</li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Java</a>
<ul>
<li>Static Initalizers</li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">JavaScript</a>
<ul>
<li>Functions are First Class citizens</li>
<li>Block scope and closure</li>
<li>Calling methods and accessors indirectly through a variable</li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Ruby</a>
<ul>
<li>Defining methods through code</li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">PHP</a>
<ul>
<li>Pervasive online documentation</li>
<li>Magic methods</li>
<li>Symbolic references</li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Python</a>
<ul>
<li>One line value swapping</li>
<li>Ability to replace even core functions with your own functionality</li>
</ul></li>
</ul>
<h2>Other Hidden Features:</h2>
<p>Operators:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">The bool quasi-operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162058">The flip-flop operator</a>
<ul>
<li>Also used for <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627">list construction</a></li>
</ul></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162004">The <code>++</code> and unary <code>-</code> operators work on strings</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162075">The repetition operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161943">The spaceship operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162239">The || operator (and // operator) to select from a set of choices</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162152">The diamond operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162249">Special cases of the <code>m//</code> operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162060">The tilde-tilde "operator"</a></li>
</ul>
<p>Quoting constructs:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416">The qw operator</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">Letters can be used as quote delimiters in q{}-like constructs</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163374">Quoting mechanisms</a></li>
</ul>
<p>Syntax and Names:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">There can be a space after a sigil</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162094">You can give subs numeric names with symbolic references</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163416">Legal trailing commas</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Grouped Integer Literals</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#168925">hash slices</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#195254">Populating keys of a hash from an array</a></li>
</ul>
<p>Modules, Pragmas, and command-line options:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">use strict and use warnings</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">Taint checking</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162085">Esoteric use of -n and -p</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163541">CPAN</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601"><code>overload::constant</code></a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#164255">IO::Handle module</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163725">Safe compartments</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#310083">Attributes</a></li>
</ul>
<p>Variables:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162357">Autovivification</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161985">The <code>$[</code> variable</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#168947">tie</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#172118">Dynamic Scoping</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205627">Variable swapping with a single statement</a></li>
</ul>
<p>Loops and flow control:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">Magic goto</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163481"><code>for</code> on a single variable</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#169592">continue clause</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104">Desperation mode</a></li>
</ul>
<p>Regular expressions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162565">The <code>\G</code> anchor</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#161976"><code>(?{})</code> and '(??{})` in regexes</a></li>
</ul>
<p>Other features:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163440">The debugger</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162206">Special code blocks such as BEGIN, CHECK, and END</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163700">The <code>DATA</code> block</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">New Block Operations</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Source Filters</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162601">Signal Hooks</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#167309">map</a> (<a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#167809">twice</a>)</li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162842">Wrapping built-in functions</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#189883">The <code>eof</code> function</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#194796">The <code>dbmopen</code> function</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#205104">Turning warnings into errors</a></li>
</ul>
<p>Other tricks, and meta-answers:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#163532">cat files, decompressing gzips if needed</a></li>
<li><a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162271">Perl Tips</a></li>
</ul>
<p><hr /></p>
<p><strong>See Also:</strong></p>
<ul>
<li><a href="http://stackoverflow.com/questions/132241/hidden-features-of-c">Hidden features of C</a></li>
<li><a href="http://stackoverflow.com/questions/9033/hidden-features-of-c">Hidden features of C#</a></li>
<li><a href="http://stackoverflow.com/questions/75538/hidden-features-of-c">Hidden features of C++</a></li>
<li><a href="http://stackoverflow.com/questions/15496/hidden-features-of-java">Hidden features of Java</a></li>
<li><a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden features of JavaScript</a></li>
<li><a href="http://stackoverflow.com/questions/63998/hidden-features-of-ruby">Hidden features of Ruby</a></li>
<li><a href="http://stackoverflow.com/questions/61401/hidden-features-of-php">Hidden features of PHP</a></li>
<li><a href="http://stackoverflow.com/questions/101268/hidden-features-of-python">Hidden features of Python</a></li>
</ul>
http://stackoverflow.com/questions/1758665/right-hand-side-mysql-functions-in-dbixclass/1758807#17588074Answer by Adam Bellaire for right-hand-side MySQL functions in DBIx::ClassAdam Bellaire2009-11-18T20:25:11Z2009-11-18T21:10:18Z<p>Pass the string as a scalar reference instead:</p>
<pre><code>...
'Time(submitted_at)' => \"> Time(Now()-Interval $wait_period minute)"
...
</code></pre>
http://stackoverflow.com/questions/154332/how-can-i-use-mysqldump-to-replicate-views-between-accounts0How can I use mysqldump to replicate views between accounts?Adam Bellaire2008-09-30T18:29:16Z2009-11-17T19:24:56Z
<p>I'm using <strong>mysqldump</strong> to replicate a database between accounts on a particular machine. Everything works just great, except when we get to our defined views. Because the dump includes a line like the following ...</p>
<pre><code>/*!50013 DEFINER=`user_a`@`localhost` SQL SECURITY DEFINER */
</code></pre>
<p>... when loading the dump into mysql on user_b we receive an error: </p>
<pre><code>ERROR 1227 (42000) at line 657: Access denied; you need the SUPER privilege for this operation
</code></pre>
<p>Needless to say, I don't have SUPER privilege on this mysql instance. Is there a way to convince <strong>mysqldump</strong> to dump the views in a user-agnostic way? I can't find anything in the manual on this point. Do I have to actually parse the dumpfile to replace the usernames? Or am I missing something?</p>
http://stackoverflow.com/questions/1729888/how-to-subselect-with-dbixclass/1729984#17299841Answer by Adam Bellaire for How to Subselect with DBIx::Class?Adam Bellaire2009-11-13T15:35:09Z2009-11-13T15:35:09Z<p>Well, you can always supply a scalar reference to insert literal SQL when you're using DBIC's <code>search()</code> method. For example:</p>
<pre><code>my $rs = $schema->resultset('Category')->search({
id => \"(Select id from tblRadio where name = 'RFM')"
});
</code></pre>
<p>That's what I've had to do in the past when I needed more expressiveness than DBIC supported out-of-the-box. I don't know, though, whether that's the "right" thing to do in this case.</p>
http://stackoverflow.com/questions/169530/what-was-the-most-important-milestone-in-your-programming-career19What was the most important milestone in your programming career?Adam Bellaire2008-10-04T01:52:20Z2009-11-12T02:51:40Z
<p>What choice did you make that you felt had the most positive impact on your career as a programmer? There've been lots of questions here that suggest possibilities:</p>
<p>Was it <strong>getting a higher education</strong>?</p>
<ul>
<li><a href="http://stackoverflow.com/questions/145375/masters-vs-work-experience">Masters vs. Work Experience</a></li>
<li><a href="http://stackoverflow.com/questions/142202/should-a-programmer-go-back-to-school-if-heshe-doesnt-have-a-degree">Should a programmer go back to school if he/she doesn't have a degree?</a></li>
<li><a href="http://stackoverflow.com/questions/67097/is-there-any-mandatory-certification-a-programmer-should-have">Is there any mandatory certification a programmer should have?</a></li>
<li><a href="http://stackoverflow.com/questions/53371/to-what-degree-pun-has-your-college-education-attributed-to-the-success-of-your">To what degree(pun) has your college education attributed to the success of your career?</a></li>
<li><a href="http://stackoverflow.com/questions/52254/should-developers-go-to-grad-school">Should developers go to grad school?</a></li>
<li><a href="http://stackoverflow.com/questions/25620/is-a-masters-degree-overkill">Is a master's degree overkill?</a></li>
<li><a href="http://stackoverflow.com/questions/7301/higher-pay-for-advanced-degrees">Higher pay for advanced degrees?</a></li>
</ul>
<p>Was it <strong>switching roles</strong>?</p>
<ul>
<li><a href="http://stackoverflow.com/questions/138078/coderdeveloper-to-architect-your-experiences-realisations-myths-broken">Coder/Developer to Architect: Your experiences/realisations, myths broken</a></li>
<li><a href="http://stackoverflow.com/questions/65984/suited-programmers-power-points-and-career-evolution">Suited programmers: Power Points and Career Evolution</a></li>
<li><a href="http://stackoverflow.com/questions/36546/how-does-one-become-a-consultant">How do I transition to management?</a></li>
<li><a href="http://stackoverflow.com/questions/11992/how-do-i-transition-to-management">How does one become a consultant?</a></li>
</ul>
<p>Was it <strong>getting a well-deserved raise</strong>?</p>
<ul>
<li><a href="http://stackoverflow.com/questions/35202/how-do-you-determine-what-your-salary-should-be">How do you determine what your salary should be?</a></li>
</ul>
<p>...or <strong>turning one down for the right reasons</strong>?</p>
<ul>
<li><a href="http://stackoverflow.com/questions/28909/are-the-tools-at-a-job-enough-to-turn-down-higher-pay">Are the tools at a job enough to turn down higher pay?</a></li>
</ul>
<p>Was it <strong>finding the right job</strong>?</p>
<ul>
<li><a href="http://stackoverflow.com/questions/133782/how-can-i-find-employers-who-need-a-specific-skill-that-i-have">How can I find employers who need a specific skill that I have?</a></li>
<li><a href="http://stackoverflow.com/questions/26088/should-i-use-a-recruiter">Should I use a recruiter?</a></li>
</ul>
<p>...or <strong>leaving the wrong one</strong>?</p>
<ul>
<li><a href="http://stackoverflow.com/questions/129508/when-did-you-know-it-was-time-to-leave-your-job">When did you know it was time to leave your job?</a></li>
<li><a href="http://stackoverflow.com/questions/26763/when-do-you-decide-to-walk">When do you decide to walk?</a></li>
</ul>
<p>Did you <strong>start your own company</strong>?</p>
<ul>
<li><a href="http://stackoverflow.com/questions/123665/what-are-the-most-important-prerequisites-to-start-my-own-software-">What are the most important prerequisites to start my own software company?</a></li>
</ul>
<p>Or did you <strong>learn some important skill or mindset</strong>?</p>
<ul>
<li><a href="http://stackoverflow.com/questions/95836/what-was-the-most-
http://stackoverflow.com/questions/1718273/what-does-this-if-statement-containing-very-similar-regular-expression-matches-do/1718283#17182834Answer by Adam Bellaire for What does this if statement containing very similar regular expression matches do?Adam Bellaire2009-11-11T21:40:44Z2009-11-11T22:13:45Z<p>It's probably a really crude way of looking for a string that looks like one of these:</p>
<pre>
fileXXX=1234657
fileYYY= 123648
</pre>
<p>... the 'ile' is literally matching those three characters, and the two sides of the <code>||</code> aren't quite identical, there is a version with a space after <code>=</code> and one without.</p>
http://stackoverflow.com/questions/1718201/regex-with-optional-data-at-the-front/1718271#17182712Answer by Adam Bellaire for regex with optional data at the frontAdam Bellaire2009-11-11T21:38:29Z2009-11-11T21:38:29Z<p>If all you want is to make sure that it's a 7, 10, or 11 digit string, making sure that if it's only 7 digits it doesn't start with '1010', you can use a negative lookahead assertion before your match on <code>\d{7}</code>, i.e.:</p>
<pre><code>((\d{11}|\d{10}|(?!1010)\d{7})+)
</code></pre>
http://stackoverflow.com/questions/1710557/perl-getting-value-out-of-a-hash-using-map/1710592#17105924Answer by Adam Bellaire for perl: getting value out of a hash using mapAdam Bellaire2009-11-10T19:34:48Z2009-11-10T23:04:14Z<p>Sure, it'd be:</p>
<pre><code>map { $val = $hash{$_} } @strings;
</code></pre>
<p>That is, each value of <code>@strings</code> is set in <code>$_</code> in turn (instead of <code>$str</code> as in your foreach).</p>
<p>Of course, this doesn't do much, since you're not doing anything with the value of <code>$val</code> in your loop, and we aren't capturing the list returned by <code>map</code>. </p>
<p>If you're just trying to generate a list of values, that'd be:</p>
<pre><code> @values = map { $hash{$_} } @strings;
</code></pre>
<p>But it's more concise to use a hash slice:</p>
<pre><code> @values = @hash{@strings};
</code></pre>
<p>EDIT: As pointed out in the comments, if it's possible that <code>@strings</code> contains values that aren't keys in your hash, then <code>@values</code> will get undefs in those positions. If that's not what you want, see <a href="http://stackoverflow.com/questions/1710557/perl-getting-value-out-of-a-hash-using-map/1711148#1711148">Hynek's answer</a> for a solution.</p>
http://stackoverflow.com/questions/352334/how-can-i-debug-the-source-of-this-error-in-xmlgdome/352567#3525671Answer by Adam Bellaire for How can I debug the source of this error in XML::GDOME?Adam Bellaire2008-12-09T12:24:24Z2009-10-09T13:40:06Z<p>The documentation says: </p>
<pre><code>$doc = XML::GDOME->createDocument( $nsURI, $name, $dtd );
</code></pre>
<blockquote>
<p>Creates a new xml document. It will be
in the $nsURI namespace, if $nsURI is
defined, and its document element will
have the name $name.</p>
</blockquote>
<p>Now, your example uses <code>""</code> for the namespace. That's not the same as undefined, that's the empty string and it is defined. It's complaining that the empty string is not a valid namespace. Try using <code>undef</code> instead:</p>
<pre><code>my $doc = XML::GDOME->createDocument(undef,"","");
</code></pre>
http://stackoverflow.com/questions/1543536/why-does-my-modperl-script-freeze-my-server/1543650#15436505Answer by Adam Bellaire for Why does my mod_perl script freeze my server?Adam Bellaire2009-10-09T13:09:10Z2009-10-09T13:09:10Z<p>Your numbers from <code>top</code> seem to indicate that other processes outside your VM are throttling your CPU, note the last number, <strong>87.2%st</strong>, which indicates that about 87% of your CPU time is being allocated by your hypervisor for tasks outside your VM even though your VM has things it would like to run. Whether this is related to your problem or not is hard to say.</p>
<p>Beyond upgrading your server as suggested by <a href="http://stackoverflow.com/questions/1543536/why-perl-script-freezes-my-server/1543550#1543550">unwind</a>, using a persistent process environment as suggested by <a href="http://stackoverflow.com/questions/1543536/why-perl-script-freezes-my-server/1543561#1543561">zoul</a>, it's possible that your process isn't CPU bound at all but is instead IO-bound, such as to the network or to your disk access, or memory-bound. It's hard to say without more details on what your script is actually doing when it's invoked.</p>
<p><strong>EDIT:</strong> Your updated question with info on your memory usage is revealing, as each of your processes wants 45M of ram all to itself, and is sharing 17M more. With just 5 or 6 processes running, you're exceeding the amount of RAM available. That's a good amount of memory for a vanilla Perl script to use, what's it doing with it?</p>
http://stackoverflow.com/questions/439647/how-do-i-print-unique-elements-in-perl-array/439668#4396686Answer by Adam Bellaire for How do I print unique elements in Perl array?Adam Bellaire2009-01-13T16:26:08Z2009-10-08T20:35:13Z<p>Keeping uniques is the same thing as eliminating duplicates, see this equivalent question: <a href="http://stackoverflow.com/questions/7651/how-do-i-remove-duplicate-items-from-an-array-in-perl">http://stackoverflow.com/questions/7651/how-do-i-remove-duplicate-items-from-an-array-in-perl</a></p>
http://stackoverflow.com/questions/1540123/best-way-to-store-time-interval-values-in-mysql/1540207#15402071Answer by Adam Bellaire for Best way to store time interval values in MySQL?Adam Bellaire2009-10-08T20:26:43Z2009-10-08T20:26:43Z<p>You can definitely use an <code>int</code> field for this, especially since MySQL provides the <code>DATE_ADD</code> and <code>DATE_SUB</code> functions for using integer units of time alongside date and datetime types in date artihmetic.</p>
<p>For example, if you have a datetime column <code>eventDateTime</code> and you have a duration column <code>durationMinutes</code> you can calculate the ending datetime using:</p>
<pre><code>DATE_ADD(eventDateTime,INTERVAL durationMinutes MINUTE)
</code></pre>
http://stackoverflow.com/questions/1534696/can-i-generate-a-pdf-file-in-perl-using-hebrew-and-english-text/1538028#15380280Answer by Adam Bellaire for Can I generate a PDF file in Perl using Hebrew and English text?Adam Bellaire2009-10-08T14:05:49Z2009-10-08T14:05:49Z<p><a href="http://search.cpan.org/dist/PDF-API2/" rel="nofollow">PDF::API2</a> has a lot of functionality, but it's extremely esoteric. I've found the documentation to be very difficult to mine for the information needed. You must get everything "just right" in order for the PDF to be rendered properly, and as if your requirements change, it tends to have a cascade effect on your existing code to get everything to play together well. For example, inserting one element at a particular location may mean that you need to re-calculate the positions of all the other elements rendered on that page, down to single-point precision, depending on how you're using the API.</p>
<p>As a result, we fairly recently abandoned a solution that had been using PDF::API2 and instead started generating HTML instead, which we then converted to PDF using an external tool. There are some good free ones, for example <a href="http://search.cpan.org/perldoc/PDF%3A%3AFromHTML" rel="nofollow">PDF::FromHTML</a> as suggested by Sinan Ünür. There are also some more feature-rich commercial ones if you want to get fancy with your HTML and have it translate nicely into PDF (although I haven't used them personally).</p>
<p>If you need to do some simple manipulation on existing PDF's, rather than generating them, I would use (and do use) <a href="http://search.cpan.org/dist/CAM-PDF/" rel="nofollow">CAM::PDF</a>. </p>
<p>In short, I don't recommend PDF::API2, unless you're willing to spend a large amount of time figuring out all of its intricacies and personally supporting your app well into the future. It's extremely powerful and feature-rich, but unless you know exactly what you're doing, the lack of documentation and examples will hinder you more than the module helps.</p>
http://stackoverflow.com/questions/1531604/can-changes-in-an-elements-width-modify-another-elements-font-size-using-jquery/1531869#15318691Answer by Adam Bellaire for Can changes in an element's width modify another element's font-size using jQuery?Adam Bellaire2009-10-07T14:08:29Z2009-10-07T14:08:29Z<p>The method you've outlined should work just fine. The conversion from string to number should be handled using <code>parseFloat</code>, since the font size is returned in (IIRC) <strong>em</strong>, e.g.:</p>
<pre><code>var hText = $("#hText").css("font-size");
var textSize = parseFloat(hText);
</code></pre>
<p>Yes, it is possible to do this during the browser resize, using </p>
<pre><code>(window).bind('resize', function () {
// Your implementation
});
</code></pre>
http://stackoverflow.com/questions/1808029/perl-to-python-ruby-code-translatorComment by Adam Bellaire on Perl to Python/Ruby code translatorAdam Bellaire2009-11-27T14:04:09Z2009-11-27T14:04:09ZTell him that's like asking you to produce a cow by breeding horses. Sure, at the most basic level they're very similar, but that doesn't mean it easy to get from one genome to the other.http://stackoverflow.com/questions/1804202/regex-to-remove-prefix-and-another-to-upper-case-the-first-letterComment by Adam Bellaire on regex to remove prefix and another to upper case the first letterAdam Bellaire2009-11-26T16:16:53Z2009-11-26T16:16:53Z@Carl: That's definitely true. And when you've asked 397 questions, some of them are bound to be good ones.http://stackoverflow.com/questions/1803655/how-can-i-set-multiple-timefmt-in-gnuplot-with-perlComment by Adam Bellaire on How can I set multiple timefmt in gnuplot with perl?Adam Bellaire2009-11-26T13:57:19Z2009-11-26T13:57:19ZI think he's saying he wrote two separate scripts, one for each format, and he wants to know how he can refactor that so that he has only one, and switch formats based on <i>(something)</i>...http://stackoverflow.com/questions/1800525/how-can-i-make-perl-find-my-modules/1800760#1800760Comment by Adam Bellaire on How can I make Perl find my modules?Adam Bellaire2009-11-26T13:37:19Z2009-11-26T13:37:19ZTo clarify: Randal is saying there's no way to "configure" the @INC path initially used by the <code>perl</code> executable. It's built into the binary. However, you can tell the executable that you want to look elsewhere at run-time, using command-line switches or Perl code particular to that execution. But you'll have to do this each time you run your code, as those techniques last only for that invocation.http://stackoverflow.com/questions/1784457/need-help-with-pack-for-perl-and-php/1785076#1785076Comment by Adam Bellaire on Need help with "pack" for perl and phpAdam Bellaire2009-11-25T21:24:20Z2009-11-25T21:24:20Z@Ether: I think it was just a simple implementation that worked well for valid hex digits and happened to spill out onto the rest of the character set. Rather than having it complain loudly on invalid hex digits, they just documented that the behavior was not well-defined. The fact that they said that implies that the behavior could change one day. I have no idea why it hasn't.http://stackoverflow.com/questions/1789555/how-do-i-call-another-perl-cgi-script-within-a-cgi-script/1789662#1789662Comment by Adam Bellaire on How do I call another Perl CGI script within a CGI script?Adam Bellaire2009-11-25T14:41:40Z2009-11-25T14:41:40Z@gath: Correct. Actions like sending redirects, setting cookies, and setting the <code>content-type</code> of your output are all actions that must occur in the HTTP headers, which in turn must be the first output from your script to STDOUT.http://stackoverflow.com/questions/1793274/what-is-the-use-of-eval-in-asp-netComment by Adam Bellaire on what is the use of Eval() in asp.netAdam Bellaire2009-11-24T22:10:30Z2009-11-24T22:10:30ZWait, wait. I can only tell you the answer to one of those, so please, choose wisely. (You may wish to edit your question).http://stackoverflow.com/questions/1793105/how-do-i-access-the-arrays-element-stored-in-my-hash-in-perl/1793149#1793149Comment by Adam Bellaire on How do I access the array's element stored in my hash in Perl?Adam Bellaire2009-11-24T22:05:40Z2009-11-24T22:05:40ZThis is incorrect. When he assigns the list into the hash, it is treated as a scalar. Thus he doesn't get the first element (the reference) in the hash, but the length of the list (1).http://stackoverflow.com/questions/1789862/scheduling-scripts-at-a-different-timezone/1790409#1790409Comment by Adam Bellaire on Scheduling scripts at a different timezoneAdam Bellaire2009-11-24T15:18:15Z2009-11-24T15:18:15Z@Sinan: This works except that the seconds from the epoch will change twice a year, as his script must run at the same Pacific Time with respect to Daylight Savings Time. In the fall, he will need to add an hour, and subtract it again in the spring.http://stackoverflow.com/questions/1790194/how-do-i-set-cookies-using-perl-cgi/1790229#1790229Comment by Adam Bellaire on How do I set cookies using Perl CGI?Adam Bellaire2009-11-24T14:17:01Z2009-11-24T14:17:01Z@gath: If you are seeing the output in the browser, it's because you have already output HTTP headers somewhere prior to this. This line must be the very first thing output by your CGI script.http://stackoverflow.com/questions/1790194/how-do-i-set-cookies-using-perl-cgiComment by Adam Bellaire on How do I set cookies using Perl CGI?Adam Bellaire2009-11-24T13:54:55Z2009-11-24T13:54:55ZYou seem to be missing semicolons from the ends of your statements.http://stackoverflow.com/questions/1777944/analogy-a-programming-language-without-namespaces-is-likeComment by Adam Bellaire on Analogy? A programming language without namespaces is like (...)Adam Bellaire2009-11-23T22:00:49Z2009-11-23T22:00:49Z... a weak analogy.http://stackoverflow.com/questions/1784457/need-help-with-pack-for-perl-and-php/1785096#1785096Comment by Adam Bellaire on Need help with "pack" for perl and phpAdam Bellaire2009-11-23T19:48:11Z2009-11-23T19:48:11Z@bish: Actually, looking at the behavior of Perl in my tests, the 'sprintf()' solution should work. The reason is that Perl would treat each of the characters <code>chr(1)</code> through <code>chr(15)</code> as having the smaller hex digit value of their characters, which is of course the same. The behavior switches for characters coded above 'A', but the example code can't reach that high. I suggest that the OP should try it and see if it indeed gives identical output to the Perl.http://stackoverflow.com/questions/1784457/need-help-with-pack-for-perl-and-php/1785096#1785096Comment by Adam Bellaire on Need help with "pack" for perl and phpAdam Bellaire2009-11-23T18:47:25Z2009-11-23T18:47:25Z+1 for pointing out that the invalid characters are coming from the call to <code>chr</code>, though I'm not sure that the <code>sprintf</code> will do what he's trying to do, since as you say, we don't know the Perl code's author's intent.http://stackoverflow.com/questions/1758665/right-hand-side-mysql-functions-in-dbixclass/1758807#1758807Comment by Adam Bellaire on right-hand-side MySQL functions in DBIx::ClassAdam Bellaire2009-11-18T21:10:49Z2009-11-18T21:10:49ZHmm, I guess it only likes scalar refs at the top level of the hash. I've modified my answer accordingly, does it work now?