User Mike Daniels - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T15:50:17Zhttp://stackoverflow.com/feeds/user/82344http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1711268/calling-the-user-attention-outside-of-app/1711292#17112920Answer by Mike Daniels for calling the user attention outside of appMike Daniels2009-11-10T21:22:22Z2009-11-10T21:22:22Z<p>Always-on-top window in the corner of the screen?</p>
http://stackoverflow.com/questions/1533568/what-is-the-correct-way-to-write-html-using-javascript/1533605#15336050Answer by Mike Daniels for What is the correct way to write HTML using Javascript?Mike Daniels2009-10-07T19:16:45Z2009-10-07T19:16:45Z<p>The document.write method is very limited. You can only use it before the page has finished loading. You can't use it to update the contents of a loaded page.</p>
<p>What you probably want is <a href="http://www.tizag.com/javascriptT/javascript-innerHTML.php" rel="nofollow">innerHTML</a>.</p>
http://stackoverflow.com/questions/1468704/which-word-do-you-use-to-describe-a-json-like-object/1468709#14687091Answer by Mike Daniels for Which word do you use to describe a JSON-like object?Mike Daniels2009-09-23T21:50:24Z2009-09-23T21:50:24Z<p>SerializedData?</p>
http://stackoverflow.com/questions/1446332/does-it-make-sense-to-permanently-delete-versions-from-a-vcs-as-part-of-a-normal8Does it make sense to permanently delete versions from a VCS as part of a normal development process?Mike Daniels2009-09-18T19:03:09Z2009-09-19T00:38:13Z
<p>We use ClearCase at my workplace. Part of our standard process when code is merged to the main (trunk) branch is to completely eradicate all of the versions on development and integration branches. Because this wipes out all of the check-in comments that went along with these versions, our source files have to have a lengthy prologue comment that identifies each change.</p>
<p>On a few occasions I have pointed out that this negates one of the fundamental reasons for <em>using</em> a version control system, and stated that by removing versions it becomes impossible to see who originally worked on something, when problems got introduced, etc. People checking in new versions have learned not to bother entering a check-in comment because it's just going to be deleted anyway.</p>
<p>The justification I have heard for removing the old versions has usually just come down to "feel-good" reasons. My more experienced coworkers feel that removing these old branches makes the version trees for files "cleaner". They claim that there is no reason to keep these old versions around once it's been merged to our trunk. They're also concerned that other developers will accidentally keep these outdated branches in their <a href="http://en.wikipedia.org/wiki/ClearCase#Configuration%5Fspecifications" rel="nofollow">view config specs</a>. Finally, they argue that removing these branches saves disk space on the CM server.</p>
<p>Am I right to have a bad feeling about this, or are there other development shops out there who operate successfully in this way? If you also think this is a bad idea, what other arguments in favor of keeping old versions would you supply? If you have operated successfully with this kind of process, what sort of benefits have you observed?</p>
<p><hr /></p>
<p>Edited to clarify: Previous versions of the trunk are always preserved. It's the branches where the stuff originally got created or modified that are removed.</p>
http://stackoverflow.com/questions/1447215/why-arent-floating-point-decimal-numbers-hardware-accelerated-like-floating-poin/1447223#1447223-1Answer by Mike Daniels for Why aren't Floating-Point Decimal numbers hardware accelerated like Floating-Point Binary numbers?Mike Daniels2009-09-18T23:32:32Z2009-09-18T23:32:32Z<p>Do you mean the typical numeric integral types "int", "long", "short" (etc.)? Because operations on those types are definitely implemented in hardware. If you're talking about arbitrary-precision large numbers ("BigNums" and "Decimals" and such), it's probably a combination of rarity of operations using these data types and the complexity of building hardware to deal with arbitrarily large data formats.</p>
http://stackoverflow.com/questions/1424601/what-to-ask-do-when-attending-a-conference-full-of-our-target-users/1424619#1424619-1Answer by Mike Daniels for What to ask/do when attending a conference full of our target usersMike Daniels2009-09-15T00:57:16Z2009-09-15T00:57:16Z<p>Get a marketing department.</p>
http://stackoverflow.com/questions/1422746/odds-of-1st-2nd-3rd-place/1422765#14227656Answer by Mike Daniels for Odds of 1st, 2nd, 3rd placeMike Daniels2009-09-14T17:00:59Z2009-09-14T17:00:59Z<p>1/65, 1/65, 1/65.</p>
http://stackoverflow.com/questions/1382026/how-is-the-operator-implemented-in-java/1382030#13820302Answer by Mike Daniels for How is the == operator implemented in Java?Mike Daniels2009-09-05T00:10:47Z2009-09-05T00:10:47Z<p>Because a reference is just a number, a reference comparison comes down to just comparing two numbers. No hash is needed.</p>
http://stackoverflow.com/questions/1354583/in-java-can-objects-be-created-with-both-static-memory-allocation-and-dynamic-mem/1354694#13546940Answer by Mike Daniels for In java Can objects be created with both static memory allocation and dynamic memory allocation?Mike Daniels2009-08-30T19:21:36Z2009-08-30T19:21:36Z<p>The answers claiming that non-primitives are always allocated on the heap are dead wrong.</p>
<p>JVMs can do <a href="http://en.wikipedia.org/wiki/Escape%5Fanalysis" rel="nofollow">escape analysis</a> to determine whether objects will always be confined to a single thread and that the object's lifetime is bounded by the lifetime of a given stack frame. If it can determine that an object can be allocated on the stack, a JVM may allocate it there.</p>
<p>See <a href="http://www.ibm.com/developerworks/java/library/j-jtp09275.html" rel="nofollow">this article</a> for details.</p>
http://stackoverflow.com/questions/1258201/will-using-goto-cause-memory-leaks/1258210#12582100Answer by Mike Daniels for Will using goto cause memory leaks?Mike Daniels2009-08-11T02:27:28Z2009-08-11T02:27:28Z<p>Nope. Local variables do not need to be individually cleaned up. When the stack pops, all the local variables will go away right along with it.</p>
http://stackoverflow.com/questions/1217775/rotating-a-spaceship-model-for-a-space-simulator-game/1217795#12177953Answer by Mike Daniels for Rotating a spaceship model for a space simulator/gameMike Daniels2009-08-01T23:44:08Z2009-08-01T23:44:08Z<p>I'm not sure I entirely understand the situation, but it sounds like you might be describing <a href="http://en.wikipedia.org/wiki/Gimbal%5Flock#Gimbal%5Flock%5Fin%5Fapplied%5Fmathematics" rel="nofollow">gimbal lock</a>. You might want to look at using <a href="http://en.wikipedia.org/wiki/Quaternion" rel="nofollow">quaternions</a> to represent your rotations.</p>
http://stackoverflow.com/questions/1175511/in-c-which-is-faster-if-with-returns-or-else-if-with-returns/1175523#117552340Answer by Mike Daniels for In C, which is faster: if with returns, or else if with returns?Mike Daniels2009-07-24T02:41:42Z2009-07-24T02:57:13Z<p>It makes no difference, and this is a needless attempt at micro-optimization.</p>
http://stackoverflow.com/questions/1054082/looking-for-feedback-on-a-use-of-the-adapter-pattern1Looking for feedback on a use of the Adapter pattern.Mike Daniels2009-06-28T02:35:15Z2009-06-28T09:48:58Z
<p>In a project at work we have a certain value type class in our domain model that includes a very large number of attributes...</p>
<pre><code>public class BigValueType {
private Foo foo;
private Bar bar;
private Baz baz;
//...
}
</code></pre>
<p>We've realized that we would like to "focus" this into a number of different, somewhat more specialized classes that only have some subset of this class's attributes. I think we would like to have something like different "views" of this data.</p>
<pre><code>public class SpecializationA {
private Foo foo;
private Baz baz;
//...
}
public class SpecializationB {
private Bar bar;
private Baz baz;
//...
}
private class SpecializationC {
private Foo foo;
private Bar bar;
//...
}
</code></pre>
<p>However, this domain model is intended to be rather general, and not specific to this project. It will have project-specific extensions added to it during future projects, but the common domain model will be kept separate from these extensions. If we simply define a bunch of classes now, it's likely that other projects using the domain model will just have to write their own slightly different ones later. (We can't easily predict what views of this data will be useful.)</p>
<p>I think what we should do is write project-specific Adapters for this big class that present the different views of the data. This way, future users of the domain don't have to touch anything in the "common" domain model to define new views of this information.</p>
<pre><code>public class AdapterA {
private BigValueType wrapped;
//...
public ViewA(BigValueType wrapped) {
//...
}
public Foo getFoo() {
return wrapped.getFoo();
}
//...
}
</code></pre>
<p>This makes more sense to me than normal inheritance because our top-level class/interface would have almost nothing in it.</p>
<p>Any feedback on this approach?</p>
http://stackoverflow.com/questions/1054034/rebuttals-and-comments-two-db-tables-or-one/1054050#10540500Answer by Mike Daniels for "Rebuttals" and "Comments" - Two DB-Tables or One?Mike Daniels2009-06-28T02:06:46Z2009-06-28T02:06:46Z<p>If comments and rebuttals have different maximum lengths, and different restrictions on how many you can have per essay, they sound like very different things to me. Your schema will be clearer if you create two tables for entities with different limitations, and establish different column and referential constraints.</p>
http://stackoverflow.com/questions/1029482/how-have-you-or-have-you-learned-keyboard-shortcut-navigation/1029597#10295972Answer by Mike Daniels for How have you (or HAVE you) learned keyboard shortcut navigation?Mike Daniels2009-06-22T21:53:25Z2009-06-22T21:53:25Z<p>I tend to learn shortcuts by noticing which functions I need most and making a note of the shortcut as I'm selecting a function with the mouse. Of course, this only works in applications that show the keyboard shortcut along with the main menu item or in a toolbar button tooltip. (Fortunately, Eclipse does do this.)</p>
http://stackoverflow.com/questions/902147/should-games-rely-on-frame-rate-only/902170#9021705Answer by Mike Daniels for Should games rely on frame rate only?Mike Daniels2009-05-23T18:43:04Z2009-05-23T18:43:04Z<p>This is a problem which, fortunately for us math boneheads, has more or less already been solved. The issue you're describing is solved by <em>dynamic</em> collision detection, which is used to determine if two objects collided between frames, and for certain kinds of collisions can even tell you exactly <em>when</em> the collision occurred, so you can update the state of the world correctly.</p>
<p>If you are not particularly interested in implementing the collision deteciton algorithms yourself, I would look into using a library that already does this sort of thing:</p>
<ul>
<li><a href="http://www.bulletphysics.com/Bullet/wordpress/" rel="nofollow">Bullet physics engine</a></li>
<li><a href="http://g3d-cpp.sourceforge.net/" rel="nofollow">G3D</a></li>
<li><a href="http://www.geometrictools.com/" rel="nofollow">Geometric Tools</a></li>
</ul>
<p>One of many good books on the subject is <a href="http://realtimecollisiondetection.net/" rel="nofollow">Real Time Collision Detection</a>.</p>
http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895428#895428110Answer by Mike Daniels for How can you tell if a person is a programmer?Mike Daniels2009-05-21T22:00:37Z2009-05-21T22:00:37Z<p>Similar to FeatureCreep's answer...</p>
<p>If they go completely crazy whenever they see a sentence ending with punctuation in a parenthetical clause (like this one.)</p>
http://stackoverflow.com/questions/894829/java-opinion-preventing-exceptions-vs-catching-exceptions/894884#89488413Answer by Mike Daniels for (Java) Opinion: Preventing Exceptions vs. Catching ExceptionsMike Daniels2009-05-21T20:11:49Z2009-05-21T20:11:49Z<p>In my opinion, it only makes sense to prevent a NullPointerException (for example) when a reference being null (again, for example) actually represents a <strong>valid program state</strong>. If it does not, you should <strong>not</strong> prevent it from happening, because in that case you <strong>want</strong> the program to die hard.</p>
<p>In Java in particular, certain exceptions descending from RuntimeException (such as IllegalArgumentException) are really meant to signal programming errors, conditions that should not happen if your program is correct. I try to follow this. If I am writing a method that places restrictions on its arguments, I will not try to avoid throwing an exception. I will throw one aggressively.</p>
http://stackoverflow.com/questions/890222/analyzing-code-for-efficiency/890238#89023814Answer by Mike Daniels for Analyzing Code for Efficiency?Mike Daniels2009-05-20T21:02:36Z2009-05-20T21:02:36Z<p>This is called <a href="http://en.wikipedia.org/wiki/Software%5Fprofiling" rel="nofollow">profiling</a>. There are lots of off-the-shelf tools available to help you determine where the bottlenecks in your applications are, for all kinds of different languages. For example, the <a href="http://www.eclipse.org/tptp/" rel="nofollow">TPTP</a> set of tools for Java can show you where performance bottlenecks are down to the individual method level, if you want it to. Of course, sometimes all you really need is a couple of reads of the system timer to get a general idea about a section of code.</p>
http://stackoverflow.com/questions/860904/how-do-you-make-the-user-stay-on-a-particular-page-of-a-website/860913#860913-2Answer by Mike Daniels for How do you make the user stay on a particular page of a website?Mike Daniels2009-05-13T23:28:22Z2009-05-13T23:28:22Z<p>Set a flag in the user's session indicating that they need to change their password, then check that flag from all your other pages and redirect them to the change-password page if necessary.</p>
http://stackoverflow.com/questions/837935/how-can-you-prevent-bogus-high-scores-from-appearing-on-a-global-high-score-list6How can you prevent bogus high scores from appearing on a global high score list?Mike Daniels2009-05-08T02:01:11Z2009-05-08T10:08:38Z
<p>Suppose you are designing a PC game that keeps track of high scores. In addition to keeping local scores, a global high score server is set up that is accessed by the game over the internet. Players should be able to submit their high scores to the global high score list right after they have completed a game, or later, from their local high score list. This must be a common problem; arcade games on modern game consoles often feature a global high score list that works like this.</p>
<p>My question boils down to: <strong>how can you prevent someone from submitting bogus high scores?</strong> Or, stated another way, how can the global high score server be sure that a submitted score was really produced by a run through the game?</p>
<p>The more I thought about this, the more I think it may be an unsolvable problem.</p>
<p>What you'd commonly do to verify that a message originated from a certain source is have the source digitally sign the message. You could certainly do that in this case, but the real problem is that the player, by having the software, also has the software's private key. No matter how obfuscated it might be, it can be reverse engineered, or even just plucked from memory.</p>
<p>Another option would be to send along a replay of the player's game to the high score server, which would quickly run the replay and verify that the submitted score matches the outcome of the replay. This doesn't solve the problem, but it certainly makes it more difficult to forge a bogus high score if you also have to produce a very complex replay that "proves" it.</p>
<p>Is this a problem that has a solution, or is it really unsolvable? Are there techniques used by the home game console developers to prevent this sort of exploit, or do they simply rely on the console preventing unauthorized code from running?</p>
http://stackoverflow.com/questions/830740/is-there-a-difference-between-id-date-or-date-id-index-in-sql-server/830762#8307620Answer by Mike Daniels for Is there a difference between id,date or date,id index in sql serverMike Daniels2009-05-06T17:22:43Z2009-05-06T17:22:43Z<p>Yes, it does matter. Suppose you create an index on columns (A, B). You can do a SELECT with a WHERE clause including both columns and the index can be used. The index will also be used if you do a SELECT with a WHERE that only includes column A. But if you do a SELECT with a WHERE that only includes column B, the index <em>can't</em> be used.</p>
<p>See <a href="http://blog.cumps.be/efficient-compound-index-usage/" rel="nofollow">here</a> for more info.</p>
http://stackoverflow.com/questions/690293/opengl-java-and-memory-management/690681#6906811Answer by Mike Daniels for OpenGL, Java and memory managementMike Daniels2009-03-27T17:19:34Z2009-03-27T17:19:34Z<p>In the lower-level bindings for OpenGL like JOGL (but probably not so much for libraries like Java3D), you do have to manage resources like textures and buffers yourself by calling the <code>glDelete</code> functions.</p>
<p>OpenGL does things like move textures to and from video memory when necessary for rendering. There isn't a practical way for the Java garbage collector to collect these resources because they aren't represented as Java objects once they're handed off to OpenGL. Yes, this means that you have to keep around lists of resources in use by OpenGL.</p>
<p>The good news is that you can probably load more resources into OpenGL than you might think, since it will take care of swapping them to the video memory when needed and back to main memory when not. The bad news is that there's still a practical limit on the size and number of resources (e.g. textures) that can be used to render a frame without this "thrashing".</p>
http://stackoverflow.com/questions/1610383/why-does-this-improve-performance/1610410#1610410Comment by Mike Daniels on Why Does This Improve Performance?Mike Daniels2009-10-22T22:42:59Z2009-10-22T22:42:59ZThe last index is the one where the data would be sequentially ordered, not the first.http://stackoverflow.com/questions/1610383/why-does-this-improve-performanceComment by Mike Daniels on Why Does This Improve Performance?Mike Daniels2009-10-22T22:37:49Z2009-10-22T22:37:49ZSee here: <a href="http://stackoverflow.com/questions/997212/fastest-way-to-loop-through-a-2d-array" rel="nofollow" title="fastest way to loop through a 2d array">stackoverflow.com/questions/997212/…</a>http://stackoverflow.com/questions/1533554/is-it-possible-to-force-a-login-depending-on-the-ip-address/1533578#1533578Comment by Mike Daniels on Is it Possible to Force a Login Depending on the IP Address?Mike Daniels2009-10-07T19:13:56Z2009-10-07T19:13:56ZHe is looking to ALLOW robots and DENY others. This will not help.http://stackoverflow.com/questions/1489060/how-do-you-cope-with-work-related-mood-swingsComment by Mike Daniels on How do you cope with work-related mood swings?Mike Daniels2009-09-28T20:06:17Z2009-09-28T20:06:17ZSounds like your workplace sucks. Quit.http://stackoverflow.com/questions/1474382/a-good-and-simple-measure-of-randomnessComment by Mike Daniels on A Good and SIMPLE Measure of RandomnessMike Daniels2009-09-24T22:00:38Z2009-09-24T22:00:38ZPossible starting point: <a href="http://en.wikipedia.org/wiki/Randomness_tests" rel="nofollow">en.wikipedia.org/wiki/Randomness_tests</a>http://stackoverflow.com/questions/1446332/does-it-make-sense-to-permanently-delete-versions-from-a-vcs-as-part-of-a-normal/1446486#1446486Comment by Mike Daniels on Does it make sense to permanently delete versions from a VCS as part of a normal development process?Mike Daniels2009-09-18T23:25:43Z2009-09-18T23:25:43ZFortunately, because of the way ClearCase merges work, removing the "source" version of a merge doesn't mangle the versions following the destination version of a merge.http://stackoverflow.com/questions/1026327/what-common-algorithms-are-used-for-cs-rand/1026370#1026370Comment by Mike Daniels on What common algorithms are used for C's rand()?Mike Daniels2009-09-18T21:08:36Z2009-09-18T21:08:36Z@Aaron: If that were the case, it wouldn't be a very good random number generator. What you'd have in that case is sampling without replacement.http://stackoverflow.com/questions/1438558/what-technique-in-functional-programming-is-difficult-to-learn-but-useful-afterwa/1438569#1438569Comment by Mike Daniels on What technique in functional programming is difficult to learn but useful afterwards?Mike Daniels2009-09-17T20:07:02Z2009-09-17T20:07:02Z@reinier: Looks like tail recursion to me. With many compilers, you've only created an infinite loop!http://stackoverflow.com/questions/1434051/how-to-postback-a-page-in-jqueryComment by Mike Daniels on how to postback a page in jqueryMike Daniels2009-09-16T17:03:57Z2009-09-16T17:03:57Zhow is babby formedhttp://stackoverflow.com/questions/1424635/is-there-a-programmatic-way-to-check-stack-corruptionComment by Mike Daniels on Is there a programmatic way to check stack corruptionMike Daniels2009-09-15T01:10:51Z2009-09-15T01:10:51ZIf this is purely for debugging purposes, there must be a better way than rolling your own solution. If this is for PRODUCTION purposes, you'd be better off fixing the cause instead of trying to detect the symptom.http://stackoverflow.com/questions/1424511/how-do-scripting-languages-use-sockets/1424517#1424517Comment by Mike Daniels on How do scripting languages use sockets?Mike Daniels2009-09-15T00:53:48Z2009-09-15T00:53:48ZYou'd run your Python (or whatever) program just like any other program. If you're talking about what happens when there's a web server like Apache involved, the web server itself invokes your script.http://stackoverflow.com/questions/1397009/jvm-instruction-set-cpu-cycles-byte-size/1397023#1397023Comment by Mike Daniels on JVM instruction set CPU cycles & byte sizeMike Daniels2009-09-09T00:47:31Z2009-09-09T00:47:31ZThere are multiple JVMs that run on Windows, so a simple benchmark of "a Windows machine" wouldn't be adequate. Such a benchmark would only give you information about a particular JVM in that environment.http://stackoverflow.com/questions/232861/fibonacci-code-golfComment by Mike Daniels on Fibonacci Code GolfMike Daniels2009-09-08T23:04:40Z2009-09-08T23:04:40ZHalf the people who've commented so far have apparently never seen any other code golf question and really don't "get it". Try clicking the code-golf tag and see what we're all talking about.http://stackoverflow.com/questions/1391995/should-i-make-all-my-java-code-threadsafe/1392002#1392002Comment by Mike Daniels on Should I make all my java code threadsafe ?Mike Daniels2009-09-08T04:49:54Z2009-09-08T04:49:54Z+1. Additionally, thread-safety generally comes with a performance penalty. I generally try to document classes that are thread-unsafe when they're sharing a package with other classes that ARE largely thread-safe, so that the exceptions to the norm are obvious.http://stackoverflow.com/questions/1386080/parsing-and-editing-html-in-php/1386096#1386096Comment by Mike Daniels on parsing and editing html in phpMike Daniels2009-09-06T17:02:05Z2009-09-06T17:02:05ZYou, sir, are a mind reader.