User Darron - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T04:11:06Z http://stackoverflow.com/feeds/user/22704 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1007255/what-is-the-difference-between-and/1007263#1007263 4 Answer by Darron for What is the difference between '==' and '=' ? Darron 2009-06-17T14:08:38Z 2009-06-17T14:08:38Z <p>== is a comparison operator, and = is assignment.</p> http://stackoverflow.com/questions/1003839/how-to-find-all-naive-based-string-concatenations-in-large-java-codebase/1003854#1003854 2 Answer by Darron for How to find all naive ("+" based) string concatenations in large Java codebase? Darron 2009-06-16T20:46:26Z 2009-06-16T20:46:26Z <p>IntelliJ can find these using "structural search". You search for "$a + $b" and set the characteristics of both $a and $b as type java.lang.String.</p> <p>However, if you have IntelliJ, it likely has a built in inspection that will do a better job of finding what you want anyway.</p> http://stackoverflow.com/questions/945662/is-statement-close-explicitly-required-in-connection-pooled-environment/948451#948451 1 Answer by Darron for Is statement.close() explicitly required in connection pooled environment? Darron 2009-06-04T03:28:13Z 2009-06-04T03:28:13Z <p>In my experience, some JDBC drivers have bugs. They seem to work best if you close all Statements (and ResultSets) manually. Otherwise I have seen resource leaks that shouldn't have persisted past the closing of the Connection.</p> http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895323#895323 97 Answer by Darron for How can you tell if a person is a programmer? Darron 2009-05-21T21:40:10Z 2009-05-21T21:40:10Z <p>You ask them "do you want A or B" and they answer "yes".</p> http://stackoverflow.com/questions/172255/how-do-i-programatically-zoom-a-uiscrollview 8 How do I programatically zoom a UIScrollView? Darron 2008-10-05T16:47:04Z 2009-05-07T21:16:01Z <p>I'd like to zoom and unzoom in ways the base class doesn't support.</p> <p>For instance, upon receiving a double tap.</p> http://stackoverflow.com/questions/835180/awk-either-modify-or-append-a-line-based-on-its-existence/835265#835265 2 Answer by Darron for awk: Either modify or append a line, based on its existence Darron 2009-05-07T15:14:49Z 2009-05-07T15:14:49Z <p>My AWK is rusty, so I won't provide actual code.</p> <ul> <li>Initialize an array with the regular expressions and values.</li> <li>For each line, iterate the array and do appropriate substitutions. Clean out used entries.</li> <li>At end, iterate the array and append lines for remaining entries.</li> </ul> http://stackoverflow.com/questions/834177/foolproof-trial-strategy/834225#834225 0 Answer by Darron for Foolproof trial strategy Darron 2009-05-07T11:53:59Z 2009-05-07T11:53:59Z <p>No. You can make it very hard, but your question amounts to "how can I let someone run the code but not let them run the code."</p> <p>For example, you could leave out a small but key part of the code and require that code to be downloaded from a server that you control. This allows you to track trial activity and shut down specific users. However, once they receive the code once they could capture it and build an unencumbered version of your product given enough work.</p> http://stackoverflow.com/questions/834117/how-to-build-a-compass-with-the-iphone/834211#834211 1 Answer by Darron for How to build a compass with the iPhone? Darron 2009-05-07T11:50:25Z 2009-05-07T11:50:25Z <p>By scanning the available applications I've come to the conclusion that there are two ways to make a compass for the current iPhone 3G.</p> <ol> <li>Require the phone to move. Use the difference in GPS data to determine the direction.</li> <li>Require the user to point the phone at the sun. Use GPS and time information to determine directions.</li> </ol> http://stackoverflow.com/questions/802122/reading-cobol-datastructures-from-java/825455#825455 1 Answer by Darron for Reading cobol datastructures from Java Darron 2009-05-05T15:32:19Z 2009-05-05T15:32:19Z <p>BEA used to have a product named JAM that was used to communicate with mainframe COBOL programs. It included a tool that would read copybooks and generate both corresponding Java POD classes and data conversion code.</p> <p>I don't know if this is still available, I lost track of it when I left BEA.</p> http://stackoverflow.com/questions/819138/any-suggestions-for-a-program-or-small-project-to-learn-about-concurrency-in-java/820117#820117 0 Answer by Darron for Any suggestions for a program or small project to learn about concurrency in Java? Darron 2009-05-04T13:33:52Z 2009-05-04T13:33:52Z <p>I strongly recommend the book <a href="http://www.javaconcurrencyinpractice.com/" rel="nofollow">Java Concurrency In Practice</a> as a resource while you are working on whichever project you choose.</p> http://stackoverflow.com/questions/762400/how-to-display-all-elements-in-an-arraylist/762407#762407 1 Answer by Darron for How to display all elements in an arraylist? Darron 2009-04-17T22:13:06Z 2009-04-17T22:13:06Z <p>You method getAll() does not get all. It returns the first car.</p> <p>The return statement terminates the loop.</p> http://stackoverflow.com/questions/751585/java-traversed-tree-to-tree/751619#751619 0 Answer by Darron for Java: Traversed Tree to Tree Darron 2009-04-15T13:10:21Z 2009-04-15T13:10:21Z <p>You'll need to store more information about the structure of the original XML. Those 3 lists don't have information on the order of child nodes, for instance.</p> http://stackoverflow.com/questions/736188/iterating-a-read-from-a-socket/736210#736210 7 Answer by Darron for Iterating a read() from a socket Darron 2009-04-09T23:11:46Z 2009-04-09T23:11:46Z <p>You need to check the return value from read before you start adding it to other values.</p> <p>You'll get a zero when the socket reports EOF, and -1 on error. Keep in mind that for a socket EOF is not the same as closed.</p> http://stackoverflow.com/questions/104583/does-the-iphone-sdk-allow-hardware-access-to-the-dock-connector/141350#141350 -1 Answer by Darron for Does the iPhone SDK allow hardware access to the dock connector? Darron 2008-09-26T19:13:13Z 2009-04-06T13:47:14Z <p>This falls into the range of capabilities that requires working with Apple to get a special license. At, I presume, a special price.</p> <p>This has changed to some extent with the 3.0 version of the iPhone firmware. If PyjamaSam is correct there is still some special activity required to get the connector specifications.</p> http://stackoverflow.com/questions/681417/regex-not-returning-2-groups/681439#681439 0 Answer by Darron for Regex not returning 2 groups Darron 2009-03-25T12:53:10Z 2009-03-25T12:53:10Z <p>You need to make the .* in the middle of your regex non-greedy. Look up the syntax and/or flag for non-greedy mode in your flavor of regular expressions.</p> http://stackoverflow.com/questions/677582/java-exception-must-be-thrown-but-how/677596#677596 8 Answer by Darron for Java -- Exception must be thrown, but how? Darron 2009-03-24T14:16:20Z 2009-03-24T14:16:20Z <p>Read the error message again, it gives you two choices.</p> <p>You must either declare the exception as thrown (which you cannot do) or catch the exception. Try the 2nd choice.</p> http://stackoverflow.com/questions/653336/should-a-buffer-of-bytes-be-signed-or-unsigned-char-buffer/654596#654596 0 Answer by Darron for Should a buffer of bytes be signed or unsigned char buffer? Darron 2009-03-17T14:57:30Z 2009-03-17T14:57:30Z <p>If you lie to the compiler, it will punish you.</p> <p>If the buffer contains data that is just passing through, and you will not manipulate them in any way, it doesn't matter.</p> <p>However, if you have to operate on the buffer contents then the correct type declaration will make your code simpler. No "int val = buf[i] &amp; 0xff;" nonsense.</p> <p>So, think about what the data actually is and how you need to use it.</p> http://stackoverflow.com/questions/651665/how-many-socket-connections-possible/651922#651922 1 Answer by Darron for How many socket connections possible? Darron 2009-03-16T19:54:40Z 2009-03-16T19:54:40Z <p>Google around for the "C10K" problem. This is basically discussion and technology around managing 10,000 or more simultaneous connections.</p> <p>I suspect this number was chosen because it's hard, but theoretically possible.</p> http://stackoverflow.com/questions/650351/your-first-c-compiler/650369#650369 2 Answer by Darron for Your first C compiler? Darron 2009-03-16T13:12:41Z 2009-03-16T13:17:46Z <p>I first used Software Toolworks' C compiler on HDOS. They also sold it for CP/M. No floats, doubles or longs, and no separate compilation or linking. 16 bit ints and shorts.</p> <p>This meant that "#include <code>&lt;stdio.h&gt;</code>" would pull in the complete source of the standard io library to be compiled into your program.</p> <p>I'm pretty sure this was based on Ron Cain's "small c" compiler originally published as source in Dr. Dobbs.</p> http://stackoverflow.com/questions/607250/how-do-i-get-the-type-object-of-a-genericized-enum-eg-enumset-noneofhuh/607276#607276 8 Answer by Darron for How do I get the type object of a genericized Enum? eg: EnumSet.noneOf(<huh?>) Darron 2009-03-03T17:12:45Z 2009-03-08T15:27:32Z <p>You've run into <a href="http://java.sun.com/docs/books/tutorial/java/generics/erasure.html" rel="nofollow">type erasure</a>. Your constructor is going to need to look like:</p> <pre><code>public FlagsField(Class&lt;T&gt; enumClass) { _flagSet = EnumSet.&lt;T&gt;noneOf(enumClass); } </code></pre> http://stackoverflow.com/questions/461737/eidetic-memory-what-magic-numbers-you-still-remember/461914#461914 2 Answer by Darron for Eidetic memory: What magic numbers you still remember? Darron 2009-01-20T16:03:09Z 2009-03-02T13:41:39Z <p>Tons, some of which fade in and out. Assembly language stuff from several processors.</p> <p>I know a lot of 8080 stuff in octal, and the corresponding hex for some of these. Similarly for a certain amount of ASCII.</p> <p>I think that 040.136 is the the HDOS $TYPTXT subroutine (print a string embedded inline in the code, terminated by a NUL). In split-octal.</p> <p>0x64 = 100 decimal.</p> <p>0xF0 - 0xF9 are the digits 0-9 in EBCDIC.</p> <p>0xCAFEBABE is the magic number for Java class files.</p> <p>call $0005 in CP/M to make a system call. That worked in MSDOS up to about version 3.1.</p> http://stackoverflow.com/questions/594321/assigning-to-const-int/594423#594423 2 Answer by Darron for Assigning to const int * Darron 2009-02-27T11:38:48Z 2009-02-27T16:33:03Z <p>Let me put your question into simple English.</p> <ul> <li>If I promise the compiler that I won't write to the value pointed to by the variable a, how do I write to the value pointed to by the variable a?</li> </ul> <p>The answer: change the promise, at least locally.</p> <pre><code>int main() { const int * a; *((int *) a) = 5; } </code></pre> <p>Hopefully the wording above makes it plain that this is usually a bad idea.</p> http://stackoverflow.com/questions/589057/does-java-64bit-perform-better-than-the-32bit-version/590446#590446 4 Answer by Darron for Does Java 64bit perform better than the 32bit version? Darron 2009-02-26T13:04:06Z 2009-02-26T13:04:06Z <p>Almost always 64 bits will be slower.</p> <p>To quote Sun from the <a href="http://java.sun.com/docs/hotspot/HotSpotFAQ.html#64bit%5Fperformance" rel="nofollow">HotSpot FAQ</a>:</p> <blockquote> <p>The performance difference comparing an application running on a 64-bit platform versus a 32-bit platform on SPARC is on the order of 10-20% degradation when you move to a 64-bit VM. On AMD64 and EM64T platforms this difference ranges from 0-15% depending on the amount of pointer accessing your application performs.</p> </blockquote> <p>There are more details at the link.</p> http://stackoverflow.com/questions/587138/should-source-code-be-the-only-software-design-documentation/587255#587255 0 Answer by Darron for Should source code be the only software design documentation? Darron 2009-02-25T18:34:01Z 2009-02-25T18:34:01Z <p>How could the code tell you what you chose not to implement, and why? This is a critical part of the design.</p> http://stackoverflow.com/questions/584142/what-is-the-difference-between-read-and-fread/584154#584154 10 Answer by Darron for What is the difference between read() and fread()? Darron 2009-02-24T23:43:30Z 2009-02-24T23:43:30Z <p>read() is a low level, unbuffered read. It makes a direct system call on UNIX.</p> <p>fread() is part of the C library, and provides buffered reads. It is usually implemented by calling read() in order to fill its buffer.</p> http://stackoverflow.com/questions/581878/why-catch-exceptions-in-java-when-you-can-catch-throwables/583330#583330 0 Answer by Darron for Why catch Exceptions in Java, when you can catch Throwables? Darron 2009-02-24T20:00:21Z 2009-02-24T20:00:21Z <p>A lot of the other answers are looking at things too narrowly.</p> <p>As they say, if you are writing application code, you should not catch Throwable. You can't do anything about it, so allowing the surrounding system (JVM or framework) to handle these issues is best.</p> <p>However, if you are writing "system code", like a framework or other low-level code then you may very well want to catch Throwable. The reason is to <em>attempt</em> to report the exception, perhaps in a log file. In some cases your logging will fail, but in most cases it will succeed and you will have the information you need to resolve the issue. Once you have made your logging attempt you should then either rethrow, kill the current thread, or exit the entire JVM.</p> http://stackoverflow.com/questions/574305/what-goodies-are-present-in-unix-shells-sans-bash/574322#574322 1 Answer by Darron for What goodies are present in UNIX shells sans BASH? Darron 2009-02-22T04:14:31Z 2009-02-22T04:14:31Z <p>I use ksh93 by preference. This means that the basics of ksh are available on pretty much any system I find myself on, so my interactive experience and 98% of my complex profile stay the same.</p> http://stackoverflow.com/questions/573171/average-number-of-languages-you-speak-should-documentation-be-translated/573892#573892 8 Answer by Darron for Average number of languages you speak? Should documentation be translated? Darron 2009-02-21T23:14:17Z 2009-02-21T23:14:17Z <p>There is this old joke:</p> <p>Q: What do you call someone who speaks 3 languages?<br /> A: Trilingual.</p> <p>Q: What do you call someone who speaks 2 languages?<br /> A: Bilingual.</p> <p>Q: What do you call someone who speaks 1 language?<br /> A: American.</p> <p>As a one-language American I have to admit that there is a kernel of truth to the joke. :-(</p> http://stackoverflow.com/questions/561671/best-way-to-control-concurrent-access-to-java-collections/563003#563003 2 Answer by Darron for Best way to control concurrent access to Java collections Darron 2009-02-18T21:54:30Z 2009-02-18T21:54:30Z <p>I strongly recommend the book "<a href="http://jcip.net" rel="nofollow">Java Concurrency in Practice</a>".</p> <p>Each of the choices has advantages/disadvantages:</p> <ol> <li>Vector - considered "obsolete". It may get less attention and bug fixes than more mainstream collections.</li> <li>Your own synchronization blocks - Very easy to get incorrect. Often gives poorer performance than the choices below.</li> <li>Collections.synchronizedList() - Choice 2 done by experts. This is still not complete, because of multi-step operations that need to be atomic (get/modify/set or iteration).</li> <li>New classes from java.util.concurrent - Often have more efficient algorithms than choice 3. Similar caveats about multi-step operations apply but tools to help you are often provided.</li> </ol> http://stackoverflow.com/questions/557676/is-it-defined-behavior-to-change-an-objective-c-objects-isa/557725#557725 0 Answer by Darron for Is it defined behavior to change an Objective-C object's isa? Darron 2009-02-17T16:59:03Z 2009-02-17T16:59:03Z <p>I think this is, as you say, dirty.</p> <p>I suspect it will work if:</p> <ul> <li>The newly assigned class is a subclass of the real class.</li> <li>The new class doesn't add any member variables.</li> </ul> <p>But I'll admit I don't know the nuts-and-bolts implementation of your Objective-C runtime system. I just know what makes sense to me for an implementation.</p> http://stackoverflow.com/questions/594321/assigning-to-const-int/594423#594423 Comment by Darron on Assigning to const int * Darron 2009-07-04T13:24:33Z 2009-07-04T13:24:33Z You can get past the casting limitation with a temporary variable. Having to do this should make it even plainer that you're doing something less than ideal. http://stackoverflow.com/questions/921025/eclipse-warning-about-synthetic-accessor-for-private-static-nested-classes-in-jav/921179#921179 Comment by Darron on Eclipse warning about synthetic accessor for private static nested classes in Java?! Darron 2009-05-28T14:54:25Z 2009-05-28T14:54:25Z The best solution, unless this is a J2ME project, is to disable the warning in Eclipse and write your code to match your intent. The performance hit will be either negligible or zero after JIT. http://stackoverflow.com/questions/834177/foolproof-trial-strategy/834225#834225 Comment by Darron on Foolproof trial strategy Darron 2009-05-11T16:01:06Z 2009-05-11T16:01:06Z I suppose so. Or &quot;how can I let someone run all of the code, but not a subset that they select.&quot; http://stackoverflow.com/questions/735832/comparing-character-integer-and-similar-types-in-java-use-equals-or Comment by Darron on Comparing Character, Integer and similar types in Java: Use equals or ==? Darron 2009-04-09T21:26:01Z 2009-04-09T21:26:01Z The only thing to assume about performance: it doesn't matter if incorrect code is faster. :-) http://stackoverflow.com/questions/160908/openjdk7-what-essential-adts-are-not-implemented-in-openjdk7/708268#708268 Comment by Darron on OpenJDK7: What essential ADTs are not Implemented in OpenJDK7 ? Darron 2009-04-03T15:16:56Z 2009-04-03T15:16:56Z If they had decided this a few versions ago then many of the very nice concurrent data structures would not be as generally available, at least not with the same performance. JVM hooks were necessary for their current performance level. http://stackoverflow.com/questions/684166/which-delegate-method-i-should-use-to-respond-to-clicks-on-a-nstextfield Comment by Darron on Which delegate method I should use to respond to clicks on a NSTextField? Darron 2009-03-26T01:19:33Z 2009-03-26T01:19:33Z Duplicate of: <a href="http://stackoverflow.com/questions/680863/which-delegate-method-i-should-use-to-respond-to-clicks-on-a-text-field" rel="nofollow" title="which delegate method i should use to respond to clicks on a text field">stackoverflow.com/questions/680863/&hellip;</a> http://stackoverflow.com/questions/680514/object-pooling/680579#680579 Comment by Darron on Object Pooling Darron 2009-03-25T13:02:13Z 2009-03-25T13:02:13Z +1 for knowing my pain. I've just solved a serious data corruption bug by removing an object pool. Profiling on Java 1.3 and 1.4 showed the pool as being a big win, on 1.5 it slows the code down. http://stackoverflow.com/questions/172255/how-do-i-programatically-zoom-a-uiscrollview/668166#668166 Comment by Darron on How do I programatically zoom a UIScrollView? Darron 2009-03-22T18:47:20Z 2009-03-22T18:47:20Z Yes, that's it. I'm sorry I never chased it back down and posted it myself. http://stackoverflow.com/questions/650351/your-first-c-compiler/650369#650369 Comment by Darron on Your first C compiler? Darron 2009-03-16T15:29:58Z 2009-03-16T15:29:58Z In the first version they didn't support Macro-80, partially because their header files were only available in a form containing all the code. It was an amazingly useful tool within its limitations. http://stackoverflow.com/questions/650461/what-are-some-tricks-i-can-use-with-macros/650501#650501 Comment by Darron on What are some tricks I can use with macros? Darron 2009-03-16T15:13:52Z 2009-03-16T15:13:52Z I prefer &quot;for (...) continue;&quot; to make the semicolon more visible. http://stackoverflow.com/questions/607250/how-do-i-get-the-type-object-of-a-genericized-enum-eg-enumset-noneofhuh/607276#607276 Comment by Darron on How do I get the type object of a genericized Enum? eg: EnumSet.noneOf(<huh?>) Darron 2009-03-03T17:23:21Z 2009-03-03T17:23:21Z Java compiles just one version of the code for your generic class; the code doesn't have any compile time knowledge of the type parameter. The JDK implementers faced this same issue; this is why EnumSet.noneOf() requires the class argument. You aren't going to be able to do better than they did. http://stackoverflow.com/questions/604391/is-modifying-a-string-pointed-to-by-a-pointer-valid/604394#604394 Comment by Darron on Is modifying a string pointed to by a pointer valid? Darron 2009-03-02T23:02:18Z 2009-03-02T23:02:18Z I consider this unlucky. In my experience it will work on my workstation, and then fail spectacularly at a customer site. I prefer an early failure. http://stackoverflow.com/questions/594321/assigning-to-const-int/594423#594423 Comment by Darron on Assigning to const int * Darron 2009-02-27T16:33:37Z 2009-02-27T16:33:37Z That's what happens when you start by cutting from the question. :-) http://stackoverflow.com/questions/594321/assigning-to-const-int/594342#594342 Comment by Darron on Assigning to const int * Darron 2009-02-27T11:33:45Z 2009-02-27T11:33:45Z &quot;declarations should be read from right to left&quot; is a simplification -- if there are parentheses they should be read from inside out. Unless the parentheses indicate a function call. The real rule is &quot;treat it like an expresion; if I apply these operators I'll eventually get this simple type&quot;. http://stackoverflow.com/questions/589057/does-java-64bit-perform-better-than-the-32bit-version/589069#589069 Comment by Darron on Does Java 64bit perform better than the 32bit version? Darron 2009-02-26T23:46:14Z 2009-02-26T23:46:14Z I suspect the cause is that most of the time the increased sizes of objects (because of pointer sizes) swamps the benefits from more efficient operations on longs and doubles.