User Dan Dyer - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T00:37:52Z http://stackoverflow.com/feeds/user/5171 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1806078/java-why-does-this-method-have-side-effects/1806085#1806085 10 Answer by Dan Dyer for Java: Why does this method have side effects? Dan Dyer 2009-11-26T23:16:20Z 2009-11-26T23:30:02Z <p>The <code>final</code> modifier only means that the reference cannot be reassigned. It does not prevent the object's state from being modified.</p> <p><strong>EDIT:</strong> Just for Tom:</p> <pre><code>public void doSomething1(Object arg) { arg = new Object(); // OK. } public void doSomething2(final Object arg) { arg = new Object(); // Compile error. } </code></pre> <p>In both cases both cases you can invoke methods on the object pointed to by <code>arg</code>, including methods that modify its state.</p> http://stackoverflow.com/questions/1803503/why-are-java-enums-not-clonable/1803521#1803521 5 Answer by Dan Dyer for Why are Java enums not clonable? Dan Dyer 2009-11-26T12:54:58Z 2009-11-26T14:20:17Z <p>If your clone method returns <code>this</code> instance rather than a distinct object, then it's not a clone, is it?</p> <p><a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html#clone%28%29" rel="nofollow">The Javadoc</a> says:</p> <blockquote> <p>By convention, the object returned by this method should be independent of this object (which is being cloned).</p> </blockquote> <p>Enums are not supposed to be cloned because there is supposed to only ever be one instance of each value.</p> <p><strong>EDIT:</strong> In response to the following comment:</p> <blockquote> <p>That's exactly what I criticize. Why not return the same instance, if there cannot be a different one?</p> </blockquote> <p>Because it doesn't really make sense. If it's the same object then it's not a clone. The Javadocs also say:</p> <blockquote> <p>The general intent is that, for any object x, the expression: <pre>x.clone() != x</pre> will be true, and that the expression: <pre>x.clone().getClass() == x.getClass()</pre> will be true, but these are not absolute requirements.</p> </blockquote> <p>So the intent is for the <code>clone()</code> method to return a distinct object. Unfortunately it says that it's not an absolute requirement, which makes your suggestion valid, but I still think it's not sensible because it's not useful to have a clone method that returns <code>this</code>. It might even cause problems if you were doing something dubious like having mutable state in your enum constants or synchronising on them. The behaviour of such code would be different depending on whether the clone method did proper cloning or just returned <code>this</code>. </p> <p>You don't really explain why you want to treat enums as <code>Cloneable</code> when they are inherently un-cloneable. Wanting to have a clone method that doesn't obey the accepted conventions seems like a hack to solve some more fundamental problem with your approach.</p> http://stackoverflow.com/questions/1786086/java-how-to-determine-the-current-load/1786112#1786112 1 Answer by Dan Dyer for Java - how to determine the current load Dan Dyer 2009-11-23T21:28:01Z 2009-11-23T21:28:01Z <p>I think you've answered your own question. If you want a pure Java solution, then the best that you can do is the information returned by the <a href="http://java.sun.com/javase/6/docs/api/java/lang/management/ThreadMXBean.html" rel="nofollow">ThreadMXBean</a>.</p> <p>You can find out how many threads there are, how many processors the host machine has and how much time has been used by each thread, and calculate CPU load from that.</p> http://stackoverflow.com/questions/1703490/java-rs232-comm-on-vista-64-bit/1704284#1704284 1 Answer by Dan Dyer for Java RS232 Comm on Vista-64 bit Dan Dyer 2009-11-09T22:14:02Z 2009-11-09T22:14:02Z <p>Try the <a href="http://rxtx.org/" rel="nofollow">RXTX library</a>. It's an open source alternative to Sun's Comm API. I haven't used it on a 64-bit machine, but it generally has better Windows support than Sun's version.</p> http://stackoverflow.com/questions/1697215/what-is-your-favourite-java-api-annoyance/1698120#1698120 2 Answer by Dan Dyer for What is your "favourite" Java API annoyance? Dan Dyer 2009-11-08T22:22:36Z 2009-11-08T22:22:36Z <p>The <a href="http://java.sun.com/javase/6/docs/api/java/lang/Cloneable.html" rel="nofollow">Cloneable</a> interface does not define the clone method (it's just a marker interface). So even if you know that an object implements Cloneable, you don't know whether it can actually be cloned (it might not have a public clone method).</p> http://stackoverflow.com/questions/1691225/good-libraries-for-generating-non-uniform-pseudo-random-numbers/1691231#1691231 3 Answer by Dan Dyer for Good libraries for generating non uniform pseudo-random numbers Dan Dyer 2009-11-06T23:31:48Z 2009-11-06T23:31:48Z <p>For Java, one option is my <a href="https://uncommons-maths.dev.java.net/" rel="nofollow">Uncommons Maths</a> library. It supports Uniform, Gaussian, Binomial, Poisson and Exponential distributions. There is a <a href="https://uncommons-maths.dev.java.net/demo/demo.jnlp" rel="nofollow">WebStart demo</a> so you can see what it does.</p> http://stackoverflow.com/questions/52468/is-it-worthwhile-for-programmers-to-join-professional-organisations 24 Is it worthwhile for programmers to join professional organisations? Dan Dyer 2008-09-09T17:54:50Z 2009-11-05T18:20:58Z <p>Are you a member of a professional organisation such as the <a href="http://www.acm.org" rel="nofollow">ACM</a>, <a href="http://www.ieee.org/" rel="nofollow">IEEE</a>, or <a href="http://www.bcs.org/" rel="nofollow">BCS</a>/<a href="http://www.acs.org.au/" rel="nofollow">ACS</a> (or equivalent in your country)?</p> <p>How does it benefit your career and continuing education? What are the key benefits and do they justify the membership fees?</p> http://stackoverflow.com/questions/1679722/algorithm-to-calculate-the-number-of-matches-in-swiss-system-tournament/1682056#1682056 0 Answer by Dan Dyer for Algorithm to calculate the number of matches in Swiss system tournament Dan Dyer 2009-11-05T17:02:12Z 2009-11-05T17:02:12Z <p>From the description on Wikipedia, it seems that it is determining the pairings that is the difficult task. The total number of matches just depends on how many rounds are played. If we go with the suggestion that the number of rounds is determined by the base-2 logarithm of the number of entrants (n), then the number of matches (m) is as follows:</p> <pre><code>m = ceil(log2 n) * floor(n / 2) </code></pre> <p>So for 10 players you need 4 rounds, with 5 matches in each, hence 20 matches. With an odd number of players there would be a bye, so for 11 players the number of matches is the same.</p> http://stackoverflow.com/questions/1677994/what-is-the-significance-of-the-pom-file-that-maven-places-in-a-jar-file-is-it-u 3 What is the significance of the POM file that Maven places in a JAR file, is it used by anything? Dan Dyer 2009-11-05T02:41:48Z 2009-11-05T03:44:29Z <p>When Maven builds a JAR file, it places the module's POM file inside (seemingly in the directory &lt;groupid&gt;/&lt;artifactid&gt;).</p> <p>When I build a JAR file from Ant to be deployed via the Maven Ant tasks, is the presence of this POM file (the one inside the JAR) important? It doesn't seem to be, but I just wanted to be sure that it is not being used anywhere, and to confirm where exactly in the JAR file it is supposed to be.</p> http://stackoverflow.com/questions/1673583/the-practical-haskell-tutorial-for-a-programmer-coming-from-the-imperative-univer/1676934#1676934 3 Answer by Dan Dyer for The practical Haskell tutorial for a programmer coming from the imperative universe Dan Dyer 2009-11-04T21:56:40Z 2009-11-04T21:56:40Z <p>I agree with most of the other suggestions, particularly <a href="http://www.cs.utah.edu/~hal/docs/daume02yaht.pdf" rel="nofollow">Yet Another Haskell Tutorial</a> (PDF), <a href="http://learnyouahaskell.com/" rel="nofollow">Learn You A Haskell for Great Good</a> (similar in approach to Why's guide to Ruby) and the book <a href="http://book.realworldhaskell.org/" rel="nofollow">Real World Haskell</a>.</p> <p>One that hasn't been suggested is Simon Peyton Jones' <a href="http://research.microsoft.com/~simonpj/papers/marktoberdorf/mark.pdf" rel="nofollow">Tackling the awkward squad: monadic input/output, concurrency, exceptions, and foreign-language calls in Haskell</a> (PDF). Maybe it shouldn't be the first thing that you read, but if you want to get up to speed with some of the things that you'll need to write useful real-world programs, this article is invaluable. In fact, any papers or videos by Simon Peyton Jones should be worthwhile as he is very good at explaining things in a way that normal programmers can understand.</p> http://stackoverflow.com/questions/1669689/pre-java-5-collections-and-the-unwillingness-to-change/1669709#1669709 0 Answer by Dan Dyer for Pre Java 5 collections and the unwillingness to change Dan Dyer 2009-11-03T19:47:00Z 2009-11-03T19:47:00Z <p>If the code works, there probably isn't much to be gained from rewriting it. However, aside from the compile-time type-checking, the other reason you might want to switch to using generics is that it makes the code self-documenting. It makes it explicit about what types it is using.</p> http://stackoverflow.com/questions/1654923/in-the-13-years-that-java-has-been-around-are-there-any-specific-examples-of-bac/1655085#1655085 9 Answer by Dan Dyer for In the 13 years that Java has been around, are there any specific examples of backward incompatibilities? Dan Dyer 2009-10-31T17:51:58Z 2009-10-31T17:57:27Z <p>The main one that I can think of is the introduction of new reserved words:</p> <pre><code>Java 1.3: strictfp Java 1.4: assert Java 5.0: enum </code></pre> <p>Any code that previously used these values as identifiers would not compile under a later version.</p> <p>One other issue that I remember causing problems on a project that I worked on was that there was <a href="http://java.sun.com/j2se/1.3/compatibility.html#incompatibilities1.3" rel="nofollow">a change in the default visibility of JInternalFrames between 1.2 and 1.3</a>. They were visible by default, but when we upgraded to 1.3 they all seemed to have disappeared.</p> http://stackoverflow.com/questions/1652449/resources-for-game-artificial-intelligence/1654164#1654164 4 Answer by Dan Dyer for Resources for Game Artificial Intelligence Dan Dyer 2009-10-31T11:48:59Z 2009-10-31T12:50:28Z <p>The games that you mention present very different problems. Chess is a game of <a href="http://en.wikipedia.org/wiki/Perfect%5Finformation" rel="nofollow">perfect information</a> - you know exactly where all of your opponent's pieces are positioned so you can anticipate the moves that they might make. The problem with getting a computer to play chess well is not so much one of determining the best move to take (this can be done with <a href="http://en.wikipedia.org/wiki/Minimax" rel="nofollow">Minimax</a>), but being able to get the answer in a timely fashion. Looking ahead at all the possible outcomes that might follow from a given move is extremely expensive, which is why chess programs typically only look ahead a certain number of moves when evaluating options, rather than all the way to the end of the game. This ensures that decisions are made promptly but may result in sub-optimal play. In theory, chess could be <a href="http://en.wikipedia.org/wiki/Solved%5Fboard%5Fgames" rel="nofollow">solved</a>, just as <a href="http://news.bbc.co.uk/1/hi/sci/tech/6907018.stm" rel="nofollow">Draughts/Checkers has been</a>. It's just a question of resources (it won't happen any time soon).</p> <p>Poker, on the other hand, is a game of imperfect information. A player does not know which cards his or her opponents have and therefore can not reliably predict their decisions. There is also an element of deception in poker - so the "right" move in any given situation is debatable and will often depend on the nature of the players involved (poker players are usually classified on two axes - tight/loose and passive/aggressive). The strongest hand does not always win. A good player can win with a weaker hand by bluffing to induce an opponent to fold.</p> <p>To my mind, these characteristics of poker make it a much more interesting (and difficult) AI problem than chess. There are a lot of people working on poker bots. <a href="http://www.cs.nott.ac.uk/~gxk/games/poker/research.html" rel="nofollow">Some are academics</a> and some are just trying to make some money from the online poker sites. The <a href="http://www.codingthewheel.com/tags/poker" rel="nofollow">Coding the Wheel blog</a> covers a lot of topics about poker botting. You may also find the book <a href="http://rads.stackoverflow.com/amzn/click/1880685000" rel="nofollow">The Theory of Poker</a> useful.</p> <p>If you're going to attempt to write a poker-playing AI, it's probably best to start with fixed limit games since the AI only has to decide whether to call, raise or fold and not worry about how big each bet should be. Likewise, heads-up (2-player) games are much simpler than full 9- or 10-player games.</p> <p>Opponent-modelling is likely to feature in any successful poker AI, since the best move in any given situation likely depends on the strategies employed by your opponents. Here are a couple of papers that might help:</p> <ul> <li><a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.49.1733&amp;rep=rep1&amp;type=pdf" rel="nofollow">Opponent Modeling in Poker</a> (PDF)</li> <li><a href="http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.41.4618&amp;rep=rep1&amp;type=pdf" rel="nofollow">An Adaptive Learning Model for Simplified Poker Using Evolutionary Algorithms</a> (PDF)</li> </ul> http://stackoverflow.com/questions/492457/how-to-avoid-negative-values-with-jfreechart-fixed-auto-range 0 How to avoid negative values with JFreeChart fixed auto range Dan Dyer 2009-01-29T16:51:59Z 2009-10-27T09:20:25Z <p>I have a JFreeChart line plot that is updated dynamically with one data point for every iteration of my algorithm. Because the number of data points can quickly become very large, I have used the <a href="http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/axis/ValueAxis.html#setFixedAutoRange(double)" rel="nofollow">setFixedAutoRange(double)</a> method on the domain axis. This restricts the graph to displaying the n most recent iterations (200 in my case).</p> <p>This works well, except during the first 200 iterations. The problem is that, until there have been 200 iterations, the axis includes negative values (for example, after 50 iterations, the range is from -150 to 50). Negative iterations make no sense. I would like the axis to start at zero rather than a negative value. How can I achieve this?</p> <p>I don't mind whether the axis goes from 0 to 200 initially (with the right hand part of the chart left blank until the plot fills it up) or whether it starts at 0 to 1 and grows (so that the plot is always stretched across the full width of the chart). Either would acceptable, though I have a slight preference for the former.</p> <p>Things I have tried:</p> <ul> <li>Calling <a href="http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/axis/ValueAxis.html#setLowerBound(double)" rel="nofollow">setLowerBound</a> doesn't play nicely with setFixedAutoRange.</li> <li>Calling <a href="http://www.jfree.org/jfreechart/api/javadoc/org/jfree/chart/axis/NumberAxis.html#setRangeType(org.jfree.data.RangeType)" rel="nofollow">setRangeType(RangeType.POSITIVE)</a> doesn't seem to make any difference.</li> </ul> <p>Any ideas?</p> http://stackoverflow.com/questions/1627719/swing-alignment-problem/1627960#1627960 0 Answer by Dan Dyer for Swing: Alignment Problem Dan Dyer 2009-10-26T23:49:36Z 2009-10-26T23:49:36Z <p>The problem with the code that you posted isn't so much the BoxLayout, it's the layout that contains it. By default, JPanel uses FlowLayout. When you add a component to a FlowLayout it does not expand to fill all of the available space.</p> <p>So, instead of adding a Box to the panel, either make the class extend Box or set the panel layout to BoxLayout and add the components directly.</p> http://stackoverflow.com/questions/1627069/how-can-i-keep-a-music-player-in-the-page-footer-that-doesnt-reload-when-i-click/1627110#1627110 0 Answer by Dan Dyer for How can I keep a music player in the page footer that doesn't reload when I click a link to a subpage? Dan Dyer 2009-10-26T20:19:22Z 2009-10-26T20:19:22Z <p>You might want to look at how <a href="http://www.thesixtyone.com/" rel="nofollow">thesixtyone.com</a> works. They have non-interrupted music by using AJAX to rebuild the page when a link is clicked rather than load a new one. This is achieved by having all links be anchors for the current page (i.e. all links are relative and start with a hash character).</p> http://stackoverflow.com/questions/1568988/what-is-the-difference-between-rmi-and-corba/1604358#1604358 1 Answer by Dan Dyer for What is the difference between RMI and Corba? Dan Dyer 2009-10-22T00:15:52Z 2009-10-22T00:15:52Z <p>RMI is a Java-specific technology. CORBA has implementations for many languages. You can use CORBA to share objects between programs written in different languages (e.g. C++ and Java).</p> <p>CORBA uses IDL (Interface Definition Language) to separate interface from implementation. RMI just uses Java interfaces.</p> <p>Because CORBA is not tied to a particular language, the data types do not always map exactly to the types used by your programming language (e.g. a long in IDL is an int in Java).</p> <p>RMI programs can download new classes from remote JVMs. CORBA doesn't have this code sharing mechanism.</p> <p>It's been a while, but I remember (from porting a Java app from CORBA to RMI) that CORBA (or at least the implementation we were using) took care of a lot of the necessary synchronization for concurrent code, which was something we had to do explicitly when using RMI.</p> <p>RMI can be configured to operate over IIOP (the protocol used by CORBA).</p> http://stackoverflow.com/questions/1588738/minimax-algorithm/1603988#1603988 1 Answer by Dan Dyer for Minimax algorithm Dan Dyer 2009-10-21T22:19:02Z 2009-10-21T22:19:02Z <p>Typically you would implement the utility function directly. In this case the algorithm would not learn how to play the game, it would use the information that you had explicitly hard-coded in the implementation. </p> <p>However, it would be possible to use <a href="http://en.wikipedia.org/wiki/Genetic%5Fprogramming" rel="nofollow">genetic programming</a> (GP) or some equivalent technique to automatically derive a utility function. In this case you would not have to encode any explicit strategy. Instead the evolution would discover its own way of playing the game well.</p> <p>You could either combine your minimax code and the GP code into a single (probably very slow) adaptive program, or you could run the GP first, find a good utility function and then add this function to your minimax code just as you would any hand-coded function.</p> http://stackoverflow.com/questions/1575061/genetic-algorithm-in-java/1575814#1575814 0 Answer by Dan Dyer for Genetic Algorithm in Java Dan Dyer 2009-10-16T00:17:58Z 2009-10-16T00:17:58Z <p>These other questions about roulette wheel selection should help:</p> <ul> <li><a href="http://stackoverflow.com/questions/298301/roulette-wheel-selection-algorithm">Roulette wheel selection algorithm</a></li> <li><a href="http://stackoverflow.com/questions/177271/roulette-selection-in-genetic-algorithms">Roulette selection in genetic algorithms</a></li> </ul> <p>In the first one, <a href="http://stackoverflow.com/questions/298301/roulette-wheel-selection-algorithm/320788#320788">I've tried to explain</a> how the roulette wheel works. In the second, <a href="http://stackoverflow.com/questions/177271/roulette-selection-in-genetic-algorithms/177278#177278">Jarod Elliott has provided some pseudocode</a>. Combined with <a href="http://stackoverflow.com/questions/1575061/fitness-proportionate-selection-in-java/1575277#1575277">Adamski's description of an efficient implementation</a>, these should be sufficient to get something working.</p> http://stackoverflow.com/questions/1559958/glitchy-graphing-using-jfreechart/1560231#1560231 0 Answer by Dan Dyer for Glitchy graphing using JFreeChart Dan Dyer 2009-10-13T13:24:49Z 2009-10-13T13:24:49Z <p>How are you adding data points to the chart? Are you doing it on the AWT event dispatch thread? You should probably use <a href="http://java.sun.com/javase/6/docs/api/javax/swing/SwingUtilities.html#invokeAndWait%28java.lang.Runnable%29" rel="nofollow">SwingUtilities.invokeAndWait</a>. You can use invokeLater but if your program is busy doing other things, the GUI might not be updated promptly.</p> <p>Also, how many data points do you have? I <a href="http://stackoverflow.com/questions/492457/how-to-avoid-negative-values-with-jfreechart-fixed-auto-range">discovered</a> that the code for fixed auto-range was quite inefficient for large numbers of data points. That may have been fixed in the most recent version (I don't know).</p> http://stackoverflow.com/questions/1556422/best-language-for-web-programming/1556437#1556437 1 Answer by Dan Dyer for Best language for web programming Dan Dyer 2009-10-12T19:30:25Z 2009-10-12T19:30:25Z <p>Your requirements do not sound unusual. Just about any language that has an adequate web framework would be sufficient. Pick the one that you are most comfortable with.</p> http://stackoverflow.com/questions/1552427/have-you-ever-been-the-victim-of-a-bug-in-a-programming-language-or-technology/1555031#1555031 2 Answer by Dan Dyer for Have you ever been the victim of a bug in a programming language or technology? Dan Dyer 2009-10-12T14:51:44Z 2009-10-12T14:51:44Z <p>A colleague once stumbled across a bug in the Jikes Java compiler. He had something like this:</p> <pre><code>if (condition) { } else { System.out.println("Code that does stuff."); } </code></pre> <p>He hadn't intended to leave the top block empty permanently, but just had it that way during development. He discovered that the condition was ignored unless he put a comment in that block so that it was no longer empty.</p> http://stackoverflow.com/questions/1554958/how-different-do-random-seeds-need-to-be/1554996#1554996 -1 Answer by Dan Dyer for How different do random seeds need to be? Dan Dyer 2009-10-12T14:46:23Z 2009-10-12T14:46:23Z <p>The seeds themselves should be random so that the output is unpredictable. There can be problems if the seeds differ only in one or two bits (as <a href="http://stackoverflow.com/questions/426350/seeding-java-util-random-with-consecutive-numbers/426394#426394">this question</a> demonstrates).</p> http://stackoverflow.com/questions/1544055/rossover-operation-in-genetic-algorithm-for-tsp/1545765#1545765 2 Answer by Dan Dyer for Сrossover operation in Genetic algorithm for TSP Dan Dyer 2009-10-09T19:57:09Z 2009-10-09T23:15:17Z <p>Rather than using the standard GA cross-over technique (as <a href="http://stackoverflow.com/questions/1544055/rossover-operation-in-genetic-algorithm-for-tsp/1544326#1544326">outlined by MusiGenesis</a>), it's better to use <a href="http://www.permutationcity.co.uk/projects/mutants/tsp.html" rel="nofollow">ordered cross-over for the Travelling Salesman problem</a>.</p> <p>The usual approach doesn't work so well for the TSP because the fitness function is very sensitive to the relative positions of the different cities in the evolved route rather than their absolute positions. For example, if you were visiting all European capitals, the shortest route doesn't really depend on whether you visit Bratislava 1st, 2nd, or 9th. What's more important is that you visit it <a href="http://maps.google.co.uk/maps?f=q&amp;source=s%5Fq&amp;hl=en&amp;geocode=&amp;q=vienna+to+bratislava&amp;sll=53.800651,-4.064941&amp;sspn=18.252022,28.959961&amp;ie=UTF8&amp;z=10" rel="nofollow">immediately before or immediately after visiting Vienna</a> rather than visiting Helsinki, Athens and 6 other capitals in between.</p> <p>Of course, as <a href="http://stackoverflow.com/users/166686/mjv">mjv also points out</a>, the traditional cross-over will also introduce duplicates in your route. If one parent has Paris in position 2 and another has Paris in position 14, cross-over could result in one evolved route that visits Paris twice (and misses out another city), and another evolved route that doesn't visit it at all. The ordered cross-over genetic operator does not suffer from this problem. It preserves the elements and modifies the ordering.</p> http://stackoverflow.com/questions/1538235/what-problems-have-you-solved-using-genetic-algorithms-genetic-programming/1538819#1538819 6 Answer by Dan Dyer for What problems have you solved using genetic algorithms/genetic programming? Dan Dyer 2009-10-08T16:10:17Z 2009-10-08T16:10:17Z <p>As well as some of the common problems, like the Travelling Salesman and a variation on <a href="http://rogeralsing.com/2008/12/07/genetic-programming-evolution-of-mona-lisa/" rel="nofollow">Roger Alsing's Mona Lisa program</a>, I've also written <a href="https://watchmaker.dev.java.net/examples/sudoku.html" rel="nofollow">an evolutionary Sudoku solver</a> (which required a bit more original thought on my part, rather than just re-implementing somebody else's idea). There are more reliable algorithms for solving Sudokus but the evolutionary approach works fairly well.</p> <p>In the last few days I've been playing around with an evolutionary program to find "cold decks" for poker after seeing <a href="http://www.benjoffe.com/holdem" rel="nofollow">this article</a> on Reddit. It's not quite satisfactory at the moment but I think I can improve it.</p> <p>I have <a href="https://watchmaker.dev.java.net" rel="nofollow">my own framework</a> that I use for evolutionary algorithms.</p> http://stackoverflow.com/questions/1534285/non-uniform-random-number-generator-implementation/1534346#1534346 4 Answer by Dan Dyer for Non-Uniform Random Number Generator Implementation? Dan Dyer 2009-10-07T21:33:28Z 2009-10-07T22:03:13Z <p>You might be able to use a <a href="http://en.wikipedia.org/wiki/Binomial%5Fdistribution" rel="nofollow">binomial distribution</a>, if you're happy with the shape of that distribution. Set n=12 and p=0.25. This will give you a value between 0 and 12 with a mean of 3. Just add 2 to each result to get the range and mean you are looking for.</p> <p><strong>Edit:</strong> As for implementation, you can probably find a library for your chosen language that supports non-uniform distributions (I've <a href="https://uncommons-maths.dev.java.net" rel="nofollow">written one myself for Java</a>).</p> <p>A binomial distribution can be approximated fairly easily using a uniform RNG. Simply perform <em>n</em> trials and record the number of successes. So if you have n=10 and p=0.5, it's just like flipping a coin 10 times in a row and counting the number of heads. For p=0.25 just generate uniformly-distributed values between 0 and 3 and only count zeros as successes.</p> <p>If you want a more efficient implementation, there is a clever algorithm hidden away in the exercises of volume 2 of Knuth's The Art of Computer Programming.</p> http://stackoverflow.com/questions/1531039/guard-is-skipped-when-it-should-not-be/1531169#1531169 1 Answer by Dan Dyer for Guard is skipped when it should not be. Dan Dyer 2009-10-07T11:53:10Z 2009-10-07T11:53:10Z <p>You have <em>e</em> and <em>n</em> the wrong way round in the definition of <em>foo'</em> (<em>n</em> comes before <em>e</em> in <em>foo</em>, but it's the other way around in <em>foo'</em>). So you are not passing 2 9 3, you're passing 2 3 9.</p> http://stackoverflow.com/questions/1528285/writing-a-java-standard-class-library-alternative-from-the-scratch/1528291#1528291 5 Answer by Dan Dyer for Writing a Java standard class library alternative from the scratch Dan Dyer 2009-10-06T21:51:01Z 2009-10-06T21:57:34Z <p>You can use the -Xbootclasspath option to specify your own set of core classes.</p> <p>If you do go down this path, you will probably end up with a lot of problems if you intend to also use third party libraries as they will depend on the core API and any inconsistencies in your version will likely cause bugs.</p> <p>As an absolute minimum you'd probably have to reimplement everything in the java.lang package. As well as Object and String, the primitive wrapper classes need to be present in order for auto-boxing to work. I don't think you can replace java.lang without a fair bit of native code to make things like threads work.</p> http://stackoverflow.com/questions/1516263/how-to-remove-similar-but-not-identical-content-in-a-mysql-database/1516499#1516499 0 Answer by Dan Dyer for How to remove "similar" but not identical content in a MySQL database. Dan Dyer 2009-10-04T14:08:46Z 2009-10-04T14:08:46Z <p>You could use the <a href="http://dev.mysql.com/doc/refman/5.0/en/string-comparison-functions.html#operator%5Flike" rel="nofollow">LIKE operator</a>.</p> <pre><code>DELETE FROM myTable WHERE description LIKE 'The bird%flew over the tree%'; </code></pre> http://stackoverflow.com/questions/1500141/find-a-jar-file-given-the-class-name/1500307#1500307 0 Answer by Dan Dyer for Find a jar file given the class name? Dan Dyer 2009-09-30T19:54:23Z 2009-09-30T19:54:23Z <p>Save this as findclass.sh (or whatever), put it on your path and make it executable:</p> <pre><code>#!/bin/sh find "$1" -name "*.jar" -exec sh -c 'jar -tf {}|grep -H --label {} '$2'' \; </code></pre> <p>The first parameter is the directory to search recursively and the second parameter is a regular expression (typically just a simple class name) to search for.</p> <pre><code>$ findclass.sh . WSSubject </code></pre> <p>The script relies on the -t option to the jar command (which lists the contents) and greps each table of contents, labelling any matches with the path of the JAR file in which it was found.</p> http://stackoverflow.com/questions/1806078/java-why-does-this-method-have-side-effects/1806085#1806085 Comment by Dan Dyer on Java: Why does this method have side effects? Dan Dyer 2009-11-26T23:45:01Z 2009-11-26T23:45:01Z @fastcodejava: Yes, perhaps my example made it less clear. The code is meant to demonstrate what final does. The comment about being able to modify the object's state assumes that you haven't reassigned the reference. http://stackoverflow.com/questions/1806078/java-why-does-this-method-have-side-effects/1806085#1806085 Comment by Dan Dyer on Java: Why does this method have side effects? Dan Dyer 2009-11-26T23:30:45Z 2009-11-26T23:30:45Z There you go :) http://stackoverflow.com/questions/1803503/why-are-java-enums-not-clonable/1803522#1803522 Comment by Dan Dyer on Why are Java enums not clonable? Dan Dyer 2009-11-26T14:27:53Z 2009-11-26T14:27:53Z @Christian, does your code deal with other objects that don't implement Cloneable, or does everything have to be cloneable? http://stackoverflow.com/questions/1779258/volatile-or-synchronized-for-primitive-type Comment by Dan Dyer on Volatile or synchronized for primitive type? Dan Dyer 2009-11-22T18:26:23Z 2009-11-22T18:26:23Z @kts No, volatile has been in Java from the start, but they did change/fix the memory model in Java 5. http://stackoverflow.com/questions/1727261/scrolling-inside-vim-in-macs-terminal/1727299#1727299 Comment by Dan Dyer on Scrolling inside Vim in Mac's Terminal Dan Dyer 2009-11-15T10:59:49Z 2009-11-15T10:59:49Z Or use CTRL+f and CTRL+b to move forward and back by one screen at a time. Or CTRL+d and CTRL+u to move up and down by half a screen. http://stackoverflow.com/questions/1696619/displaying-unicode-symbols-in-html/1696638#1696638 Comment by Dan Dyer on Displaying unicode symbols in HTML Dan Dyer 2009-11-08T14:37:14Z 2009-11-08T14:37:14Z @Peter, you can refer to any character by its code. Try &amp;#x2714; for a tick. http://stackoverflow.com/questions/1689227/maven-is-it-a-good-common-practice-to-use-it-only-for-dependency-mgmt-and-the/1689451#1689451 Comment by Dan Dyer on maven - is it a good / common practice to use it only for dependency mgmt and then let the ant do everything else..? Dan Dyer 2009-11-06T20:22:05Z 2009-11-06T20:22:05Z This might be one of the links you are referring to: <a href="http://tapestryjava.blogspot.com/2009/10/maven-throwing-out-bath-water-keeping.html" rel="nofollow">tapestryjava.blogspot.com/2009/10/&hellip;</a>. And this was one of the responses to that article: <a href="http://www.sonatype.com/people/2009/11/maven-howard-how-to-execute-the-perfect-oss-drive-by-shooting/" rel="nofollow">sonatype.com/people/2009/&hellip;</a> http://stackoverflow.com/questions/895918/how-do-i-publish-to-me-github-com/895974#895974 Comment by Dan Dyer on How do I publish to <me>.github.com? Dan Dyer 2009-11-02T16:06:09Z 2009-11-02T16:06:09Z Found this question via Google. This helped me, thanks. I used the &quot;generate project page&quot; link and it created the index.html in my repository, but it was not published until I did a subsequent push with a minor edit of the page. http://stackoverflow.com/questions/1599953/idea-community-edition-versus-eclipse/1600280#1600280 Comment by Dan Dyer on IDEA Community Edition versus Eclipse Dan Dyer 2009-10-21T22:45:32Z 2009-10-21T22:45:32Z You will still be able to develop JavaEE applications with the community edition, you just won't get any specific help from the IDE as you would with the full version. http://stackoverflow.com/questions/990718/how-does-collective-intelligence-beat-experts-view Comment by Dan Dyer on How does Collective Intelligence beat Experts' view? Dan Dyer 2009-10-21T22:06:10Z 2009-10-21T22:06:10Z It's about a specific class of algorithms and how (well) they work. Seems programming-related to me. http://stackoverflow.com/questions/1568144/how-can-i-convince-a-client-that-audio-on-a-website-is-a-bad-idea/1568342#1568342 Comment by Dan Dyer on How can I convince a client that audio on a website is a bad idea? Dan Dyer 2009-10-14T22:28:40Z 2009-10-14T22:28:40Z Asking the user whether they want music or not would also allow you to measure how many users think it is a good idea. If you find out that 98% of visitors to that specific site don't want music, that would be a good way to convince the customer that it is a bad idea. http://stackoverflow.com/questions/1230442/increasing-java-heap-size-on-virtual-server Comment by Dan Dyer on Increasing Java Heap size on Virtual server? Dan Dyer 2009-10-14T20:02:36Z 2009-10-14T20:02:36Z How much RAM does your VPS have in total? http://stackoverflow.com/questions/1562442/problem-with-java-gui/1562468#1562468 Comment by Dan Dyer on Problem with Java GUI Dan Dyer 2009-10-13T20:20:47Z 2009-10-13T20:20:47Z Actually, that might not also be the case for setCaretPosition (I'm not sure), so it may still be necessary. http://stackoverflow.com/questions/1562442/problem-with-java-gui/1562468#1562468 Comment by Dan Dyer on Problem with Java GUI Dan Dyer 2009-10-13T20:18:37Z 2009-10-13T20:18:37Z @John: invokeLater is not necessary in this particular case because JTextArea.append is one of the few Swing methods that is safe to call from any thread. http://stackoverflow.com/questions/1556395/what-are-best-must-have-software-plugins-for-java Comment by Dan Dyer on What are best must have software/plugins for Java ? Dan Dyer 2009-10-12T19:35:08Z 2009-10-12T19:35:08Z @Rachel: Yes, but what are you plugging them into? Eclipse, IntelliJ, Maven, something else?