User Eric Burnett - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T14:35:03Zhttp://stackoverflow.com/feeds/user/3524http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/39323/tagging-questions-duplicate-in-stackoverflow14Tagging questions 'duplicate' in StackOverflow? [closed]Eric Burnett2008-09-02T11:57:34Z2009-08-26T18:00:05Z
<p>I've noticed some threads have started to be tagged as '<a href="http://beta.stackoverflow.com/questions/tagged/duplicate" rel="nofollow">duplicate</a>', which implies that duplicate questions are frowned upon and shouldn't have been asked again. But the FAQ explicitly states:</p>
<blockquote>
<p>If you ask a question that has been
asked before, that is OK and
deliberately allowed. No question is
too trivial or too "newbie".</p>
</blockquote>
<p>Clearly, mixed messages are being sent. How should this be fixed?</p>
<blockquote>
<h2>Do not use the "Duplicate" Tag</h2>
<p><hr/>
We need a better method to find and link related duplicate questions, but <strong>a tag named "duplicate" is the wrong way</strong>. At the moment I am editing posts to include links to similar questions. If the questions are <em>identical</em> then I may opt to delete one. </p>
<p>It's rarely this straightforward, however -- usually there are two similar but not-quite-the-same questions, both of which have value for different reasons.</p>
</blockquote>
http://stackoverflow.com/questions/876344/when-reviewing-somebody-elses-code-what-is-it-that-you-usually-find-most-distur/876400#8764002Answer by Eric Burnett for When reviewing somebody else's code, what is it that you usually find most disturbing?Eric Burnett2009-05-18T05:39:57Z2009-05-18T05:39:57Z<p>You might be interested in reading <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them">the "code smells" question</a> - it goes over a number of common "code smells" (indicators of bad code) and how to correct them.</p>
http://stackoverflow.com/questions/800685/which-hash-function-should-i-choose/801116#80111615Answer by Eric Burnett for Which hash function should I choose?Eric Burnett2009-04-29T06:30:15Z2009-04-29T06:30:15Z<p>In cryptography, hash functions provide three separate functions. </p>
<ol>
<li><strong>Collision resistance</strong>: How hard is it for someone to find two messages (<em>any</em> two messages) that hash the same.</li>
<li><strong>Preimage Resistance</strong>: Given a hash, how hard is it to find another message that hashes the same? Also known as a <em>one way hash function</em>.</li>
<li><strong>Second preimage resistance</strong>: Given a message, find another message that hashes the same. </li>
</ol>
<p>These properties are related but independent. For example, collision resistance implies second preimage resistance, but not the other way around. For any given application, you will have different requirements, needing one or more of these properties. A hash function for securing passwords on a server will usually only require preimage resistance, while message digests require all three.</p>
<p>It has been shown that MD5 is not collision resistant, however, that does not preclude its use in applications that do not require collision resistance. Indeed, MD5 is often still used in applications where the smaller key size and speed are beneficial. That said, due to its flaws, researchers recommend the use of other hash functions in new scenarios.</p>
<p>SHA1 has a flaw that allows collisions to be found in theoretically far less than the 2^80 steps a secure hash function of its length would require. The attack is continually being revised and currently can be done in ~2^63 steps - just barely within the current realm of computability. For this reason NIST is phasing out the use of SHA1, stating that the SHA2 family should be used after 2010.</p>
<p>SHA2 is a new family of hash functions created following SHA1. Currently there are no known attacks against SHA2 functions. SHA256, 384 and 512 are all part of the SHA2 family, just using different key lengths. </p>
<p>RIPEMD I can't comment too much on, except to note that it isn't as commonly used as the SHA families, and so has not been scrutinized as closely by cryptographic researchers. For that reason alone I would recommend the use of SHA functions over it. In the implementation you are using it seems quite slow as well, which makes it less useful.</p>
<p>In conclusion, there is no one best function - it all depends on what you need it for. Be mindful of the flaws with each and you will be best able to choose the right hash function for <em>your</em> scenario. </p>
http://stackoverflow.com/questions/779444/p-invoke-c-function-that-returns-pointer-to-a-struct/779672#7796722Answer by Eric Burnett for p/invoke C function that returns pointer to a structEric Burnett2009-04-22T23:29:38Z2009-04-23T19:25:15Z<p><strong>Caveat: this will only work if the pointer returned is to memory already managed by the CLR</strong></p>
<p>I believe what you are looking for is</p>
<pre><code>// C# import
[DllImport("MyDll.dll")]
[return : MarshalAs(UnmanagedType.LPStruct)]
public static extern StructureName Function();
[StructLayout(LayoutKind.Sequential)]
public class StructureName {}
</code></pre>
<p>This should eliminate the need for any manual <code>Marshal.PtrToStructure</code> calls. Depending on what your structure contains, you may need to tag some fields with <code>MarshalAs</code> attributes as appropriate. <a href="http://msdn.microsoft.com/en-us/library/aa288468.aspx#pinvoke%5Fexample3" rel="nofollow">MSDN</a> has a good example of this.</p>
http://stackoverflow.com/questions/769619/live-debugging-a-stack-overflow/779327#7793270Answer by Eric Burnett for live debugging a stack overflowEric Burnett2009-04-22T21:33:15Z2009-04-22T21:33:15Z<p>For what its worth, starting in .NET 4.0, Visual Studio (and any debuggers that rely on the <code>ICorDebug</code> api) gain the ability to debug minidumps. This means you will be able to load the crash dump into the VS debugger on a different computer and see the managed stacks similar to if you had attached a debugger at the time of the crash. See the <a href="http://channel9.msdn.com/pdc2008/PC49/" rel="nofollow">PDC talk</a> or <a href="http://blogs.msdn.com/rmbyers/archive/2008/10/26/clr-4-0-advancements-in-diagnostics.aspx" rel="nofollow">Rick Byers' blog</a> for more information. Unfortunately this won't help you with the problem at hand, but perhaps it will next time you run into this issue.</p>
http://stackoverflow.com/questions/769619/live-debugging-a-stack-overflow/769816#7698160Answer by Eric Burnett for live debugging a stack overflowEric Burnett2009-04-20T19:44:52Z2009-04-20T19:44:52Z<p>One option you have is to use a try/catch block at a high level, and then print or log the stack trace provided by the exception. Every exception has a <code>StackTrace</code> property that can tell you where it was thrown from. This won't let you do any interactive debugging, but it should give you a place to start.</p>
http://stackoverflow.com/questions/769687/what-should-i-know-in-order-to-build-my-social-dating-network-site/769773#7697731Answer by Eric Burnett for What should I know in order to build my social dating network site?Eric Burnett2009-04-20T19:30:01Z2009-04-20T19:30:01Z<p>If you are really serious about making this, understand that it will be a <em>lot</em> of work. As your first real project, my two pieces of advise would be:</p>
<ol>
<li>Don't rush it. If you expect that everything will nicely fall together - it won't. Take the time to learn the tools you are using, research the problems you are solving, and don't get aggravated when things don't work right away.</li>
<li>Find a partner. I would suggest against hiring someone, especially if you don't know what to ask for. You'll probably find this a much more rewarding experience if you do it yourself, and it will end up a lot closer to what you envision. But having someone to work with or that can mentor you will be invaluable. </li>
</ol>
<p>For the choice of language, I would suggest PHP. A lot of people don't like it (for some good reasons) for large sites, but if you organize yourself well I find it simple and straightforward to work in. But mostly, find a language that you feel comfortable with. You'll never find one 'best' language, just a lot options.</p>
http://stackoverflow.com/questions/129437/how-do-i-output-progress-messages-from-a-select-statement6How do I output progress messages from a SELECT statement?Eric Burnett2008-09-24T19:48:00Z2008-10-02T12:13:57Z
<p>I have a SQL script that I want to output progress messages as it runs. Having it output messages between SQL statements is easy, however I have some very long running INSERT INTO SELECTs. Is there a way to have a select statement output messages as it goes, for example after every 1000 rows, or every 5 seconds?</p>
<p>Note: This is for SQL Anywhere, but answers in any SQL dialect will be fine.</p>
http://stackoverflow.com/questions/130313/which-chemical-stimulation-do-you-require-while-coding/130977#1309770Answer by Eric Burnett for Which chemical stimulation do you require while coding?Eric Burnett2008-09-25T01:26:22Z2008-09-25T01:26:22Z<p>Nothing specific, but I <em>need</em> to have a drink on the go. If I am tired or doing something boring it tends to be coffee, otherwise could be tea or water or pop (soda) or juice. Just as long as there is something for me to sip on when I'm mulling things over, I'm happy.</p>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/115430#115430-5Answer by Eric Burnett for What are Code Smells? What is the best way to correct them?Eric Burnett2008-09-22T15:16:33Z2008-09-22T15:23:32Z<h3><code>If</code> statement without corresponding <code>else</code></h3>
<p>Not all <code>if</code> statements need an else, but when one isn't present you should check if it really should be there. If one program state needs special handling, often the opposite state does too.</p>
<p>Example where an <code>else</code> may be necessary:</p>
<pre><code>if (teacher != null) {
addStudents(teacher, period, students);
}
// Else?
else {
// Why is `teacher` null? Is this an error state?
// Will the students be 'lost' for this period?
}
</code></pre>
<p><strong>Solutions:</strong></p>
<ul>
<li>Add an else block with the correct logic</li>
<li>Change the <code>if</code> check to an assert</li>
<li><p>If no else is necessary, but this isn't immediately apparent, add an empty else block:
<br></p>
<pre><code>} else {
// Nothing to do here
}
</code></pre></li>
</ul>
http://stackoverflow.com/questions/105194/what-is-your-favorite-software-engineering-methodology/105664#1056643Answer by Eric Burnett for What is your favorite Software Engineering methodology?Eric Burnett2008-09-19T21:12:21Z2008-09-19T21:12:21Z<p>There is no one <em>best</em> strategy, it all depends on what you are doing, how critical it is, how many programmers are working on it, etc. For example, Agile development might be really good for creating a game, but it would be totally unsuited to writing mission critical software for the Space Shuttle.</p>
<p>As far as organizing large teams of programmers goes, a couple good reads are</p>
<ul>
<li><a href="http://rads.stackoverflow.com/amzn/click/0201835959" rel="nofollow">The Mythical Man Month</a>, which talks about organizing large teams of programmers and problems with this (such as adding programmers to a late project makes it later)</li>
<li><a href="http://www.catb.org/~esr/writings/cathedral-bazaar/" rel="nofollow">The Cathedral and the Bazaar</a>, which talks about how and why open source project organization works (essentially, a team distributed all over the world)</li>
</ul>
http://stackoverflow.com/questions/104680/what-are-some-good-security-questions/105213#1052130Answer by Eric Burnett for What are some good security questions?Eric Burnett2008-09-19T20:20:35Z2008-09-19T20:20:35Z<p>What was your first word?</p>
<p>(Assuming it wasn't 'mum')</p>
http://stackoverflow.com/questions/33852/using-unsigned-primitive-types/34008#340082Answer by Eric Burnett for Using Unsigned Primitive TypesEric Burnett2008-08-29T05:29:32Z2008-08-29T05:29:32Z<p>I will point out that in C# you can turn on <a href="http://msdn.microsoft.com/en-us/library/h25wtyxf.aspx" rel="nofollow"><code>/checked</code></a> to check for arithmetic overflow / underflow, which isn't a bad idea anyways. If performance matters in a critical section, you can still use <code>unchecked</code> to avoid this. </p>
<p>For internal code (ie code that won't be referenced in any interop manor with other languages) I vote for using unsigned when the situation warrants it, such as <code>length</code> variables as mentioned earlier. This - along with checked arithmetic - provides one more net for developers, catching subtle bugs earlier.</p>
<p>Another point in the signed vs unsigned debate is that some programmers use values such as -1 to indicate errors, when they wouldn't otherwise have meaning. I subscribe to the view that each variable should have only one purpose, but if you - or colleagues you code with - like to indicate errors in this way, leaving variables signed gives you the flexibility to add error states later.</p>
http://stackoverflow.com/questions/800685/which-hash-function-should-i-choose/809891#809891Comment by Eric Burnett on Which hash function should I choose?Eric Burnett2009-05-25T21:56:58Z2009-05-25T21:56:58ZI wouldn't put Skein and MD6 that high in the list; there is a reason that the SHA-3 competition won't be finished till the end of 2012. It takes a long time and a lot of eyes to be convinced that a hash function is actually likely to be secure, and neither of these functions have been around long enough for that yet.http://stackoverflow.com/questions/800685/which-hash-function-should-i-choose/801116#801116Comment by Eric Burnett on Which hash function should I choose?Eric Burnett2009-05-15T17:18:54Z2009-05-15T17:18:54ZThats quite likely true, however I think I'll wait until they publish their attack and others can properly look at it before I base anything on it.http://stackoverflow.com/questions/789085/expressing-an-integer-as-a-series-of-multipliers/789220#789220Comment by Eric Burnett on Expressing an integer as a series of multipliersEric Burnett2009-04-25T23:12:02Z2009-04-25T23:12:02ZAlso, there is a bug with combine: it will not find the smallest combination. For example, {2,2,2,3,3} with y=9 will combine to {2,6,6} instead of {8,9}. http://stackoverflow.com/questions/789085/expressing-an-integer-as-a-series-of-multipliers/789220#789220Comment by Eric Burnett on Expressing an integer as a series of multipliersEric Burnett2009-04-25T23:08:30Z2009-04-25T23:08:30ZThe concept for your solution seems correct, if overly complicated, however as you noted it is effectively the same as Yevgeny's (current) solution. The implementation has the same bug that his did: it will not find better solutions where the remainder is higher (eg x=27, y=5 gives 3*3*3+0, but a better solution is 5*5+2). Also, your GetTerms(...) method seems to be the actual implementation of the Combine() method, and the real implementation is missing.http://stackoverflow.com/questions/789085/expressing-an-integer-as-a-series-of-multipliers/789361#789361Comment by Eric Burnett on Expressing an integer as a series of multipliersEric Burnett2009-04-25T22:54:13Z2009-04-25T22:54:13ZTry x=27, y=4. Running your algorithm in my head I would expect it to give {4,2,3}, but 4*2+3 != 27.http://stackoverflow.com/questions/789085/expressing-an-integer-as-a-series-of-multipliers/789125#789125Comment by Eric Burnett on Expressing an integer as a series of multipliersEric Burnett2009-04-25T18:13:54Z2009-04-25T18:13:54ZOne more thing: to find the true best decomposition you'll have to try all the remainders and see which gives the shortest output list. Eg x=27, y=5 gives 3*3*3+0, but a better solution is 5*5+2.http://stackoverflow.com/questions/789085/expressing-an-integer-as-a-series-of-multipliers/789361#789361Comment by Eric Burnett on Expressing an integer as a series of multipliersEric Burnett2009-04-25T18:08:31Z2009-04-25T18:08:31ZI think you are solving a different question than the OP asked. You seem to be finding a series of numbers so that x = z1*y+z2*y+...+zn*y + c. What they are asking for is a series of numbers so that x = z1*z2*...*zn + c. http://stackoverflow.com/questions/789085/expressing-an-integer-as-a-series-of-multipliers/789096#789096Comment by Eric Burnett on Expressing an integer as a series of multipliersEric Burnett2009-04-25T17:23:24Z2009-04-25T17:23:24ZOnly when there are 2 divisors, doesn't work for more.http://stackoverflow.com/questions/789085/expressing-an-integer-as-a-series-of-multipliers/789125#789125Comment by Eric Burnett on Expressing an integer as a series of multipliersEric Burnett2009-04-25T17:22:08Z2009-04-25T17:22:08ZHe wants the least number of divisors possible, so you should change the for loop to go from Y to 2 instead of from 2 to Y so that the largest possible is always selected.http://stackoverflow.com/questions/782629/why-does-net-use-int-instead-of-uint-in-certain-classes/782639#782639Comment by Eric Burnett on Why does .NET use int instead of uint in certain classes?Eric Burnett2009-04-23T20:39:04Z2009-04-23T20:39:04ZNo, it would not change the performance of your program. To get answers like this, a microbenchmark is your friend (I recommend MeasureIt). <i>On my computer</i> adding uints seems to perform about 20% faster than ints (although measurements this small aren't too reliable). In general worrying about this would be considered optimizing prematurely; use whatever suits the situation best and optimize it later if it causes a <i>measurable</i> performance impact.http://stackoverflow.com/questions/779444/p-invoke-c-function-that-returns-pointer-to-a-struct/779672#779672Comment by Eric Burnett on p/invoke C function that returns pointer to a structEric Burnett2009-04-23T19:20:58Z2009-04-23T19:20:58ZI did a bit of testing, and its a struct marshaled as <code>LPStruct</code> that doesn't work - I'll edit the post appropriately. Additionally, there is one more (fairly major) caveat: The memory pointed to (the SimpleStruct* in C code) needs to have been allocated by the CLR, since it adds a reference to it and will try to garbage collect it. I'll add this to the post as well. So it looks like you will have to go with the IntPtr approach.http://stackoverflow.com/questions/779491/if-basic-types-are-object-why-cant-we-do-this/779581#779581Comment by Eric Burnett on If basic types are object, why can't we do this?Eric Burnett2009-04-22T22:54:34Z2009-04-22T22:54:34ZThis is true for classes, not structs. Constructors on structs act more like an init() function, initializing the value of the struct in-place or performing other setup functionality. http://stackoverflow.com/questions/769619/live-debugging-a-stack-overflow/769816#769816Comment by Eric Burnett on live debugging a stack overflowEric Burnett2009-04-20T19:55:23Z2009-04-20T19:55:23ZHeh, I just re-read your answer and I see your point :P. Oh well, probably worth being explicit that exceptions have the stack they were thrown from, in case it isn't obvioushttp://stackoverflow.com/questions/757324/whats-the-easiest-to-remember-publicly-pingable-ip-address/757341#757341Comment by Eric Burnett on What's the easiest to remember publicly pingable IP address?Eric Burnett2009-04-16T18:51:24Z2009-04-16T18:51:24ZGoogle and OpenDNS both have many different IPs, not just these. They both use some form of load balancing to achieve this (eg round robin DNS). And neither of these are easy to remember.http://stackoverflow.com/questions/129437/how-do-i-output-progress-messages-from-a-select-statement/160491#160491Comment by Eric Burnett on How do I output progress messages from a SELECT statement?Eric Burnett2008-10-02T01:50:41Z2008-10-02T01:50:41ZAssuming you are using a weak form of acid that lets you see results mid-transaction that would work, yep.