User sanity - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T00:12:57Zhttp://stackoverflow.com/feeds/user/16050http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1760917/can-i-write-to-the-beanshell-console-from-java1Can I write to the Beanshell console from Java?sanity2009-11-19T04:40:22Z2009-11-26T16:25:41Z
<p>I'm using Beanshell as an embedded debugging tool in my app. It means I can telnet to my app and poke around with its internals while it is running (I typically wrap the telnet session with rlwrap).</p>
<p>The problem is that the only way I've found to print to the Beanshell console, rather than stdout of the application itself, is the print() method within Beanshell.</p>
<p>But I'd like to write code in Java that I can call from Beanshell, which will output to the Beanshell console - ie. it will be shown in my telnet session, not sent to stdout of the application, as happens if you try to use System.out or System.err.</p>
<p>Is this possible?</p>
<p><hr></p>
<p>edit: To further clarify, I'm setting up a Beanshell server as follows:</p>
<pre><code>public static void setUpBeanshell() {
try {
i.setShowResults(true);
i.eval(new InputStreamReader(Bsh.class.getResourceAsStream("init.bsh")));
i.eval("server(" + Main.globalConfig.beanShellPort + ");");
} catch (final EvalError e) {
Main.log.error("Error generated while starting BeanShell server", e);
}
}
</code></pre>
<p>How would I modify this such that I can write a Java function that outputs to the telnet session (rather than to System.out of my application)</p>
http://stackoverflow.com/questions/83789/what-is-the-best-git-gui-on-osx11What is the best Git GUI on OSX?sanity2008-09-17T14:25:47Z2009-11-24T09:13:38Z
<p>What is the best GUI on OSX for viewing a repository, and (optionally) manipulating it?</p>
http://stackoverflow.com/questions/1763710/how-do-i-find-out-what-jar-files-are-actually-used-when-compiling-a-java-project/1763736#17637364Answer by sanity for How do I find out what jar files are actually used when compiling a java project.sanity2009-11-19T14:39:24Z2009-11-19T15:11:27Z<p>You need the <a href="http://www.dependency-analyzer.org/" rel="nofollow">Class Dependency Analyzer</a> tool. To quote the introduction:</p>
<blockquote>
<p>The purpose of this tool is to analyze Java™ class files in order to learn more about the dependencies between those classes. </p>
</blockquote>
<p>True, it won't catch runtime dependencies - but short of running an exhaustive 100% coverage test suite you can never be sure you've caught all runtime dependencies.</p>
<p>If you expect runtime dependencies you should use the CDA as a first-pass, then do exhaustive testing of the resultant app to ensure that there are no jar files which were only referenced through runtime dependencies.</p>
http://stackoverflow.com/questions/1734097/to-use-or-not-to-use-scala-for-new-java-projects/1734604#17346045Answer by sanity for To use or not to use Scala for new Java projects ?sanity2009-11-14T15:43:18Z2009-11-14T15:43:18Z<p>Here are the pros and cons of Scala relative to Java IMHO:</p>
<p>Pros:</p>
<ul>
<li>Much more concise syntax for idioms common in modern Java code</li>
<li>Closures</li>
<li>More powerful type system including mixins</li>
<li>Pattern matching</li>
<li>Great REPL, 2.8 will even have tab-completion</li>
</ul>
<p>In summary: You get a lot more functionality with a lot less code than Java</p>
<p>Cons:</p>
<ul>
<li>IDE support is still of alpha or beta quality, although IDEA has the best support currently</li>
<li>The standard library is not immune to changes with each new version (2.8 will have backwards incompatible changes)</li>
<li>The standard library had significant bugs at least as recently as a year ago (when I found one in the JSON support)</li>
</ul>
<p>I think Scala will be ready for major production use in 6-8 months, but I wouldn't bet my project on it today.</p>
http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample0Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-11T17:43:44Z2009-11-13T23:15:22Z
<p>I would like to do an <a href="http://en.wikipedia.org/wiki/Curve%5Ffitting#Algebraic%5Ffit%5Fversus%5Fgeometric%5Ffit%5Ffor%5Fcurves" rel="nofollow">algebraic</a> curve fit of 2D data points, but for various reasons - it isn't really possible to have much of the sample data in memory at once, and iterating through all of it is an expensive process.</p>
<p>(The reason for this is that actually I need to fit thousands of curves simultaneously based on gigabytes of data which I'm reading off disk, and which is therefore sloooooow). </p>
<p>Note that the number of polynomial coefficients will be limited (perhaps 5-10), so an exact fit will be extremely unlikely, but this is ok as I'm trying to find an underlying pattern in data with a <strong>lot</strong> of random noise.
I understand how one can use a genetic algorithm to fit a curve to a dataset, but this requires many passes through the sample data, and thus isn't practical for my application.</p>
<p>Is there a way to fit a curve with a single pass of the data, where the state that must be maintained from sample to sample is minimal?</p>
<p>I should add that the nature of the data is that the points may lie anywhere on the X axis between 0.0 and 1.0, but the Y values will always be either 1.0 or 0.0.</p>
<p>So, in Java, I'm looking for a class with the following interface:</p>
<pre><code>public interface CurveFit {
public void addData(double x, double y);
public List<Double> getBestFit(); // Returns the polynomial coefficients
}
</code></pre>
<p>The class that implements this must not need to keep much data in its instance fields, no more than a kilobyte even for millions of data points. This means that you can't just store the data as you get it to do multiple passes through it later.</p>
<p><em>edit:</em> Some have suggested that finding an optimal curve in a single pass may be impossible, however an optimal fit is not required, just as close as we can get it in a single pass.</p>
<p>The bare bones of an approach might be if we have a way to start with a curve, and then a way to modify it to get it slightly closer to new data points as they come in - effectively a form of gradient descent. It is hoped that with sufficient data (and the data will be plentiful), we get a pretty good curve. Perhaps this inspires someone to a solution.</p>
http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1732488#17324880Answer by sanity for Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-13T23:15:22Z2009-11-13T23:15:22Z<p>I believe I found the answer to my own question based on a modified version of <a href="http://vps.arachnoid.com/polysolve/" rel="nofollow">this</a> code. For those interested, my Java code is <a href="http://gist.github.com/234253" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/338586/a-better-java-json-library19A better Java JSON library?sanity2008-12-03T20:32:20Z2009-11-10T18:42:47Z
<p>Can anyone recommend a good Java JSON library (better than the one from <a href="http://json.org/" rel="nofollow">http://json.org/</a>)? I've also found JSON-lib, which definitely looks like an improvement, but I'm wondering if there is anything that is even better than that?</p>
http://stackoverflow.com/questions/1697013/how-do-i-efficiently-estimate-a-probability-based-on-a-small-amount-of-evidence1How do I efficiently estimate a probability based on a small amount of evidence?sanity2009-11-08T16:13:42Z2009-11-08T20:12:15Z
<p>I've been trying to find an answer to this for months (to be used in a machine learning application), it doesn't seem like it should be a terribly hard problem, but I'm a software engineer, and math was never one of my strengths.</p>
<p>Here is the scenario:</p>
<p>I have a (possibly) unevenly weighted coin and I want to figure out the probability of it coming up heads. I know that coins from the same box that this one came from have an average probability of <strong>p</strong>, and I also know the standard deviation of these probabilities (call it <strong>s</strong>).</p>
<p>(If other summary properties of the probabilities of other coins aside from their mean and stddev would be useful, I can probably get them too.)</p>
<p>I toss the coin <strong>n</strong> times, and it comes up heads <strong>h</strong> times.</p>
<p>The naive approach is that the probability is just <strong>h/n</strong> - but if n is small this is unlikely to be accurate.</p>
<p>Is there a computationally efficient way (ie. doesn't involve very very large or very very small numbers) to take <strong>p</strong> and <strong>s</strong> into consideration to come up with a more accurate probability estimate, even when <strong>n</strong> is small?</p>
<p>I'd appreciate it if any answers could use pseudocode rather than mathematical notation since I find most mathematical notation to be impenetrable ;-)</p>
<p><hr></p>
<p><strong>Other answers:</strong>
There are some other answers on SO that are similar, but the answers provided are unsatisfactory. For example <a href="http://stackoverflow.com/questions/967709/estimating-a-probability-given-other-probabilities-from-a-prior/967894#967894">this</a> is not computationally efficient because it quickly involves numbers way smaller than can be represented even in double-precision floats. And <a href="http://stackoverflow.com/questions/1133193/efficiently-determining-the-probability-of-a-user-clicking-a-hyperlink">this</a> one turned out to be incorrect.</p>
http://stackoverflow.com/questions/1646257/lru-linkedhashmap-that-limits-size-based-on-available-memory1LRU LinkedHashMap that limits size based on available memorysanity2009-10-29T20:13:22Z2009-11-04T17:42:42Z
<p>I want to create a LinkedHashMap which will limit its size based on available memory (ie. when <code>freeMemory + (maxMemory - allocatedMemory)</code> gets below a certain threshold). This will be used as a form of cache, probably using "least recently used" as a caching strategy.</p>
<p>My concern though is that allocatedMemory also includes (I assume) un-garbage collected data, and thus will over-estimate the amount of used memory. I'm concerned about the unintended consequences this might have.</p>
<p>For example, the LinkedHashMap may keep deleting items because it thinks there isn't enough free memory, but the free memory doesn't increase because these deleted items aren't being garbage collected immediately.</p>
<p>Does anyone have any experience with this type of thing? Is my concern warranted? If so, can anyone suggest a good approach?</p>
<p>I should add that I also want to be able to "lock" the cache, basically saying "ok, from now on don't delete anything because of memory usage issues".</p>
http://stackoverflow.com/questions/577773/experiencing-occasional-long-garbage-collection-delays-why7Experiencing occasional long garbage collection delays, why?sanity2009-02-23T14:21:16Z2009-10-27T14:17:13Z
<p>I'm having a hard time dealing with a Java garbage collection problem, and interpreting the logs.</p>
<p>My application requires that no GC takes longer than 2 seconds, and ideally less than 100ms.</p>
<p>Based on some previous advice I'm trying the following command line options:</p>
<pre><code> java -XX:MaxGCPauseMillis=100 -XX:NewRatio=9 -XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -server -Xmx9g -Xms9g
</code></pre>
<p>The application has a large amount of long-term stored objects, which are kept in a ConcurrentLinkedHashMap. I'm seeing occasional long pauses, in the worst case up to 10 seconds (this is the second last like of the GC logs below)!</p>
<p>Here is some of the output I'm getting:</p>
<pre><code>16938.968: [GC 16938.968: [ParNew: 153343K->17022K(153344K), 7.8608580 secs] 6184328K->6122510K(9420160K) icms_dc=7 , 7.8614100 secs] [Times: user=0.63 sys=0.01, real=7.86 secs]
16947.087: [GC 16947.087: [ParNew: 153342K->17022K(153344K), 7.2604030 secs] 6258830K->6198642K(9420160K) icms_dc=7 , 7.2609780 secs] [Times: user=0.44 sys=0.00, real=7.27 secs]
16954.614: [GC 16954.614: [ParNew: 153342K->17024K(153344K), 8.4307620 secs] 6334962K->6274625K(9420160K) icms_dc=7 , 8.4313150 secs] [Times: user=0.62 sys=0.01, real=8.43 secs]
16963.310: [GC 16963.310: [ParNew: 153344K->17023K(153344K), 6.2588760 secs] 6410945K->6350748K(9420160K) icms_dc=7 , 6.2594290 secs] [Times: user=0.48 sys=0.01, real=6.25 secs]
16969.834: [GC 16969.834: [ParNew: 153343K->17022K(153344K), 6.0274280 secs] 6487068K->6425868K(9420160K) icms_dc=7 , 6.0279830 secs] [Times: user=0.50 sys=0.01, real=6.03 secs]
16976.122: [GC 16976.123: [ParNew: 153342K->17022K(153344K), 11.7774620 secs] 6562188K->6503030K(9420160K) icms_dc=7 , 11.7780180 secs] [Times: user=0.43 sys=0.04, real=11.78 secs]
16988.164: [GC 16988.164: [ParNew: 153342K->17024K(153344K), 10.9477920 secs] 6639350K->6579928K(9420160K) icms_dc=7 , 10.9483440 secs] [Times: user=0.37 sys=0.02, real=10.95 secs]
16999.371: [GC 16999.372: [ParNew: 153344K->17023K(153344K), 9.8828360 secs] 6716248K->6655886K(9420160K) icms_dc=7 , 9.8833940 secs] [Times: user=0.42 sys=0.01, real=9.88 secs]
17009.509: [GC 17009.509: [ParNew: 153343K->17023K(153344K), 5.0699960 secs] 6792206K->6727987K(9420160K) icms_dc=7 , 5.0705660 secs] [Times: user=0.55 sys=0.01, real=5.07 secs]
17014.838: [GC 17014.838: [ParNew: 153343K->17023K(153344K), 6.6411750 secs] 6864307K->6790974K(9420160K) icms_dc=7 , 6.6417400 secs] [Times: user=0.37 sys=0.01, real=6.63 secs]
17021.735: [GC 17021.735: [ParNew: 153343K->17024K(153344K), 8.0545970 secs] 6927294K->6856409K(9420160K) icms_dc=7 , 8.0551790 secs] [Times: user=0.34 sys=0.03, real=8.05 secs]
17030.052: [GC 17030.053: [ParNew: 153344K->17023K(153344K), 7.9756730 secs] 6992729K->6922569K(9420160K) icms_dc=7 , 7.9762530 secs] [Times: user=0.34 sys=0.01, real=7.98 secs]
17038.398: [GC 17038.398: [ParNew: 153343K->17022K(153344K), 12.9613300 secs] 7058889K->6990725K(9420160K) icms_dc=7 , 12.9618850 secs] [Times: user=0.39 sys=0.01, real=12.96 secs]
17051.630: [GC 17051.630: [ParNew: 153342K->17022K(153344K), 6.8942910 secs] 7127045K->7059607K(9420160K) icms_dc=7 , 6.8948380 secs] [Times: user=0.56 sys=0.02, real=6.89 secs]
17058.798: [GC 17058.798: [ParNew: 153342K->17024K(153344K), 10.0262190 secs] 7195927K->7126351K(9420160K) icms_dc=7 , 10.0267860 secs] [Times: user=0.37 sys=0.01, real=10.02 secs]
17069.096: [GC 17069.096: [ParNew: 153344K->17023K(153344K), 10.0419500 secs] 7262671K->7195002K(9420160K) icms_dc=7 , 10.0425020 secs] [Times: user=0.40 sys=0.02, real=10.04 secs]
17079.410: [GC 17079.410: [ParNew: 153343K->17022K(153344K), 13.5389040 secs] 7331322K->7264275K(9420160K) icms_dc=7 , 13.5394610 secs] [Times: user=0.30 sys=0.01, real=13.54 secs]
17093.223: [GC 17093.224: [ParNew: 153342K->17023K(153344K), 10.5909450 secs] 7400595K->7330446K(9420160K) icms_dc=7 , 10.5915060 secs] [Times: user=0.33 sys=0.00, real=10.58 secs]
17104.083: [GC 17104.084: [ParNew: 153343K->17024K(153344K), 5.8420210 secs] 7466766K->7392173K(9420160K) icms_dc=7 , 5.8425920 secs] [Times: user=0.57 sys=0.00, real=5.84 secs]
</code></pre>
<p>I've spent hours pouring over the various webpages that describe Java GC tuning, but none have really given me the ability to interpret the logs above and come up with a course of action. Any specific advice based on the logs I've provided would be greatly appreciated.</p>
<p><strong>Update:</strong> Per a question below:</p>
<p>The machine has 16G of RAM, here is the info from top:
Mem: 15483904k total, 15280084k used, 203820k free, 155684k buffers
Swap: 2031608k total, 1347240k used, 684368k free, 3304044k cached</p>
<p>Its a different run, but here is the current top output for the process:</p>
<pre><code> PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
1016 sanity 17 0 10.2g 6.5g 9464 S 1 44.2 10:24.32 java
</code></pre>
<p><strong>Update 2:</strong> Some more detailed logging, this looked like it caused a 400ms delay:</p>
<pre><code>{Heap before GC invocations=1331 (full 1):
par new generation total 153344K, used 153343K [0x00002aaaae200000, 0x00002aaab8860000, 0x00002aaab8860000)
eden space 136320K, 100% used [0x00002aaaae200000, 0x00002aaab6720000, 0x00002aaab6720000)
from space 17024K, 99% used [0x00002aaab77c0000, 0x00002aaab885fff0, 0x00002aaab8860000)
to space 17024K, 0% used [0x00002aaab6720000, 0x00002aaab6720000, 0x00002aaab77c0000)
concurrent mark-sweep generation total 7169664K, used 4258496K [0x00002aaab8860000, 0x00002aac6e200000, 0x00002aac6e200000)
concurrent-mark-sweep perm gen total 21248K, used 13269K [0x00002aac6e200000, 0x00002aac6f6c0000, 0x00002aac73600000)
484.738: [GC 484.738: [ParNew: 153343K->17022K(153344K), 0.3950480 secs] 4411840K->4341689K(7323008K), 0.3954820 secs] [Times: user=0.49 sys=0.07, real=0.40 secs]
Heap after GC invocations=1332 (full 1):
par new generation total 153344K, used 17022K [0x00002aaaae200000, 0x00002aaab8860000, 0x00002aaab8860000)
eden space 136320K, 0% used [0x00002aaaae200000, 0x00002aaaae200000, 0x00002aaab6720000)
from space 17024K, 99% used [0x00002aaab6720000, 0x00002aaab77bfb68, 0x00002aaab77c0000)
to space 17024K, 0% used [0x00002aaab77c0000, 0x00002aaab77c0000, 0x00002aaab8860000)
concurrent mark-sweep generation total 7169664K, used 4324666K [0x00002aaab8860000, 0x00002aac6e200000, 0x00002aac6e200000)
concurrent-mark-sweep perm gen total 21248K, used 13269K [0x00002aac6e200000, 0x00002aac6f6c0000, 0x00002aac73600000)
}
</code></pre>
http://stackoverflow.com/questions/116978/can-anyone-recommend-a-simple-java-web-app-framework13Can anyone recommend a simple Java web-app framework?sanity2008-09-22T19:30:59Z2009-10-27T00:42:03Z
<p>I'm trying to get started on what I'm hoping will be a relatively quick web application in Java, yet most of the frameworks I've tried (Apache Wicket, Liftweb) require so much set-up, configuration, and trying to wrap my head around Maven while getting the whole thing to play nice with Eclipse, that I spent the whole weekend just trying to get to the point where I write my first line of code!</p>
<p>Can anyone recommend a simple Java webapp framework that doesn't involve Maven, hideously complicated directory structures, or countless XML files that must be manually edited?</p>
http://stackoverflow.com/questions/1095650/how-can-i-efficiently-calculate-the-binomial-cumulative-distribution-function2How can I efficiently calculate the binomial cumulative distribution function?sanity2009-07-08T01:13:35Z2009-10-21T12:57:24Z
<p>Let's say that I know the probability of a "success" is P. I run the test N times, and I see S successes. The test is akin to tossing an unevenly weighted coin (perhaps heads is a success, tails is a failure).</p>
<p>I want to know the approximate probability of seeing either S successes, or a number of successes less likely than S successes.</p>
<p>So for example, if P is 0.3, N is 100, and I get 20 successes, I'm looking for the probability of getting 20 <strong>or fewer</strong> successes.</p>
<p>If, on the other hadn, P is 0.3, N is 100, and I get 40 successes, I'm looking for the probability of getting 40 our more successes.</p>
<p>I'm aware that this problem relates to finding the area under a binomial curve, however:</p>
<ol>
<li>My math-fu is not up to the task of translating this knowledge into efficient code</li>
<li>While I understand a binomial curve would give an exact result, I get the impression that it would be inherently inefficient. A fast method to calculate an approximate result would suffice.</li>
</ol>
<p>I should stress that this computation has to be fast, and should ideally be determinable with standard 64 or 128 bit floating point computation.</p>
<p>I'm looking for a function that takes P, S, and N - and returns a probability. As I'm more familiar with code than mathematical notation, I'd prefer that any answers employ pseudo-code or code.</p>
http://stackoverflow.com/questions/1572985/advice-for-embedding-a-java-scripting-language-for-debugging-remote-admin0Advice for embedding a Java scripting language for debugging/remote adminsanity2009-10-15T15:07:04Z2009-10-15T15:26:39Z
<p>I have a fairly sophisticated server-side application which frequently requires me to see what is going on with its internals to debug and fix problems.</p>
<p>I've therefore embedded a Beanshell instance, which I can telnet into (normally over a ssh tunnel), but I'm wondering if there is a better way.</p>
<p>A few limitations:</p>
<ul>
<li>No readline support, which I can get around by using 'rlwrap' on telnet, but its not ideal</li>
<li>Tab-completion of variables and methods would be really nice, but I haven't found a way to do this</li>
<li>Pre-defining variables (to access stuff I need to access frequently) doesn't seem to work, I have to pre-define functions instead</li>
</ul>
<p>All-in-all its rather clunky, although Beanshell has the nice advantage that its a super-set of Java, so nobody needs to learn another programming language to use it.</p>
<p>I'm wondering if others have any experience with facilitating remote debugging/administration via a scripting language (Beanshell or otherwise), perhaps someone has found a better approach.</p>
http://stackoverflow.com/questions/1561860/what-is-javas-lightest-weight-non-concurrent-implementation-of-iterable0What is Java's lightest weight non-concurrent implementation of Iterable?sanity2009-10-13T17:50:49Z2009-10-13T18:07:44Z
<p>I need a class that implements Iterable, and does not need to be safe for concurrent usage. Of the various options, such as LinkedList, HashSet, ArrayList etc, which is the lightest-weight?</p>
<p>To clarify the use-case, I need to be able to add a number of objects to the Iterable (typically 3 or 4), and then something else needs to iterate over it.</p>
http://stackoverflow.com/questions/289370/is-there-a-fast-language-that-supports-portable-continuations5Is there a fast language that supports portable continuations?sanity2008-11-14T06:29:14Z2009-10-13T18:01:49Z
<p>I'm looking for a fast language (ie. a language that can be compiled natively to achieve performance not more than 3 or 4 times slower than C), which supports portable continuations. By this I mean a continuation that can be serialized on one computer, and deserialized on another.</p>
<p>I know that SISC can do this (a Scheme implementation in Java), but its slow. Ditto for Rhino (a Javascript implementation in Java).</p>
http://stackoverflow.com/questions/289370/is-there-a-fast-language-that-supports-portable-continuations/1561922#15619221Answer by sanity for Is there a fast language that supports portable continuations?sanity2009-10-13T18:01:49Z2009-10-13T18:01:49Z<p>Just coming back to this in-case anyone else has the same question. The language I eventually settled on is Scala, which has a compiler plugin in version 2.8 (still a work-in-progress at the time of writing) which supports portable delimited continuations.</p>
http://stackoverflow.com/questions/1534632/algorithm-for-filling-in-texture-in-a-2d-image2Algorithm for "filling in" texture in a 2D imagesanity2009-10-07T22:41:38Z2009-10-09T14:00:24Z
<p>I recall seeing a paper a while back for an algorithm that could automatically and seamlessly "graft" texture from parts of an image onto another part of an image.</p>
<p>The approach was something along the lines of the following:</p>
<p>You'd build up a databases of small squares of pixels (perhaps 8X8) from the parts of the picture that are present. </p>
<p>You'd then pick an empty pixel (the "destination" for the texture graft) to fill in, and look for one of the squares in your database that most closely matches the surrounding pixels. You'd then color the empty pixel according to the color of the corresponding pixel in the square you find. Then you pick another empty pixel and repeat until there are no empty pixels remaining.</p>
<p>Of course, this is only a vague description because I can't find any references to this algorithm to refresh my memory of the details! Can anyone help?</p>
http://stackoverflow.com/questions/1462640/can-anyone-provide-a-clear-explanation-of-why-google-guice-is-useful2Can anyone provide a clear explanation of why Google Guice is useful?sanity2009-09-22T21:12:41Z2009-09-23T04:07:19Z
<p>I've read about Google Guice, and understand the general issues with other approaches to dependency injection, however I haven't yet seen an example of someone using Guice "in practice" where its value becomes clear.</p>
<p>I'm wondering if anyone is aware of any such examples?</p>
http://stackoverflow.com/questions/1444681/does-anyone-know-where-i-can-find-the-orto-javascript-jvm1Does anyone know where I can find the "Orto" Javascript JVM?sanity2009-09-18T13:53:47Z2009-09-18T14:23:49Z
<p>I've read about "Orto", a Java virtual machine that runs on Javascript, but I can't find the actual code, only a few articles about it - like this one: <a href="http://ejohn.org/blog/running-java-in-javascript/" rel="nofollow">http://ejohn.org/blog/running-java-in-javascript/</a></p>
<p>Does anyone know where I can find Orto itself, or something else that can run Java bytecode on Javascript?</p>
<p>Note that the GWT doesn't meet my needs since it is a Java source code to Javascript compiler, not a Java bytecode to Javascript compiler. My source language is Scala, so GWT won't work.</p>
http://stackoverflow.com/questions/1274562/how-do-i-persist-data-to-disk-and-both-randomly-update-it-and-stream-it-efficie1How do I persist data to disk, and both randomly update it, and stream it efficiently back into RAM?sanity2009-08-13T21:04:08Z2009-09-02T17:38:52Z
<p>I need to store up to tens or even hundreds of millions of pieces of data on-disk. Each piece of data contains information like:</p>
<pre><code>id=23425
browser=firefox
ip-address=10.1.1.1
outcome=1.0
</code></pre>
<p>New pieces of data may be added at the rate of up-to 1 per millisecond.</p>
<p>So its a relatively simple set of key-value pairs, where the values can be strings, integers, or floats. Occasionally I may need to update the piece of data with a particular id, changing the flag field from 0 to 1. In other words, I need to be able to do random key lookups by id, and modify the data (actually only the floating point "outcome" field - so I'll never need to modify the size of the value).</p>
<p>The other requirement is that I need to be able to stream this data off disk (the order isn't particularly important) efficiently. This means that the hard disk head should not need to jump around the disk to read the data, rather it should be read in consecutive disk blocks.</p>
<p>I'm writing this in Java.</p>
<p>I've thought about using an embedded database, but DB4O is not an option as it is GPL and the rest of my code is not. I also worry about the efficiency of using an embedded SQL database, given the overhead of translating to and from SQL queries.</p>
<p>Does anyone have any ideas? Might I have to build a custom solution to this (where I'm dealing directly with ByteBuffers, and handling the id lookup)?</p>
http://stackoverflow.com/questions/1274562/how-do-i-persist-data-to-disk-and-both-randomly-update-it-and-stream-it-efficie/1343122#13431220Answer by sanity for How do I persist data to disk, and both randomly update it, and stream it efficiently back into RAM?sanity2009-08-27T18:53:37Z2009-08-27T18:53:37Z<p>In the end I decided to log the data to disk as it comes in, and also keep it in memory where I can update it. After a period of time I write the data out to disk and delete the log.</p>
http://stackoverflow.com/questions/1191639/what-is-the-status-of-coldfusion-today4What is the status of ColdFusion today?sanity2009-07-28T02:23:42Z2009-07-30T01:45:59Z
<p>This may seem like flamebait, but I can assure you it is not intended to be.</p>
<p>Having spent the last 10 years in the web business, I had heard of ColdFusion, but hadn't personally witnessed anyone using it, especially in recent years. My impression was that its heyday had passed.</p>
<p>Recently I started doing business with a company that was building a new website from scratch, and using ColdFusion to do it. My initial impression was that they were using an outdated technology.</p>
<p>Is this perception correct? Is it common to use ColdFusion on new websites these days, and how does it compare to "modern" architectures like Ruby on Rails, Apache Wicket, and so on?</p>
http://stackoverflow.com/questions/1196586/calling-remove-in-foreach-loop-in-java/1197284#11972841Answer by sanity for Calling remove in foreach loop in Javasanity2009-07-28T23:25:51Z2009-07-28T23:25:51Z<p>Those saying that you can't safely remove an item from a collection except through the Iterator aren't quite correct, you can do it safely using one of the concurrent collections such as ConcurrentHashMap.</p>
http://stackoverflow.com/questions/1191626/looking-for-a-fast-compact-streamable-multi-language-strongly-typed-serializa4Looking for a fast, compact, streamable, multi-language, strongly typed serialization formatsanity2009-07-28T02:17:59Z2009-07-28T07:15:56Z
<p>I'm currently using JSON (compressed via gzip) in my Java project, in which I need to store a large number of objects (hundreds of millions) on disk. I have one JSON object per line, and disallow linebreaks within the JSON object. This way I can stream the data off disk line-by-line without having to read the entire file at once.</p>
<p>It turns out that parsing the JSON code (using <a href="http://www.json.org/java/" rel="nofollow">http://www.json.org/java/</a>) is a bigger overhead than either pulling the raw data off disk, or decompressing it (which I do on the fly).</p>
<p>Ideally what I'd like is a strongly-typed serialization format, where I can specify "this object field is a list of strings" (for example), and because the system knows what to expect, it can deserialize it quickly. I can also specify the format just by giving someone else its "type".</p>
<p>It would also need to be cross-platform. I use Java, but work with people using PHP, Python, and other languages.</p>
<p>So, to recap, it should be:</p>
<ul>
<li>Strongly typed</li>
<li>Streamable (ie. read a file bit by bit without having to load it all into RAM at once)</li>
<li>Cross platform (including Java and PHP)</li>
<li>Fast</li>
<li>Free (as in speech)</li>
</ul>
<p>Any pointers?</p>
http://stackoverflow.com/questions/1140346/how-do-i-extend-scala-swing/1182192#11821922Answer by sanity for How do I extend scala.swing?sanity2009-07-25T14:31:02Z2009-07-25T14:31:02Z<p>You might consider Scala's "implicit conversions" mechanism. You could do something like this:</p>
<pre><code>implicit def enrichJInternalFrame(ji : JInternalFrame) =
new RichJInternalFrame(ji)
</code></pre>
<p>You now define a class RichJInternalFrame() which takes a JInternalFrame, and has whatever methods you'd like to extend JInternalFrame with, eg:</p>
<pre><code>class RichJInternalFrame(wrapped : JInternalFrame) {
def showThis = {
wrapped.show()
}
}
</code></pre>
<p>This creates a new method showThis which just calls show on the JInternalFrame. You could now call this method on a JInternalFrame:</p>
<pre><code>val jif = new JInternalFrame()
println(jif.showThis);
</code></pre>
<p>Scala will automatically convert jif into a RichJInternalFrame and let you call this method on it.</p>
http://stackoverflow.com/questions/1133193/efficiently-determining-the-probability-of-a-user-clicking-a-hyperlink0Efficiently determining the probability of a user clicking a hyperlinksanity2009-07-15T18:44:54Z2009-07-25T08:39:27Z
<p>So I have a bunch of hyperlinks on a web page. From past observation I know the probabilities that a user will click on each of these hyperlinks. I can therefore calculate the mean and standard deviation of these probabilities.</p>
<p>I now add a new hyperlink to this page. After a short amount of testing I find that of the 20 users that see this hyperlink, 5 click on it. </p>
<p>Taking into account the known mean and standard deviation of the click-through probabilities on other hyperlinks (this forms a "prior expectation"), how can I efficiently estimate the probability of a user clicking on the new hyperlink?</p>
<p>A naive solution would be to ignore the other probabilities, in which case my estimate is just 5/20 or 0.25 - however this means we are throwing away relevant information, namely our prior expectation of what the click-through probability is.</p>
<p>So I'm looking for a function that looks something like this:</p>
<pre><code>double estimate(double priorMean,
double priorStandardDeviation,
int clicks, int views);
</code></pre>
<p>I'd ask that, since I'm more familiar with code than mathematical notation, that any answers use code or pseudocode in preference to math.</p>
http://stackoverflow.com/questions/1180439/efficiently-predicting-the-likelihood-of-a-user-clicking-a-hyperlink0efficiently predicting the likelihood of a user clicking a hyperlink [closed]sanity2009-07-24T22:14:43Z2009-07-24T23:13:05Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/1133193/determining-the-probability-of-a-user-clicking-a-hyperlink">Determining the probability of a user clicking a hyperlink</a> </p>
</blockquote>
<p>So I have a bunch of hyperlinks on a web page. From past observation I know the probabilities that a user will click on each of these hyperlinks. I can therefore calculate the mean and standard deviation of these probabilities.</p>
<p>I now add a new hyperlink to this page. After a short amount of testing I find that of the 20 users that see this hyperlink, 5 click on it. </p>
<p>Taking into account the known mean and standard deviation of the click-through probabilities on other hyperlinks (this forms a "prior expectation"), how can I efficiently estimate the probability of a user clicking on the new hyperlink?</p>
<p>A naive solution would be to ignore the other probabilities, in which case my estimate is just 5/20 or 0.25 - however this means we are throwing away relevant information, namely our prior expectation of what the click-through probability is.</p>
<p>So I'm looking for a function that looks something like this:</p>
<pre><code>double estimate(double priorMean, double priorStandardDeviation, int clicks, int views);
</code></pre>
<p>I'd ask that, since I'm more familiar with code than mathematical notation, that any answers use code or pseudocode in preference to math.</p>
http://stackoverflow.com/questions/1179406/how-do-you-call-scala-objects-from-java/1179443#11794433Answer by sanity for How do you call Scala objects from Java?sanity2009-07-24T18:45:40Z2009-07-24T18:57:33Z<p>I'd start by using java.util.Timer - not javax.swing.Timer. The swing timer won't work unless you are running your app with a GUI (ie. it won't work if you run it on Linux through a console without a special command line parameter - best avoided).</p>
<p>Setting that aside:</p>
<ol>
<li><p>Be sure, that when you try to run the code, you include scala-library.jar on your classpath.</p></li>
<li><p>Don't forget to start the timer - timer.start()</p></li>
</ol>
<p>This code worked fine for me (the Scala code required no modification):</p>
<pre><code>MyListener myListener = new MyListener();
Timer timer = new Timer(1000, myListener);
timer.start();
Thread.sleep(10000);
</code></pre>
http://stackoverflow.com/questions/957320/need-good-way-to-choose-and-adjust-a-learning-rate2Need good way to choose and adjust a "learning rate"sanity2009-06-05T18:18:26Z2009-07-19T05:20:24Z
<p>In the picture below you can see a learning algorithm trying to learn to produce a desired output (the red line). The learning algorithm is similar to a backward error propagation neural network.</p>
<p>The "learning rate" is a value that controls the size of the adjustments made during the training process. If the learning rate is too high, then the algorithm learns quickly but its predictions jump around a lot during the training process (green line - learning rate of 0.001), if it is lower then the predictions jump around less, but the algorithm takes a lot longer to learn (blue line - learning rate of 0.0001).</p>
<p>The black lines are moving averages.</p>
<p>The question: how can I adapt the learning rate so that it converges to close to the desired output initially, but then slows down so that it can hone in on the correct value?</p>
<p><img src="http://img.skitch.com/20090605-pqpkse1yr1e5r869y6eehmpsym.png" alt="learning rate graph" /></p>
http://stackoverflow.com/questions/1133055/determining-the-probability-of-a-user-clicking-a-hyperlink-1Determining the probability of a user clicking a hyperlink [closed]sanity2009-07-15T18:20:10Z2009-07-15T18:28:11Z
<p>I need to determine the probability that a user will click on a particular hyperlink, so that I can present the hyperlinks that a user is most likely to click on (this is for an application not dissimilar to Reddit or Digg).</p>
<p>Let's say I know that the probability of a randomly selected person will click on a particular hyperlink is X.</p>
<p>Lets say that W is the probability that a randomly selected person is a member of some subset of users (perhaps they are female, or in the 66.90.xx.xx class-B subnet). I randomly select N members of this subgroup, and discover that P of them clicked the link.</p>
<p>How do I efficiently estimate the probability of a randomly selected members of this subgroup clicking on the hyperlink, given X, W, N, and P?</p>
<p>Obviously, for sufficiently large values of N, the answer will be P/N, however what if I don't have a large N?</p>
<p>It is preferable that any suggested algorithms be fast, rather than exact (but they should be more exact than just P/N ;).</p>
<p>Since I am more familiar with code than mathematical notation, I would prefer that pseudocode be used in preference to mathematical notation.</p>
http://stackoverflow.com/questions/1760917/can-i-write-to-the-beanshell-console-from-java/1804490#1804490Comment by sanity on Can I write to the Beanshell console from Java?sanity2009-11-27T01:46:54Z2009-11-27T01:46:54ZHow do I get the console that I'm exposing on telnet, given the code I added to my question?http://stackoverflow.com/questions/1760917/can-i-write-to-the-beanshell-console-from-java/1804490#1804490Comment by sanity on Can I write to the Beanshell console from Java?sanity2009-11-26T16:26:40Z2009-11-26T16:26:40ZI tried console.print() per your suggestion, but this seems to send output to System.out of my application, not the console :-/http://stackoverflow.com/questions/1763710/how-do-i-find-out-what-jar-files-are-actually-used-when-compiling-a-java-project/1763736#1763736Comment by sanity on How do I find out what jar files are actually used when compiling a java project.sanity2009-11-19T14:48:45Z2009-11-19T14:48:45ZIt will tell you which containers your application does depend on, the rest are the useless ones.http://stackoverflow.com/questions/1734097/to-use-or-not-to-use-scala-for-new-java-projects/1734604#1734604Comment by sanity on To use or not to use Scala for new Java projects ?sanity2009-11-19T04:46:51Z2009-11-19T04:46:51ZDaniel, I found a crash while parsing JSON that would have been picked up by even the most rudimentary of unit tests. I do consider that a significant bug in a standard library.http://stackoverflow.com/questions/1734537/trying-to-make-sierpinski-triangle-generator-in-a-functional-programming-styleComment by sanity on Trying to make sierpinski triangle generator in a functional programming stylesanity2009-11-14T15:51:09Z2009-11-14T15:51:09ZSo what is your question?http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1716947#1716947Comment by sanity on Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-14T13:51:17Z2009-11-14T13:51:17ZDirk, fyi it turned out that this is possible - I answered my own question with a link to the source - see belowhttp://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sampleComment by sanity on Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-14T13:50:19Z2009-11-14T13:50:19ZChip, you are correct - the implementation of CurveFit should take a parameter, the degree of the curve. I didn't do it here because in Java interfaces don't have constructors.http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1731576#1731576Comment by sanity on Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-14T13:48:10Z2009-11-14T13:48:10ZOk, I can see how that could have been misinterpreted. I meant fit thousands of curves, each to a separate dataset.http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1731576#1731576Comment by sanity on Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-13T23:16:52Z2009-11-13T23:16:52ZTwo lines are not a curve.http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1731449#1731449Comment by sanity on Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-13T19:51:15Z2009-11-13T19:51:15ZSeveral issues: given the degree of noise in my data, 1000 points is unlikely to be sufficient to find the underlying curve, really I need to use all available data, which may be tens of millions of points. Further, even if 1000 points was sufficient, this is too much state to maintain per-curve in this particular application (since I need to fit potentially hundreds of thousands of curves simultaneously).http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1731372#1731372Comment by sanity on Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-13T19:47:25Z2009-11-13T19:47:25ZYes, I am limiting the number of polynomial coefficients, because I'm trying to find an underlying pattern in data that contains a <b>lot</b> of noise. I've clarified the question accordingly. Also note that using matrices may require more than one pass through the data, and if so, it isn't applicable to my problem.http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1716947#1716947Comment by sanity on Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-13T19:17:52Z2009-11-13T19:17:52ZDirk, there must be some way to do it, even if its a sub-optimal fit.http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1716947#1716947Comment by sanity on Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-13T14:38:19Z2009-11-13T14:38:19ZAnd you can confirm that this requires only a single pass through the data?http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1727473#1727473Comment by sanity on Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-13T14:37:47Z2009-11-13T14:37:47ZUnfortunately I need a better fit than a simple straight line, but if you could generalize this to more flexible curves that would be exactly what I need.http://stackoverflow.com/questions/1716874/is-it-possible-to-do-an-algebraic-curve-fit-with-just-a-single-pass-of-the-sample/1716947#1716947Comment by sanity on Is it possible to do an algebraic curve fit with just a single pass of the sample data?sanity2009-11-11T18:36:11Z2009-11-11T18:36:11ZCan you provide a pointer as to how to do this with more than 1 independent variable? Specifically open source Java code would be useful, but other languages are fine too.