User David Crow - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T13:16:59Zhttp://stackoverflow.com/feeds/user/2783http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/125409/how-do-you-remotely-update-java-applications4How do you remotely update Java applications?David Crow2008-09-24T04:24:53Z2009-06-01T16:03:27Z
<p>We've got a Java server application that runs on a number of computers, all connected to the Internet, some behind firewalls. We need to remotely update the JAR files and startup scripts from a central site, with no noticeable interruption to the app itself.</p>
<p>The process has to be unattended and foolproof (i.e. we can't afford to break the app due to untimely internet outages).</p>
<p>In the past we've used a variety of external scripts and utilities to handle similar tasks, but because they have their own dependencies, the result is harder to maintain and less portable. Before making something new, I want to get some input from the community.</p>
<p>Has anyone found a good solution for this already? Got any ideas or suggestions? Thanks in advance.</p>
<p><strong>EDIT:</strong> Thanks for the suggestions. We've already tried tools such as FTP, rsync, Maven and Ant. They work well for automating conventional server deployments and upgrades, but they are less convenient for updating prepackaged applications and embedded products (this server app is more like the latter). In this case, we would prefer that the entire Java application be self-contained, along with its updater. If that's not possible or not a good approach, we're still open to using build tools, scripts and download clients.</p>
<p><em>Just to clarify: This app is a server, but not for web applications (no webapp containers or WAR files here). It's just an autonomous Java program.</em></p>
http://stackoverflow.com/questions/47177/how-to-monitor-the-computers-cpu-memory-and-disk-usage-in-java13How to monitor the computer's cpu, memory, and disk usage in Java?David Crow2008-09-06T01:44:06Z2009-05-07T15:04:44Z
<p>I would like to monitor the following system information in Java:</p>
<ul>
<li>current cpu usage** (percent)</li>
<li>available memory* (free/total)</li>
<li><p>available disk space (free/total)</p>
<p>*note that I mean overall memory available to the whole system, not just the JVM</p></li>
</ul>
<p>I'm looking for a cross-platform solution (Linux, Mac, Windows) that doesn't rely on my own code calling external programs or using JNI. Although these are viable options, I would prefer not to maintain OS-specific code myself if someone already has a better solution.</p>
<p>If there's a free library out there that does this in a reliable, cross-platform manner, that would be great (even if it makes external calls or uses native code itself).</p>
<p>Any suggestions are much appreciated.</p>
<p><strong>**EDIT:</strong> To clarify, I would like to get the current CPU usage for the whole system, not just the Java process(es).</p>
<p><strong>EDIT:</strong> The SIGAR API provides all the functionality I'm looking for in one package, so it's the best answer to my question so far. However, due it being licensed under the <a href="http://support.hyperic.com/display/SIGAR/Home#Home-license" rel="nofollow">GPL</a>, I cannot use it for my original purpose (a closed source, commercial product). It's possible that Hyperic may license SIGAR for commercial use, but I haven't looked into it. For my GPL projects, I will definitely consider SIGAR in the future.</p>
<p>For my current needs, I'm leaning towards the following:</p>
<ul>
<li>for cpu usage, <a href="https://java.sun.com/javase/6/docs/api/java/lang/management/OperatingSystemMXBean.html#getSystemLoadAverage()" rel="nofollow">OperatingSystemMXBean.getSystemLoadAverage()</a> / <a href="https://java.sun.com/javase/6/docs/api/java/lang/management/OperatingSystemMXBean.html#getAvailableProcessors()" rel="nofollow">OperatingSystemMXBean.getAvailableProcessors()</a> (load average per cpu)</li>
<li>for memory, <a href="http://java.sun.com/javase/6/docs/jre/api/management/extension/com/sun/management/OperatingSystemMXBean.html#getTotalPhysicalMemorySize()" rel="nofollow">OperatingSystemMXBean.getTotalPhysicalMemorySize()</a> and <a href="http://java.sun.com/javase/6/docs/jre/api/management/extension/com/sun/management/OperatingSystemMXBean.html#getFreePhysicalMemorySize()" rel="nofollow">OperatingSystemMXBean.getFreePhysicalMemorySize()</a></li>
<li>for disk space, <a href="http://java.sun.com/javase/6/docs/api/java/io/File.html#getTotalSpace()" rel="nofollow">File.getTotalSpace()</a> and <a href="http://java.sun.com/javase/6/docs/api/java/io/File.html#getUsableSpace()" rel="nofollow">File.getUsableSpace()</a></li>
</ul>
<p><strong>Limitations:</strong> The getSystemLoadAverage() and disk space querying methods are only available under Java 6. Also, some JMX functionality may not be available to all platforms (i.e. it's been reported that getSystemLoadAverage() returns -1 on Windows).</p>
http://stackoverflow.com/questions/486460/how-to-serialize-an-exception-object-in-c/486484#4864846Answer by David Crow for How to serialize an Exception object in C#?David Crow2009-01-28T04:29:37Z2009-01-28T04:29:37Z<p>Create a custom Exception class with the <strong>[Serializable()]</strong> attribute. Here's an example taken from the <a href="http://msdn.microsoft.com/en-us/library/ms173163.aspx" rel="nofollow">MSDN</a>:</p>
<pre><code>[Serializable()]
public class InvalidDepartmentException : System.Exception
{
public InvalidDepartmentException() { }
public InvalidDepartmentException(string message) { }
public InvalidDepartmentException(string message, System.Exception inner) { }
// Constructor needed for serialization
// when exception propagates from a remoting server to the client.
protected InvalidDepartmentException(System.Runtime.Serialization.SerializationInfo info,
System.Runtime.Serialization.StreamingContext context) { }
}
</code></pre>
http://stackoverflow.com/questions/482393/how-to-be-effective-as-a-part-time-programmer/482453#4824534Answer by David Crow for How to be effective as a part-time programmer?David Crow2009-01-27T06:12:11Z2009-01-27T06:12:11Z<p>Take on smaller, short-term projects. Or break up larger projects into a series of small ones, and try to limit the scope of each deliverable. Solve the hard problems one at a time, rather than building up a lot of parallel, ongoing work.</p>
<p>Some years ago, I was doing part-time software development as a consultant, and I found it very satisfying as long as I kept the task queue short and expectations manageable. By pacing my work (plus a little over-estimation on delivery time) and not worrying too much about the “big picture” (left that for the full-time people), I kept myself sane and productive. I had more balanced time for hobbies and home life as a result.</p>
http://stackoverflow.com/questions/478296/nhibernate-changing-sub-types/478524#4785243Answer by David Crow for NHibernate - Changing sub-typesDavid Crow2009-01-25T23:32:22Z2009-01-25T23:32:22Z<p>Short answer is yes, you can change the discriminator value for the particular row(s) using <a href="http://www.hibernate.org/hib_docs/nhibernate/1.2/reference/en/html/querysql.html" rel="nofollow">native SQL</a>.</p>
<p>However, I don't think NHibernate is intended to work this way, since the discriminator is generally "invisible" to the Java layer, where its value is supposed to be set initially according to the class of the persisted object and never changed.</p>
<p>I recommend looking into a cleaner approach. From the standpoint of the object model, you're trying to convert a superclass object into one of its subclass types while not changing the identity of its persisted instance, and that's where the conflict is (the converted object isn't really supposed to be the same thing). Two alternative approaches are:</p>
<ul>
<li>Create a new instance of TierOneCustomer based on the information in the original Customer object, then delete the original object. If you were relying on the Customer's Primary Key for retrieval, you'll need to take note of the new PK.</li>
</ul>
<p>or</p>
<ul>
<li>Change your approach so the object type (discriminator) doesn't need to change. Instead of relying on a subclass to distinguish TierOneCustomer from Customer, you can use a property that you can modify freely at any time, i.e. Customer.Tier = 1.</li>
</ul>
<p>Here are some related discussions on the Hibernate Forums that may be of interest:</p>
<ol>
<li><a href="http://forum.hibernate.org/viewtopic.php?t=946531&highlight=" rel="nofollow">Can we update the discriminator column in Hibernate</a></li>
<li><a href="http://forum.hibernate.org/viewtopic.php?p=2378169" rel="nofollow">Table-per-Class Problem: Discriminator and Property</a></li>
<li><a href="http://forums.hibernate.org/viewtopic.php?p=2291319&sid=e61f05264d60d0ed3040ed7a76dbad73" rel="nofollow">Converting a persisted instance into a subclass</a></li>
</ol>
http://stackoverflow.com/questions/477146/nhibernate-elt-field/477180#4771802Answer by David Crow for NHibernate elt fieldDavid Crow2009-01-25T04:53:55Z2009-01-25T04:53:55Z<p>The "elt" field is the foreign key to the element in the many-to-many mapping. In the join table, you should see two foreign key columns, id (for the parent) and elt (for the element). You can use different names if you like; these are defaults.</p>
http://stackoverflow.com/questions/476939/jython-support-in-editors/477150#4771502Answer by David Crow for Jython support in editors?David Crow2009-01-25T04:25:43Z2009-01-25T04:25:43Z<p>As a long-time fan of the <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> IDE, I've used the <a href="http://pydev.sourceforge.net/" rel="nofollow">Pydev</a> plugin when working with Python and Jython projects.</p>
<p>You get code completion, syntax highlighting, refactoring, outline view, debugging tools, and all the other features you'd expect out of a top-notch editor.</p>
http://stackoverflow.com/questions/475037/load-a-context-servlet-at-startup-in-tomcat-without-changing-deployment-descrip/475304#4753042Answer by David Crow for Load a context/servlet at startup in Tomcat *WITHOUT* changing deployment descriptor (web.xml)David Crow2009-01-24T01:40:09Z2009-01-24T01:40:09Z<p>This is tricky. You're limited by the conventions of Tomcat and other containers, so there's no straightforward solution.</p>
<p>You could use the global web.xml to initialize specific servlets and/or JSPs from the .war using the <code><load-on-startup></code> element. This is the only way I know of to force load-on-startup without modifying the .war file or the WEB-INF/web.xml inside it. Note that you may need to initialize the servlets and JSPs using different names/paths to avoid conflicts.</p>
<p>Of course, doing it that way means you have to know enough about the .war to initialize the app, which might mean looking at its web.xml to determine what to load. This might defeat the purpose, since it's not exactly a hands-off approach to loading just any .war on startup. But with a little extra work, you could write a script that extracts the necessary information from the .war file's web.xml and adds it to your global web.xml automatically.</p>
<p>Now, if you're willing to consider script writing to modify the .war file, you could just write a script that extracts WEB-INF/web.xml from the .war file, adds <code><load-on-startup></code> child elements to all the <code><servlet></code> elements, and updates the .war with the new copy. I'm not sure what environment you're using to run Tomcat, but here's an example bash script that would do the job:</p>
<pre><code>#!/bin/sh
TEMPDIR=/tmp/temp$$
WARFILE=/path-to-tomcat/webapps/foo.war
mkdir -p $TEMPDIR/WEB-INF
pushd $TEMPDIR
unzip -qq -c $WARFILE WEB-INF/web.xml \
| sed 's#</servlet>.*#<load-on-startup>99</load-on-startup></servlet>#' \
> WEB-INF/web.xml
zip -f $WARFILE WEB-INF/web.xml
popd
rm -rf $TEMPDIR
</code></pre>
<p>You could run this script or something similar as part of your Tomcat startup. Hope this helps.</p>
http://stackoverflow.com/questions/456415/photo-extraction-from-pdf-file/456423#4564231Answer by David Crow for Photo extraction from pdf fileDavid Crow2009-01-19T03:09:17Z2009-01-19T03:09:17Z<p>There are free utilities that can help you do this. For example, a quick Google search turned up <a href="http://somepdf.com/some-pdf-image-extract.html" rel="nofollow">this one</a>.</p>
http://stackoverflow.com/questions/456274/altering-iframe-attributes-from-within-the-iframe-source-is-it-possible/456362#4563620Answer by David Crow for Altering IFrame attributes from within the IFrame source. Is it possible?David Crow2009-01-19T02:19:22Z2009-01-19T02:19:22Z<p>If I understand you correctly, you're saying you want your 404 page to trigger a collapse of the iframe when it loads inside it. The easiest way to do this is to create a function in the parent page, and then call it from the 404 when it loads.</p>
<p>For example, if your iframe has the id "advertFrame" you could add the following javascript function to the parent page:</p>
<pre><code>function hideAdvertFrame() {
var advertFrame = document.getElementById("advertFrame");
advertFrame.style.height = 0;
advertFrame.style.width = 0;
}
</code></pre>
<p>Then in the 404 page, you can call the function immediately when it loads:</p>
<pre><code><body onload="window.parent.hideAdvertFrame();">
</code></pre>
<p>That said, I think you still might want to consider other options besides cross frame scripting that are less prone to security holes. Maybe your parent page can use AJAX to check if the adblock will have a valid URL before it loads, and then dynamically add it to the page once certain.</p>
http://stackoverflow.com/questions/455887/alternatives-to-id-selector/455995#4559952Answer by David Crow for Alternatives to ID Selector?David Crow2009-01-18T22:05:55Z2009-01-18T22:05:55Z<p>Check out <a href="http://open-selector.com/" rel="nofollow">Open-selector</a>. It was created as an alternative to ID Selector.</p>
<p>From the documentation:</p>
<blockquote>
<p>Open-selector is a piece of Javascript
code that will take your existing
OpenID login textbox and change it
into a Provider selection list, that
the user can complement with their
username to build their OpenID URL.</p>
</blockquote>
<p>You have total control over Open-selector, including the ability to add your own providers to the list.</p>
http://stackoverflow.com/questions/454321/how-to-do-a-presentation-for-your-co-workers-containing-lots-of-code/454341#4543411Answer by David Crow for How to do a presentation for your co-workers containing lots of code?David Crow2009-01-18T00:01:59Z2009-01-18T00:01:59Z<p>If you want your audience to see a lot of code snippets, especially lengthy ones, you could print them out as handouts or provide them as notes in PDF or text files (people can follow along on their laptops).</p>
<p>Actual presentation slides should contain the smallest amount of text (including code) necessary to convey your ideas. If there's a lot to read from a distance, your audience will get tired after awhile and might have trouble following along. Let people read the full code sections on their own laptops or handouts, while calling attention to just the critical parts in your presentation slides or script.</p>
http://stackoverflow.com/questions/453776/how-to-java-listening-for-events-captured-by-c-thread/453789#4537891Answer by David Crow for How to: Java listening for events captured by C thread.David Crow2009-01-17T18:38:50Z2009-01-17T18:38:50Z<p>You can have the native code call a Java method to receive the event. There are several articles on JNI that can help you out, such as <a href="http://www.codeproject.com/KB/cpp/CJniJava.aspx" rel="nofollow">How to Call Java functions from C Using JNI</a>.</p>
http://stackoverflow.com/questions/453607/best-spell-checking-api-for-java/453637#4536372Answer by David Crow for Best spell checking api for JavaDavid Crow2009-01-17T17:23:58Z2009-01-17T17:23:58Z<p><a href="http://www.wintertreesoftware.com/spell-check/java/index.html" rel="nofollow">Sentry Spell Checker</a> seems interesting. It supports dialog-based spell checking and as-you-type highlighting of misspelled words. It's a commercial product ($399 for the engine), but there are no royalty fees.</p>
<p><a href="http://jazzy.sourceforge.net/" rel="nofollow">Jazzy</a> is a simpler, open source alternative. It's been around for awhile, but doesn't seem to be under active development anymore. On the bright side, it is free (LGPL license).</p>
<p>I would look at Jazzy first to see if it fits your needs. There's a demo applet <a href="http://jazzy.sourceforge.net/demo.html" rel="nofollow">here</a> where you can try it out.</p>
http://stackoverflow.com/questions/453529/what-are-the-signs-of-talent-in-programming/453574#4535743Answer by David Crow for What are the signs of talent in programmingDavid Crow2009-01-17T16:50:33Z2009-01-17T16:50:33Z<p>Talented programmers enjoy problem solving (with or without code) and take pride in improving their skills.</p>
<p>The best programmers are also willing to act as a resource for others, sharing their knowledge while being patient with the people they help.</p>
http://stackoverflow.com/questions/453437/open-source-libraries-for-rendering-vector-graphics-formats-through-java2d/453501#4535011Answer by David Crow for Open Source Libraries for Rendering Vector Graphics Formats Through Java2D?David Crow2009-01-17T16:05:14Z2009-01-17T16:05:14Z<p>Batik and iText are both good libraries. I've also tried <a href="http://incubator.apache.org/pdfbox/" rel="nofollow">Apache PDFBox</a>, but I don't think it has support for Java2D.</p>
<p>Regarding iText, although it has extensive capabilities, you can still use it for simple Java2D rendering tasks by way of the <a href="http://www.1t3xt.info/api/com/lowagie/text/pdf/PdfGraphics2D.html" rel="nofollow">PdfGraphics2D</a> class. For a short example of how straightforward this is, see this <a href="http://itextdocs.lowagie.com/tutorial/directcontent/graphics2D/index.php" rel="nofollow">link</a>.</p>
<p>Here are some other resources that you might want to explore:</p>
<ul>
<li><a href="http://www.jibble.org/epsgraphics/" rel="nofollow">EpsGraphics2D</a> (EPS)</li>
<li><a href="http://xmlgraphics.apache.org/fop/" rel="nofollow">Apache FOP</a> (PDF, PS, SVG with Batik)</li>
</ul>
http://stackoverflow.com/questions/390853/access-control-to-web-service/390968#3909682Answer by David Crow for Access control to web serviceDavid Crow2008-12-24T07:28:37Z2008-12-24T07:28:37Z<p>You can use standard <a href="http://en.wikipedia.org/wiki/Basic_access_authentication" rel="nofollow">HTTP Authentication</a> to control which applications have access to your web service.</p>
<p>Credentials are passed in the <strong>Authorization</strong> header with each request. Every web service client (i.e. //web1/app1) should have its own credentials, so if //web1/app2 tried to connect to the web service without providing recognized credentials, it would be denied access.</p>
<p>I recommend using SSL to encrypt all traffic, so that authentication information and other sensitive data is secure.</p>
<p>Here are a few articles that may be helpful:</p>
<ul>
<li><a href="http://msdn.microsoft.com/en-us/library/ms996415.aspx#httpsecurity_topic3" rel="nofollow">HTTP Security and ASP.NET Web Services (see Authentication section)</a></li>
<li><a href="http://progtutorials.tripod.com/Authen.htm" rel="nofollow">Authentication in ASP.NET Web Services</a></li>
</ul>
<p>Good luck!</p>
http://stackoverflow.com/questions/387272/unit-testing-in-c/387297#3872977Answer by David Crow for Unit testing in C++David Crow2008-12-22T20:40:59Z2008-12-22T20:40:59Z<p>Here are similar questions that you may want to look at:</p>
<ul>
<li><p><a href="http://stackoverflow.com/questions/91384/unit-testing-for-c-code-tools-and-methodology">http://stackoverflow.com/questions/91384/unit-testing-for-c-code-tools-and-methodology</a></p></li>
<li><p><a href="http://stackoverflow.com/questions/87794/c-unit-testing-framework">http://stackoverflow.com/questions/87794/c-unit-testing-framework</a></p></li>
</ul>
<p>I recommend you check out <a href="http://code.google.com/p/googletest/" rel="nofollow">Google's unit testing framework</a> in addition to CppUnit.</p>
http://stackoverflow.com/questions/328202/how-do-i-override-the-generationtype-strategy-using-hibernate-jpa-annotations/328225#3282251Answer by David Crow for How do I override the GenerationType strategy using Hibernate/JPA annotations?David Crow2008-11-30T00:03:14Z2008-11-30T00:03:14Z<p>In the code above, it looks like you're mixing annotations on fields (superclass) and methods (subclass). The Hibernate <a href="http://www.hibernate.org/hib_docs/annotations/reference/en/html_single/#entity-mapping-entity" rel="nofollow">reference documentation</a> recommends avoiding this, and I suspect it might be causing the problem. In my experience with Hibernate, it's safer and more flexible to annotate getter/setter methods instead of fields anyway, so I suggest sticking to that design if you can.</p>
<p>As a solution to your problem, I recommend removing the <strong>id</strong> field from your Base superclass altogether. Instead, move that field into the subclasses, and create abstract <strong>getId()</strong> and <strong>setId()</strong> methods in your Base class. Then override/implement the <strong>getId()</strong> and <strong>setId()</strong> methods in your subclasses and annotate the getters with the desired generation strategy.</p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/325504/well-written-java-open-source-projects-for-learning/328128#3281282Answer by David Crow for well written java open source projects (for learning)?David Crow2008-11-29T22:53:51Z2008-11-29T22:53:51Z<p>I'm using <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a> for several projects, and I've been through its source code on a few occasions. It has a clean and organized design that makes it easy to understand and extend.</p>
<p>Because it focuses on the serialization/deserialization of plain old Java objects, it covers a lot of key integrations that any Java programmer would benefit from knowing:</p>
<ul>
<li>XML</li>
<li>Reflection</li>
<li>Java Persistence API</li>
<li>Annotations</li>
<li>JSON</li>
</ul>
http://stackoverflow.com/questions/328080/calling-super-classes-method-java/328094#3280942Answer by David Crow for Calling super classes method, JavaDavid Crow2008-11-29T22:28:30Z2008-11-29T22:28:30Z<p>I think you have it backwards: <strong>java.util.Arrays <a href="http://java.sun.com/javase/6/docs/api/java/util/Arrays.html" rel="nofollow">extends</a> java.lang.Object</strong></p>
<p>You could import java.util.Arrays if you want to call its static methods without the fully-qualified class name, i.e. <em>Arrays.sort(myList)</em> instead of <em>java.util.Arrays.sort(myList)</em>.</p>
http://stackoverflow.com/questions/322907/insert-a-dependent-jar-into-an-installer-jar/328058#3280581Answer by David Crow for Insert a dependent jar into an installer jarDavid Crow2008-11-29T21:55:45Z2008-11-29T21:55:45Z<p>You can build the jar using the <a href="http://maven.apache.org/plugins/maven-assembly-plugin/" rel="nofollow">Maven Assembly Plugin</a>.</p>
<p>First, you'll need to add some information to your pom.xml <strong>plugins</strong> section to make the resulting jar executable:</p>
<pre><code><plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>com.example.installer.Installer</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</code></pre>
<p><br/>
I recommend using a separate <a href="http://maven.apache.org/plugins/maven-assembly-plugin/examples/single/using-components.html" rel="nofollow">assembly descriptor</a> to build the actual installer jar. Here's an example:</p>
<pre><code><assembly>
<id>installer</id>
<formats>
<format>jar</format>
</formats>
<baseDirectory></baseDirectory>
<dependencySets>
<dependencySet>
<outputDirectory>/</outputDirectory>
<includes>
<!-- this references your installer sub-project -->
<include>com.example:installer</include>
</includes>
<!-- must be unpacked inside the installer jar so it can be executed -->
<unpack>true</unpack>
<scope>runtime</scope>
</dependencySet>
<dependencySet>
<outputDirectory>/</outputDirectory>
<includes>
<!-- this references your server.war and any other dependencies -->
<include>com.example:server</include>
</includes>
<unpack>false</unpack>
<scope>runtime</scope>
</dependencySet>
</dependencySets>
</assembly>
</code></pre>
<p><br/>
If you've saved the assembly descriptor as "installer.xml" you can build your jar by running the assembly like this:</p>
<blockquote>
<p>mvn clean package assembly:single -Ddescriptor=installer.xml</p>
</blockquote>
<p><br/>
Hope this helps. Here are some additional links that you might find useful:</p>
<ul>
<li><a href="http://maven.apache.org/plugins/maven-assembly-plugin/usage.html" rel="nofollow">Maven Assembly Plugin - Configuration and Usage</a></li>
<li><a href="http://www.sleberknight.com/blog/sleberkn/entry/20080618" rel="nofollow">Creating Executable JARs using the Maven Assembly Plugin</a></li>
<li><a href="http://left.subtree.org/2008/01/24/creating-executable-jars-with-maven/" rel="nofollow">Creating executable jars with Maven</a></li>
</ul>
http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm/177217#177217-1Answer by David Crow for Algorithm to determine if array contains n...n+m?David Crow2008-10-07T04:12:04Z2008-10-07T05:05:55Z<p>It seems like we could check for duplicates by multiplying all the numbers n...n+m together, and then comparing that value to the expected product of a sequence with no duplicates <strong>m!/(n-1)!</strong> (note that this assumes it is impossible for a sequence to pass both the expected sum test <strong>and</strong> the expected product test).</p>
<p>So adding to <a href="http://stackoverflow.com/revisions/viewmarkup/224981">hazzen's pseudo-code</a>, we have:</p>
<pre><code>is_range(int[] nums, int n, int m) {
sum_to_m := (m * (m + 1)) / 2
expected_sum := sum_to_m - (n * (n - 1)) / 2
real_sum := sum(nums)
expected_product := m! / (n - 1)!
real_product := product(nums)
return ((real_sum == expected_sum) && (expected_product == real_product))
</code></pre>
<p><br/>
<strong>EDIT:</strong> Here's my solution in Java using the Sum of Squares to check for duplicates. It also handles any range (including negative numbers) by shifting the sequence to start at 1.</p>
<pre><code>// low must be less than high
public boolean isSequence(int[] nums, int low, int high) {
int shift = 1 - low;
low += shift;
high += shift;
int sum = 0;
int sumSquares = 0;
for (int i = 0; i < nums.length; i++) {
int num = nums[i] + shift;
if (num < low)
return false;
else if (num > high)
return false;
sum += num;
sumSquares += num * num;
}
int expectedSum = (high * (high + 1)) / 2;
if (sum != expectedSum)
return false;
int expectedSumSquares = high * (high + 1) * (2 * high + 1) / 6;
if (sumSquares != expectedSumSquares)
return false;
return true;
}
</code></pre>
http://stackoverflow.com/questions/173017/why-log4j-cannot-generate-backup-files/173053#1730532Answer by David Crow for Why log4j cannot generate backup files?David Crow2008-10-06T02:25:51Z2008-10-06T02:25:51Z<p>Is your log4j.properties file in the classpath when executed by the scheduler? I had a similar problem in the past, and it was due to the configuration file not being in the classpath.</p>
<p>You can include it in your process.jar file, or specify its location like this:</p>
<blockquote>
<p>java
-Dlog4j.configuration=file:///path/to/log4j.properties
-jar process.jar one</p>
</blockquote>
http://stackoverflow.com/questions/172668/full-time-programmer-or-software-development-consultant/172714#1727145Answer by David Crow for Full-time programmer or software development consultant?David Crow2008-10-05T21:40:41Z2008-10-05T21:40:41Z<p>As a consultant you usually get paid better, but there tends to be less job stability (you need to be prepared to change clients, sometimes unexpectedly). But it's a great way to pick up diverse experience.</p>
<p>For me, the biggest downside to being a consultant was never having a true "sense of ownership" in my work. After completing an exciting project, I may never work on it again or share in its success in the market.</p>
<p>On the other hand, full-time employees with good stock options tend to feel more long-term passion about their work, since they have a stake in its future.</p>
http://stackoverflow.com/questions/170962/nhibernate-difference-between-session-merge-and-session-saveorupdate/171017#17101713Answer by David Crow for NHibernate - Difference between session.Merge and session.SaveOrUpdate?David Crow2008-10-04T21:20:09Z2008-10-04T21:36:17Z<p>This is from section <a href="http://www.hibernate.org/hib_docs/reference/en/html_single/#objectstate-saveorupdate" rel="nofollow">10.7. Automatic state detection</a> of the Hibernate Reference Documentation:</p>
<blockquote>
<p>saveOrUpdate() does the following:</p>
<ul>
<li>if the object is already persistent in this session, do nothing</li>
<li>if another object associated with the session has the same identifier,
throw an exception</li>
<li>if the object has no identifier property, save() it</li>
<li>if the object's identifier has the value assigned to a newly
instantiated object, save() it</li>
<li>if the object is versioned (by a <version> or <timestamp>), and the
version property value is the same value assigned to a newly
instantiated object, save() it</li>
<li>otherwise update() the object</li>
</ul>
<p>and merge() is very different:</p>
<ul>
<li>if there is a persistent instance with the same identifier currently
associated with the session, copy the state of the given object onto
the persistent instance</li>
<li>if there is no persistent instance currently associated with the
session, try to load it from the database, or create a new persistent
instance</li>
<li>the persistent instance is returned</li>
<li>the given instance does not become associated with the session, it
remains detached</li>
</ul>
</blockquote>
<p>You should use Merge() if you are trying to update objects that were at one point detached from the session, especially if there might be persistent instances of those objects currently associated with the session. Otherwise, using SaveOrUpdate() in that case would result in an exception.</p>
http://stackoverflow.com/questions/163565/what-is-the-best-book-or-piece-of-documentation-on-java-swing/163612#1636122Answer by David Crow for What is the best book or piece of documentation on Java Swing?David Crow2008-10-02T17:42:56Z2008-10-02T17:42:56Z<p><a href="http://rads.stackoverflow.com/amzn/click/193011088X" rel="nofollow">Swing, Second Edition</a></p>
<p>I had the first edition of this book back in 2001, and it was great.</p>
http://stackoverflow.com/questions/147626/regexp-matching-of-list-of-quotes-strings-unquoted/147667#1476674Answer by David Crow for Regexp matching of list of quotes strings - unquotedDavid Crow2008-09-29T05:55:10Z2008-09-29T05:55:10Z<p>This seems to work:</p>
<pre><code>var test = '"the quick" "brown fox" "jumps over" "the lazy dog"';
var result = test.match(/[^"]+(?=(" ")|"$)/g);
alert(result);
</code></pre>
<p>Note: This doesn't match empty elements (i.e. ""). Also, it won't work in browsers that don't support JavaScript 1.5 (lookaheads are a 1.5 feature).</p>
<p>See <a href="http://www.javascriptkit.com/javatutors/redev2.shtml" rel="nofollow">http://www.javascriptkit.com/javatutors/redev2.shtml</a> for more info.</p>
http://stackoverflow.com/questions/130095/most-useful-free-java-libraries/130999#13099914Answer by David Crow for Most useful free Java libraries?David Crow2008-09-25T01:30:24Z2008-09-25T01:30:24Z<p>These two are excellent:</p>
<p><a href="http://mina.apache.org/" rel="nofollow">Apache MINA</a> - Well-designed, high-performance, network application framework using Java NIO</p>
<p><a href="http://www.mortbay.org/jetty/" rel="nofollow">Jetty</a> - Easy-to-use, full-featured, embeddable web server and webapp container</p>
http://stackoverflow.com/questions/124150/how-to-change-system-locale-in-windows-2003-using-command-line/124316#1243161Answer by David Crow for How to change System Locale in Windows 2003 using command line.David Crow2008-09-23T22:28:15Z2008-09-23T22:28:15Z<p>I don't know of a command line utility that strictly does this, but you could use a small bit of <a href="http://en.wikipedia.org/wiki/VBScript" rel="nofollow">VBScript</a> to change the associated registry values. It's not as straightforward as changing the locale in the General tab of the Regional and Language Options dialog, but it works.</p>
<p>For example, to change the settings to match "English (United Kingdom)" you can use something like this:</p>
<pre><code>Dim WSHShell
Set WSHShell = CreateObject("Wscript.Shell")
WSHShell.RegWrite "HKCU\Control Panel\International\iCountry", "44", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iCurrDigits", "2", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iCurrency", "0", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iDate", "1", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iDigits", "2", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iLZero", "1", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iMeasure", "0", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iNegCurr", "1", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iTime", "1", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iTLZero", "1", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\Locale", "00000809", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\s1159", "AM", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\s2359", "PM", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sCountry", "United Kingdom", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sCurrency", "£", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sDate", "/", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sDecimal", ".", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sLanguage", "ENG", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sList", ",", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sLongDate", "dd MMMM yyyy", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sShortDate", "dd/MM/yyyy", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sThousand", ",", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sTime", ":", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\DefaultBlindDialFlag", "00", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sTimeFormat", "HH:mm:ss", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iTimePrefix", "0", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sMonDecimalSep", ".", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sMonThousandSep", ",", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iNegNumber", "1", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sNativeDigits", "0123456789", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\NumShape", "1", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iCalendarType", "1", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iFirstDayOfWeek", "0", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\iFirstWeekOfYear", "0", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sGrouping", "3;0", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sMonGrouping", "3;0", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sPositiveSign", "", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\sNegativeSign", "-", "REG_SZ"
WSHShell.RegWrite "HKCU\Control Panel\International\Geo\Nation", "244", "REG_SZ"
</code></pre>
http://stackoverflow.com/questions/475281/what-project-are-you-most-proud-ofComment by David Crow on What project are you most proud of ?David Crow2009-01-24T01:53:14Z2009-01-24T01:53:14ZInteresting question, but it should be wiki.http://stackoverflow.com/questions/455887/alternatives-to-id-selector/455995#455995Comment by David Crow on Alternatives to ID Selector?David Crow2009-01-18T22:59:06Z2009-01-18T22:59:06ZI haven't tried installing it myself, but the demo at <a href="http://open-selector.com/" rel="nofollow">open-selector.com</a> works fine in Firefox and Safari. Can you describe the problem you're experiencing? Alternatively, you can file an issue at <a href="http://code.google.com/p/open-selector/issues/list" rel="nofollow">code.google.com/p/open-selector/…</a> and request help from the author.http://stackoverflow.com/questions/453776/how-to-java-listening-for-events-captured-by-c-thread/453789#453789Comment by David Crow on How to: Java listening for events captured by C thread.David Crow2009-01-18T16:46:41Z2009-01-18T16:46:41ZAssuming the native code is the entry point for your app, then it would launch the JVM and execute the main method in your Java program. You could have this main method start a single, separate Java thread, which runs in the background and receives events through methods called by the C API.http://stackoverflow.com/questions/453802/make-md5-of-all-words-in-wordlistComment by David Crow on Make MD5 of All Words in WordlistDavid Crow2009-01-17T18:50:49Z2009-01-17T18:50:49ZOperating system, programming language?http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm/177217#177217Comment by David Crow on Algorithm to determine if array contains n...n+m?David Crow2008-10-07T07:07:47Z2008-10-07T07:07:47ZOh well, so much for using the sum of squares. :p I see a number of counterexamples have been provided above. Does anyone have any other mathematical tricks we haven't tried yet?http://stackoverflow.com/questions/177118/algorithm-to-determine-if-array-contains-n-nm/177217#177217Comment by David Crow on Algorithm to determine if array contains n...n+m?David Crow2008-10-07T04:45:34Z2008-10-07T04:45:34ZYou're right, hazzen, this doesn't scale very well. Maybe instead of factorial, if we use the sum of squares of the first n natural numbers n(n + 1)(2n + 1)/6, that would work better.http://stackoverflow.com/questions/125409/how-do-you-remotely-update-java-applications/125531#125531Comment by David Crow on How do you remotely update Java applications?David Crow2008-09-24T05:32:32Z2008-09-24T05:32:32ZYes, your assumption is correct--we're not using WAR deployment. The app is a server, but not for web applications. Thanks for the info on JNLP. I'm now looking into it...http://stackoverflow.com/questions/125409/how-do-you-remotely-update-java-applications/125428#125428Comment by David Crow on How do you remotely update Java applications?David Crow2008-09-24T04:45:12Z2008-09-24T04:45:12ZThanks, but those solutions are geared towards web applications. This is more like a router or media server. We've also tried most of those suggestions already (automated FTP and rsync). I'm currently looking for something that isn't dependent on external programs or build tools.http://stackoverflow.com/questions/124150/how-to-change-system-locale-in-windows-2003-using-command-line/124316#124316Comment by David Crow on How to change System Locale in Windows 2003 using command line.David Crow2008-09-23T22:45:05Z2008-09-23T22:45:05ZNote that the user may have to log off/on again for the change to take effect.http://stackoverflow.com/questions/109491/problems-with-accessing-flashvars-via-parameters-in-as3/109623#109623Comment by David Crow on Problems with accessing FlashVars via parameters in AS3David Crow2008-09-21T20:17:06Z2008-09-21T20:17:06ZRight, I should have mentioned it. Thanks for pointing that out. :)http://stackoverflow.com/questions/107028/can-a-programmer-make-good-use-of-a-slide-ruleComment by David Crow on Can a programmer make good use of a slide rule?David Crow2008-09-20T09:16:00Z2008-09-20T09:16:00ZI agree. This question shouldn't have been closed.http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/105293#105293Comment by David Crow on What was your first home computer?David Crow2008-09-20T09:07:27Z2008-09-20T09:07:27ZThis was also my first, minus the CGA display (mine was monochrome text only)... man, I sure miss that keyboard though. They don't click like that anymore. :)http://stackoverflow.com/questions/38057/why-onetomany-does-not-work-with-inheritance-in-hibernateComment by David Crow on Why @OneToMany does not work with inheritance in HibernateDavid Crow2008-09-12T01:02:14Z2008-09-12T01:02:14ZYou should add more details about your edit on September 4. Specifying List<UglyProblem> instead of only List in the @OneToMany(mappedBy="person") mapping changes the nature of the problem, since I think we previously assumed you wanted to map a Person to a list of Problems (not Uglhttp://stackoverflow.com/questions/52874/how-do-you-keep-the-machine-awake/53276#53276Comment by David Crow on How do you keep the machine awake?David Crow2008-09-10T07:26:53Z2008-09-10T07:26:53ZTrue, it is inconvenient to grant privileges for minor tasks. But if you wrap pmset in a suid script, that could solve the problem (the script can be executed as root without prompting). Of course, suid scripts can be potential security holes...http://stackoverflow.com/questions/47177/how-to-monitor-the-computers-cpu-memory-and-disk-usage-in-java/47290#47290Comment by David Crow on How to monitor the computer's cpu, memory, and disk usage in Java?David Crow2008-09-08T06:36:28Z2008-09-08T06:36:28ZThanks, the SIGAR API certainly provides the necessary functionality. Unfortunately for me, it's licensed under the GPL, which prevents me from being able to use it in my current situation. Aside from that, it would be perfect. :(