active questions tagged gotcha - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T00:56:29Zhttp://stackoverflow.com/feeds/tag/gotchahttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/66117/asp-net-common-gotchas8ASP.NET - Common GotchasThunder32008-09-15T19:43:55Z2009-11-30T16:48:29Z
<p>When I am working with ASP.NET, I find that there are always unexpected things I run into that take forever to debug. I figure that having a consolidated list of these would be great for those "weird error" circumstances, plus to expand our knowledge of oddness in the platform.</p>
<p>So: answer with one of your "Gotcha"s!</p>
<p>I'll start:
Under ASP.NET (VB), performing a Response.Redirect inside a try/catch block does not stop execution of the current Response, which can lead to two concurrent Responses executing against the same Session.</p>
http://stackoverflow.com/questions/146329/what-is-the-worst-gotcha-youve-experienced4What is the worst 'gotcha' you've experienced?averisk2008-09-28T17:41:59Z2009-11-25T06:44:03Z
<p>I'd like to hear some of the more pernicious 'gotchas' that exist out there. Any language, system, or library is fine.</p>
http://stackoverflow.com/questions/241134/what-is-the-worst-c-net-gotcha37What is the worst C#/.NET gotcha?MusiGenesis2008-10-27T19:30:08Z2009-10-28T17:43:56Z
<p>This question is similar to <a href="http://stackoverflow.com/questions/146329/what-is-the-worst-gotcha-youve-experienced">this one</a>, but focused on C# and .NET. </p>
<p>I was recently working with a DateTime object, and wrote something like this:</p>
<pre><code>DateTime dt = DateTime.Now;
dt.AddDays(1);
return dt; // still today's date! WTF?
</code></pre>
<p>The intellisense documentation for AddDays says it adds a day to the date, which it doesn't - it actually <em>returns</em> a date with a day added to it, so you have to write it like:</p>
<pre><code>DateTime dt = DateTime.Now;
dt = dt.AddDays(1);
return dt; // tomorrow's date
</code></pre>
<p>This one has bitten me a number of times before, so I thought it would be useful to catalog the worst C# gotchas.</p>
http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha31What is your (least) favorite syntax gotcha?Goran2008-10-02T15:30:33Z2009-09-25T10:27:08Z
<p>You know the ones that make you go WTH and are easily spotted by a coworker just passing by? </p>
<p>Please keep it one gotcha per answer to simplify voting.</p>
http://stackoverflow.com/questions/166653/perl-common-gotchas25Perl - Common gotchas?Adam Bellaire2008-10-03T12:50:08Z2009-09-22T09:47:34Z
<p>The question on <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl">Hidden features of Perl</a> yielded at least <a href="http://stackoverflow.com/questions/161872/hidden-features-of-perl#162249">one response</a> that could be regarded as either a feature or a mis-feature. It seemed logical to follow up with this question: what are common non-obvious mistakes in Perl? Things that seem like they ought to work, but don't.</p>
<p>I won't give guidelines as to how to structure answers, or what's "too easy" to be considered a gotcha, since that's what the voting is for.</p>
<h2>Table of Answers</h2>
<p><strong>Syntax</strong></p>
<ul>
<li>General
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166660">Single quotes instead of <code>::</code> in identifiers</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167418">Indirect object syntax</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166698">Confusing references with plain var types</a></li>
</ul></li>
<li>Filehandles
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167342">Heredoc notation when using print with lexical filehandles</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167122">Printing to a lexical filehandle contained in a hash</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#175231"><code>my</code> declarations should use parens around lists of variables</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas/549685#549685">Comparing strings with == and !=</a></li>
</ul></li>
</ul>
<p><strong>Semantics/Language Features</strong></p>
<ul>
<li>General
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167064"><code>do</code> is not a loop. You cannot <code>next</code>.</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166804">Using the /o modifier with a regex</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas/1037460#1037460">Forgetting that <code>readdir</code>'s results are not relative to the CWD</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas/1373613#1373613">Unary minus's interaction with strings</a></li>
</ul></li>
<li>Context
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166702">Assignment to scalar from arrays vs. lists</a></li>
<li><a href="http://stackoverflow.com/questions/146329/what-is-the-worst-gotcha-youve-experienced#146394">The glob() iterator</a> (On a different question)</li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#175224">Implicit returns in list context</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#427595">Parenthesis changing the semantics of operators</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas/549324#549324">Calling context is propagated to return statements within functions</a></li>
</ul></li>
<li>Variables
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166794">Auto-vivification</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166778">Can't localize exported variables without exporting the entire typeglob</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167410">Using multiple variables (of different types) with the same name</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167505"><code>while <FH></code> does not localize <code>$_</code> automatically</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#167219">The Variable That's Validly Zero</a> </li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#169373">Constants can be redefined</a></li>
</ul></li>
</ul>
<p><strong>Debugging</strong></p>
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#175285">Warning: Use of uninitialized value in concatenation</a></li>
</ul>
<p><strong>Best Practices</strong></p>
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#166682">Forgetting to <code>use strict</code> and <code>use warnings</code> (or <code>use diagnostics</code>)</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#169391">Misspelling variable names</a> (i.e., <code>use strict</code>, again)</li>
</ul>
<p><strong>Meta-Answers</strong></p>
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#168905">The perltrap manpage</a></li>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas#169443">Perl::Critic</a></li>
</ul>
<p>See Also: <a href="http://stackoverflow.com/questions/66117/aspnet-common-gotchas">ASP.NET - Common gotchas</a></p>
http://stackoverflow.com/questions/169815/java-common-gotchas15Java - Common GotchasAlan2008-10-04T05:41:08Z2009-09-09T14:54:57Z
<p>In the same spirit of other platforms, it seemed logical to follow up with this question: What are common non-obvious mistakes in Java? Things that seem like they ought to work, but don't.</p>
<p>I won't give guidelines as to how to structure answers, or what's "too easy" to be considered a gotcha, since that's what the voting is for.</p>
<p>See also:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/166653/perl-common-gotchas">Perl - Common gotchas</a></li>
<li><a href="http://stackoverflow.com/questions/66117/aspnet-common-gotchas">.NET - Common gotchas</a></li>
</ul>
http://stackoverflow.com/questions/12765/strange-characters-in-php7Strange characters in PHPpassaf2008-08-15T21:18:30Z2009-03-16T08:40:13Z
<p>This is driving me crazy.</p>
<p>I have this one php file on a test server at work which does not work.. I kept deleting stuff from it till it became </p>
<pre>
<?
print 'Hello';
?>
</pre>
<p>it outputs </p>
<blockquote>
<p>Hello</p>
</blockquote>
<p>if I create a new file and copy / paste the same script to it it works!
Why does this one file give me the strange characters all the time?</p>
http://stackoverflow.com/questions/482804/what-are-the-known-gotchas-with-regards-to-the-chain-of-responsibilty-pattern10What are the known "gotchas" with regards to the Chain of Responsibilty pattern?Elijah2009-01-27T09:46:43Z2009-01-27T11:37:27Z
<p>I have been finding myself using the <a href="http://en.wikipedia.org/wiki/Chain-of-responsibility_pattern" rel="nofollow">Chain of Responsibility</a> pattern often (3 times is often for me) in my current project and I'm wondering if I have become a little over-enthusiastic about the solution. Specifically, I have been using the Apache Commons <a href="http://commons.apache.org/chain/" rel="nofollow">chain project</a>. So, far I have been quite impressed by how it has simplified a number of complex interchangeable pieces of app logic into a more cohesive and organized whole. However, a few of the newer people on the project seem to have difficulty "getting it." What are your experiences with it? What problems have you encountered in its implementation?</p>
<p>So far, the only problem I have noticed that it is when you are trying to deal with objects that need to be closed. Having those objects stored in your Context class makes for a pain when you have completed the execution of your chain. I was able to work around this using Filters instead of Commands, but it seems a little unintuitive because your close statements are often very far away from where the object was instantiated.</p>
<p>Anyways, I would love to hear the thoughts from some developers who have more experience that I with this pattern.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/224220/any-mechanical-turk-api-gotchas0Any Mechanical Turk API Gotchas?kurious2008-10-22T02:03:30Z2008-10-27T10:39:23Z
<p>We're setting up a mechanical turk system. I've run into a few gotchas already, just wanted a place to collect them to save anyone else some trouble.</p>
<ul>
<li>When submitting an external question, make sure to use "https://" -- we were getting blank responses when people submitted otherwise (this can be annoying to track down).</li>
</ul>
http://stackoverflow.com/questions/148951/does-mysqldump-password-really-do-what-it-says1Does mysqldump --password really do what it says?John Zwinck2008-09-29T14:36:25Z2008-09-30T04:23:32Z
<p>I'm trying to use <code>mysqldump</code> to dump a schema, and it mostly works but I ran into one curiosity: the <code>-p</code> or <code>--password</code> option seems like it is doing something other than setting the password (as the <code>man</code> page and <code>--help</code> output say it should).</p>
<p>Specifically, it looks like it's doing what is indicated here: <a href="http://snippets.dzone.com/posts/show/360" rel="nofollow">http://snippets.dzone.com/posts/show/360</a> - that is, setting the database to dump.</p>
<p>To support my somewhat outlandish claim, I can tell you that if I do not specify the <code>--password</code> (or <code>-p</code>) option, the command prints the usage statement and exits with an error. If I do specify it, I am immediately prompted to enter a password (!), and then the database specified in the <code>--password</code> option is dumped (or an error is given in the usual case that a password not matching any database name was specified).</p>
<p>Here's a transcript:</p>
<pre>
$ mysqldump -u test -h myhost --no-data --tables --password lose
Enter password:
-- MySQL dump 10.10
mysqldump: Got error: 1044: Access denied for user 'test'@'%' to
database 'lose' when selecting the database
</pre>
<p>So, what gives? Is this the way this is supposed to work? It surely does not appear to make sense nor does it match the official documentation. And finally, if this just the way it works, how am I meant to specify the password to be used in an automated job? Using <code>expect</code>???</p>
<p>I'm using <code>mysqldump Ver 10.10 Distrib 5.0.22, for pc-linux-gnu (i486)</code>.</p>