User WMR - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T02:46:55Z http://stackoverflow.com/feeds/user/2844 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/266370/how-do-i-unit-test-jdbc-code-in-java/266401#266401 6 Answer by WMR for How do I unit test jdbc code in java? WMR 2008-11-05T19:56:03Z 2009-12-01T12:56:36Z <p>You could use <a href="http://www.dbunit.org/" rel="nofollow">DBUnit</a> together with a <a href="http://hsqldb.org/" rel="nofollow">HSQLDB</a> which can read its initial data from CSV files for example.</p> http://stackoverflow.com/questions/857420/what-are-the-reasons-why-map-getobject-key-is-not-fully-generic 15 What are the reasons why Map.get(Object key) is not (fully) generic WMR 2009-05-13T11:28:30Z 2009-11-04T15:58:37Z <p>What are the reasons behind the decision to not have a fully generic get method in the interface of <a href="http://java.sun.com/javase/6/docs/api/java/util/Map.html#get(java.lang.Object)" rel="nofollow">java.util.Map&lt;K,V&gt;</a>.</p> <p>To clarify the question, the signature of the method is </p> <p><code>V get(Object key)</code></p> <p>instead of </p> <p><code>V get(K key)</code></p> <p>and I'm wondering why (same thing for <code>remove, containsKey, containsValue</code>).</p> http://stackoverflow.com/questions/1321988/finding-serialversionuid-of-serialized-object/1322065#1322065 1 Answer by WMR for Finding serialVersionUID of serialized object WMR 2009-08-24T12:26:56Z 2009-08-24T12:26:56Z <p>There is a specified grammar for the serialization of objects:</p> <p>See chapter 6.4 in <a href="http://java.sun.com/javase/6/docs/platform/serialization/spec/serialTOC.html" rel="nofollow">http://java.sun.com/javase/6/docs/platform/serialization/spec/serialTOC.html</a></p> <p>Using this, you should be able to determine the SerialVersionUID of your serialized object.</p> http://stackoverflow.com/questions/1194425/how-can-i-block-http-session-timeouts-in-my-seam-applications/1194472#1194472 1 Answer by WMR for How can I block HTTP session timeouts in my Seam applications? WMR 2009-07-28T14:27:29Z 2009-07-28T14:27:29Z <p>You could have the child applications do a HTTP call on a special "keepalive" URL (which can be a simple servlet just returning <code>200 OK</code>) in the portal application. These requests could either be sent out via AJAX by the client or you could do it on the server side using HTTP sub requests, based on child activity.</p> http://stackoverflow.com/questions/1177287/why-is-my-tomcat-server-restarting-and-what-is-org-apache-catalina-core-aprlifecy/1177439#1177439 2 Answer by WMR for Why is my Tomcat server restarting and what is org.apache.catalina.core.AprLifecycleListener? WMR 2009-07-24T12:47:23Z 2009-07-24T12:47:23Z <p>AprLifecycleListener's responsibility is to initialize the Apache Portable Runtime, see <a href="http://tomcat.apache.org/tomcat-6.0-doc/apr.html" rel="nofollow">http://tomcat.apache.org/tomcat-6.0-doc/apr.html</a></p> <p>Could you post the log entries of the shutdown (do you have any, or is the above all you see?)?</p> <p>BTW, you're saying that tomcat restarts, the standard shell scripts only start tomcat once, they just exit when tomcat quits. Do you have any kind of wrapper software (like <a href="http://wrapper.tanukisoftware.org/" rel="nofollow">http://wrapper.tanukisoftware.org/</a>) that might be restarting your server?</p> http://stackoverflow.com/questions/1136168/allowing-user-to-configure-cron/1136245#1136245 0 Answer by WMR for Allowing user to configure cron WMR 2009-07-16T08:43:30Z 2009-07-16T08:43:30Z <p>What about <a href="http://webmin.com" rel="nofollow" title="Webmin">Webmin</a>? I have never used it myself but it seems you could configure the cron module and give permissions to the user who wants to configure the job.</p> http://stackoverflow.com/questions/906535/how-to-copy-yanked-text-to-vi-command-prompt/906548#906548 2 Answer by WMR for How to copy yanked text to VI command prompt WMR 2009-05-25T12:30:42Z 2009-05-25T12:30:42Z <p>please see my answer in <a href="http://stackoverflow.com/questions/101258/in-vim-is-there-a-way-to-paste-text-in-the-search-line">http://stackoverflow.com/questions/101258/in-vim-is-there-a-way-to-paste-text-in-the-search-line</a></p> http://stackoverflow.com/questions/27572/javaservicewrapper-on-64bit-linux-any-problems 1 JavaServiceWrapper on 64bit linux, any problems? WMR 2008-08-26T08:43:37Z 2009-04-18T20:58:06Z <p>We've been using the 32bit linux version of the <a href="http://wrapper.tanukisoftware.org/" rel="nofollow">JavaServiceWrapper</a> for quite a while now and it's working perfectly. We are now considering also using it on 64bit linux systems. There are downloads for 64bit binaries on the website, but looking into Makefile for the 64bit version I found the following comment, though: # This makefile is in progess. It builds, but the resulting libwrapper.so does not yet work. # If you know how to fix it then please help out.</p> <p>Can anyone confirm, that this comment is just outdated and the resulting wrapper will work without flaws?</p> http://stackoverflow.com/questions/733724/validating-mailto-links-in-java/733738#733738 2 Answer by WMR for validating mailto links in java WMR 2009-04-09T11:04:05Z 2009-04-09T11:04:05Z <p>The answer is not really Java related, the short form is: you can't without actually sending an email to that address. See my answer to a similar question here: <a href="http://stackoverflow.com/questions/27474/email-smtp-validator">http://stackoverflow.com/questions/27474/email-smtp-validator</a></p> http://stackoverflow.com/questions/554815/how-can-i-custom-indent-a-file-with-vim/554831#554831 2 Answer by WMR for How can I custom indent a file with vim ? WMR 2009-02-16T22:24:47Z 2009-02-16T22:24:47Z <p>You can set the <code>equalprg</code>-option. (see :he = for more).</p> http://stackoverflow.com/questions/249798/should-i-expect-problems-when-communicating-via-rmi-between-java5-and-java6 2 Should I expect problems when communicating via RMI between Java5 and Java6? WMR 2008-10-30T10:56:23Z 2009-01-22T12:03:08Z <p>Basically the subject says it all: We have a couple of components running on Java 5, they're talking to each other via RMI. Should we expect any problems, if we move some of them to Java6? By moving I mean compiling them with <code>-source/target 1.6</code> and running on a java6 vm.</p> http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope/289851#289851 4 Answer by WMR for when does a thread go out of scope? WMR 2008-11-14T11:37:31Z 2008-11-14T12:35:11Z <p>As Chris Kimpton already pointed out correctly you have a problem with the updating of <code>chars</code> and <code>words</code> in different threads. Synchronizing on <code>this</code> won't work either because <code>this</code> is a reference to the current thread which means different threads will synchronize on different objects. You could use an extra "lock object" you can synchronize on but the easiest way to fix this would probably be to use <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/atomic/AtomicInteger.html" rel="nofollow">AtomicIntegers</a> for the 2 counters:</p> <pre><code>AtomicInteger chars = new AtomicInteger(); ... new Thread(new Runnable() {public void run() { chars.addAndGet(characterCounter(line));}}).start(); ... </code></pre> <p>While this will probably fix your problem, <a href="http://stackoverflow.com/questions/289804/when-does-a-thread-go-out-of-scope#289869">Sam Stoke's more detailed answer</a> is completely right, the original design is very inefficient.</p> <p>To answer your question about when a thread "goes out of scope": You are starting two new threads for every line in your file and all of them will run until they reach the end of their <code>run()</code> method. This is unless you make them <a href="http://java.sun.com/javase/6/docs/api/java/lang/Thread.html#setDaemon(boolean" rel="nofollow">daemon threads)</a>), in that case they'll exit as soon as daemon threads are the only ones still running in this JVM.</p> http://stackoverflow.com/questions/289626/how-to-loop-files-in-linux-from-svn-status/289742#289742 2 Answer by WMR for how to loop files in linux from svn status WMR 2008-11-14T10:44:16Z 2008-11-14T10:44:16Z <p>Not asking for any votes, but for the record I'll post the combined answer from <a href="http://stackoverflow.com/questions/289626/how-to-loop-files-in-linux-from-svn-status#289643">@Adam Byrtek</a> and <a href="http://stackoverflow.com/questions/289626/how-to-loop-files-in-linux-from-svn-status#289640">@Dan Fego</a>:</p> <pre><code>svn st | cut -c8- | xargs sed -i 's/\t/ /' </code></pre> http://stackoverflow.com/questions/289434/how-to-make-a-java-thread-wait-for-another-threads-output/289464#289464 2 Answer by WMR for How to make a Java thread wait for another thread's output? WMR 2008-11-14T07:59:00Z 2008-11-14T07:59:00Z <p>Try the <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/CountDownLatch.html" rel="nofollow" title="CountDownLatch">CountDownLatch</a> class out of the <code>java.util.concurrent</code> package, which provides higher level synchronization mechanisms, that are far less error prone than any of the low level stuff.</p> http://stackoverflow.com/questions/277991/how-can-i-run-a-server-on-linux-on-port-80-as-a-normal-user/278343#278343 7 Answer by WMR for How can I run a server on Linux on port 80 as a normal user? WMR 2008-11-10T16:27:54Z 2008-11-10T16:27:54Z <p>If your system supports it you could maybe use capabilities. See <code>man capabilities</code>, the one you need would be <code>CAP_NET_BIND_SERVICE</code>. No, I`ve never used them myself and I don't know if they really work :-)</p> http://stackoverflow.com/questions/277630/hibernate-jpa-sequence-non-id/277785#277785 0 Answer by WMR for Hibernate JPA Sequence (non-Id) WMR 2008-11-10T12:49:28Z 2008-11-10T12:49:28Z <p>According to the documentation it should be possible (haven't tried it myself): <a href="http://www.hibernate.org/hib_docs/v3/reference/en-US/html_single/#mapping-generated" rel="nofollow">http://www.hibernate.org/hib_docs/v3/reference/en-US/html_single/#mapping-generated</a></p> http://stackoverflow.com/questions/266371/in-vim-command-line-mode-what-is-the-special-character-symbol-for-current-line/266386#266386 7 Answer by WMR for In VIM command line mode what is the special character/symbol for current line? WMR 2008-11-05T19:52:41Z 2008-11-06T08:36:22Z <p>. (dot) stands for the current line.</p> <p>To clarify: This is meant for stuff like <code>:1,.s/foo/bar/g</code> which will transform every <code>foo</code> to <code>bar</code> from the beginning of the file up to the current line. </p> <p>I don't know know of a way to get the current line number expanded for a shell command, which is what you are trying to do by doing <code>:!echo .</code></p> <p>You can find out about the expansions that are done (like <code>%</code> and <code>#</code> for example) in <code>:he cmdline-special</code>. </p> http://stackoverflow.com/questions/264290/how-to-discover-what-linux-distro-is-in-use/264397#264397 2 Answer by WMR for How to discover what Linux distro is in use WMR 2008-11-05T05:25:24Z 2008-11-05T05:25:24Z <p>You should ask yourself if you really need to know which distro is in use (perhaps because you want to build a package specific for this distribution). In many other cases it is a far better idea, to just test and see if the features you need are there or not. This might look like a lot more work because you have to test every feature one by one but this way, your software becomes far more flexible.</p> http://stackoverflow.com/questions/249536/when-using-eclipse-with-findbugs-can-you-mark-a-bug-as-not-a-bug-and-have-it-remo/249556#249556 13 Answer by WMR for When using Eclipse with FindBugs can you mark a bug as not a bug and have it removed from the bug list? WMR 2008-10-30T08:18:58Z 2008-10-30T12:26:06Z <p>Instead of using filters, you can also use the <a href="http://findbugs.sourceforge.net/api/edu/umd/cs/findbugs/annotations/SuppressWarnings.html" rel="nofollow" title="SuppressWarnings">SuppressWarnings</a> annotation. You must use the annotation out of the findbugs package, meaning you either need an import or use the fully qualified name of it. This is because other than the <a href="http://java.sun.com/javase/6/docs/api/java/lang/SuppressWarnings.html" rel="nofollow">SuppressWarnings</a> from the JDK it has retention "Class", which is needed because findbugs operates on the compiled bytecode instead of source code.</p> <p>Example:</p> <pre><code>@edu.umd.cs.findbugs.annotations.SuppressWarnings( value="EQ_COMPARETO_USE_OBJECT_EQUALS", justification="because I know better") </code></pre> <p>There's one corner case where you probably should not be using the annotation: If your code is library code that ends up in a jar, that could be used by other projects <strong>and</strong> you're still on Java5. The reason for this is a <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6365854" rel="nofollow">bug</a> in the JDK which crashes javac if the annotation is not in the classpath.</p> http://stackoverflow.com/questions/224646/double-cast-for-double-smaller-than-zero/224757#224757 5 Answer by WMR for Double cast for Double smaller than zero WMR 2008-10-22T07:33:17Z 2008-10-22T14:35:00Z <p>One important note: Because of the way floating point numbers work, you should never compare two doubles (or floating point numbers generally spoken) for equality directly, always compare if their difference is within a specified delta: <code>abs(double1 - double2) &lt; delta</code>. </p> <p>JUnit has an <code>assertEquals(double expected, double actual, double delta)</code> method to do exactly that. That said, you should probably use something like </p> <pre><code>assertEquals(-1.0d, (double) out, 0.000001d) </code></pre> <p>in your code.</p> <p>You can find more on the tricks and traps of floating point number in for example in one of Brian Goetz's articles: <a href="http://www.ibm.com/developerworks/java/library/j-jtp0114/" rel="nofollow">"Where's your point?"</a></p> http://stackoverflow.com/questions/225594/thread-getcontextclassloader-null/225670#225670 4 Answer by WMR for Thread.getContextClassLoader() == null ? WMR 2008-10-22T13:12:46Z 2008-10-22T13:12:46Z <p>Yes you should, someone could have called <code>Thread.setContextClassLoader(null)</code> and your library IMO should be able to deal with that.</p> http://stackoverflow.com/questions/225266/customising-word-separators-in-vi/225361#225361 2 Answer by WMR for Customising word separators in vi WMR 2008-10-22T11:31:15Z 2008-10-22T11:31:15Z <p>In case you're using vim, you can change that by setting the <code>iskeyword</code> option (<code>:he iskeyword</code>). If that is not an option, you can always use <code>ct_</code> instead of counting.</p> http://stackoverflow.com/questions/217113/deadlock-in-java/217693#217693 1 Answer by WMR for Deadlock in Java WMR 2008-10-20T07:03:28Z 2008-10-20T07:03:28Z <p>If you are on Java 5 you can call the method <code>findMonitorDeadlockedThreads()</code> on the ThreadMXBean which you can get through a call of <code>java.lang.management.ManagementFactory.getThreadMXBean()</code>. This will find deadlocks caused by object monitors only. On Java 6 there's <code>findDeadlockedThreads()</code> which will also find deadlocks caused by "ownable synchronizers (for example <code>ReentrandLock</code> and <code>ReentrantReadWriteLock</code>). </p> <p>Be aware that it will probably be expensive to call these methods, so they should be used for troubleshooting purposes only.</p> http://stackoverflow.com/questions/152342/in-java-do-i-need-to-declare-my-collection-synchronized-if-its-read-only/152391#152391 8 Answer by WMR for In Java, do I need to declare my collection synchronized if it's read-only ? WMR 2008-09-30T09:36:52Z 2008-10-17T11:59:24Z <p>It depends on if the threads that are reading your collection are started before or after you're filling it. If they're started before you fill it, you have no guarantees (without synchronizing), that these threads will ever see the updated values. </p> <p>The reason for this is the Java Memory Model, if you wanna know more read the section "Visibility" at this link: <a href="http://gee.cs.oswego.edu/dl/cpj/jmm.html" rel="nofollow">http://gee.cs.oswego.edu/dl/cpj/jmm.html</a> </p> <p>And even if the threads are started after you fill your collection, you might have to synchronize because your collection implementation could change its internal state even on read operations (thanks <a href="http://stackoverflow.com/questions/152342/in-java-do-i-need-to-declare-my-collection-synchronized-if-its-read-only#152425">Michael Bar-Sinai</a>, I didn't know such collections existed in the standard JDK).</p> <p>Another very interesting read on the topic of concurrency which covers topics like publishing of objects, visibility, etc. in much more detail is Brian Goetz's book <a href="http://www.briangoetz.com/pubs.html" rel="nofollow">Java Concurrency in Practice</a>.</p> http://stackoverflow.com/questions/200932/how-do-i-make-vim-indent-java-annotations-correctly/211820#211820 2 Answer by WMR for How do I make vim indent java annotations correctly? WMR 2008-10-17T11:38:52Z 2008-10-17T11:43:57Z <p>You should probably be using the indentation file for the java FileType (instead of using cindent) by setting <code>filetype plugin indent on</code>. </p> <p>That said, the indentation file coming with the Vim 7.1 from my linux distribution (looking at the current vim svn this is still true for 7.2) doesn't account for annotations yet. I therefore copied <code>/usr/share/vim/vim71/indent/java.vim</code> (see <a href="https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1/runtime/indent/java.vim" rel="nofollow">https://vim.svn.sourceforge.net/svnroot/vim/branches/vim7.1/runtime/indent/java.vim</a>) to <code>~/.vim/indent/java.vim</code> and added the following lines right before the end:</p> <pre><code>let lnum = prevnonblank(v:lnum - 1) let line = getline(lnum) if line =~ '^\s*@.*$' let theIndent = indent(lnum) endif </code></pre> <p>I'm not sure if this breaks any of the other indentations, but it works for me.</p> http://stackoverflow.com/questions/201078/unit-testing-for-safe-publication/201766#201766 1 Answer by WMR for Unit testing for safe publication. WMR 2008-10-14T15:59:32Z 2008-10-14T15:59:32Z <p>Maybe you can use <a href="http://www.alphaworks.ibm.com/tech/contest" rel="nofollow">ConTest</a> to at least give you a little more confidence that your code is correct.</p> <p>You'll need to implement a couple of tests that run several threads concurrently. ConTest will then increase the probability that a concurrency bug is actually revealed by instrumenting byte code (adding heuristically-controlled conditional sleep and yield instructions).</p> http://stackoverflow.com/questions/53532/unit-testing-servlets/158237#158237 2 Answer by WMR for Unit-testing servlets WMR 2008-10-01T15:31:29Z 2008-10-01T15:31:29Z <p>The Spring Framework has nice ready made mock objects for several classes out of the Servlet API:</p> <p><a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/mock/web/package-summary.html" rel="nofollow">http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/mock/web/package-summary.html</a></p> http://stackoverflow.com/questions/155243/why-is-it-impossible-without-attempting-i-o-to-detect-that-tcp-socket-was-grace/157139#157139 2 Answer by WMR for Why is it impossible, without attempting I/O, to detect that TCP socket was gracefully closed by peer? WMR 2008-10-01T11:09:11Z 2008-10-01T12:04:43Z <p>The reason for this behaviour (which is not java specific) is the fact that you don't get any status information from the TCP stack. After all, a socket is just another file handle and you can't find out if there's actual data to read from it without actually trying to (<code>select(2)</code> won't help there, it only signals that you can try without blocking). </p> <p>For more information see the <a href="http://www.unixguide.net/network/socketfaq/" rel="nofollow">Unix socket FAQ</a>.</p> http://stackoverflow.com/questions/156586/in-java-how-to-reload-dynamically-resources-bundles-in-a-web-application/156675#156675 4 Answer by WMR for In Java, how to reload dynamically resources bundles in a web application ? WMR 2008-10-01T08:13:13Z 2008-10-01T08:13:13Z <p>If you're using JDK 1.6 you can use the callback methods <code>getTimeToLive()</code> and <code>needsReload()</code> in <a href="http://java.sun.com/javase/6/docs/api/java/util/ResourceBundle.Control.html" rel="nofollow">ResourceBundle.Control</a> to control if the bundle cache needs to be loaded with new values from the database. </p> http://stackoverflow.com/questions/151590/java-how-do-detect-a-remote-side-socket-close/152116#152116 4 Answer by WMR for Java: How do detect a remote side socket close? WMR 2008-09-30T07:41:15Z 2008-10-01T07:06:20Z <p>The <code>isConnected</code> method won't help, it will return <code>true</code> even if the remote side has closed the socket. Try this: </p> <pre><code>public class MyServer { public static final int PORT = 12345; public static void main(String[] args) throws IOException, InterruptedException { ServerSocket ss = ServerSocketFactory.getDefault().createServerSocket(PORT); Socket s = ss.accept(); Thread.sleep(5000); ss.close(); s.close(); } } public class MyClient { public static void main(String[] args) throws IOException, InterruptedException { Socket s = SocketFactory.getDefault().createSocket("localhost", MyServer.PORT); System.out.println(" connected: " + s.isConnected()); Thread.sleep(10000); System.out.println(" connected: " + s.isConnected()); } } </code></pre> <p>Start the server, start the client. You'll see that it prints "connected: true" twice, even though the socket is closed the second time.</p> <p>The only way to really find out is by reading (you'll get -1 as return value) or writing (an <code>IOException</code> (broken pipe) will be thrown) on the associated Input/OutputStreams.</p> http://stackoverflow.com/questions/249536/when-using-eclipse-with-findbugs-can-you-mark-a-bug-as-not-a-bug-and-have-it-remo/249556#249556 Comment by WMR on When using Eclipse with FindBugs can you mark a bug as not a bug and have it removed from the bug list? WMR 2009-07-30T09:01:05Z 2009-07-30T09:01:05Z I don't know of any eclipse plugin, that can generate these annotations for you http://stackoverflow.com/questions/1194315/tomcat-background-threads/1194351#1194351 Comment by WMR on tomcat background threads WMR 2009-07-28T14:22:49Z 2009-07-28T14:22:49Z this should be j.u.c.Executors.newCachedThreadPool (with an s), but other than that: agreed http://stackoverflow.com/questions/1177287/why-is-my-tomcat-server-restarting-and-what-is-org-apache-catalina-core-aprlifecy/1177439#1177439 Comment by WMR on Why is my Tomcat server restarting and what is org.apache.catalina.core.AprLifecycleListener? WMR 2009-07-24T14:09:08Z 2009-07-24T14:09:08Z A couple of suggestions: First, check if the PID of the JVM really changes before and after what you're doing. Try attaching via JMX with jconsole and see what the threads are doing. Increase the log level of your application and tomcat. Check tomcat's manager application (/manager/html) about the status of your webapp. http://stackoverflow.com/questions/1177287/why-is-my-tomcat-server-restarting-and-what-is-org-apache-catalina-core-aprlifecy/1177439#1177439 Comment by WMR on Why is my Tomcat server restarting and what is org.apache.catalina.core.AprLifecycleListener? WMR 2009-07-24T13:17:53Z 2009-07-24T13:17:53Z startup.sh will not restart tomcat if the JVM exits. Are you sure you get a full restart? http://stackoverflow.com/questions/1177384/override-drag-and-drop-for-shell-extension Comment by WMR on Override Drag and drop for Shell Extension WMR 2009-07-24T12:38:47Z 2009-07-24T12:38:47Z You should probably tell us which OS you're talking about, I assume it's windows?! http://stackoverflow.com/questions/1136168/allowing-user-to-configure-cron/1136245#1136245 Comment by WMR on Allowing user to configure cron WMR 2009-07-16T10:38:22Z 2009-07-16T10:38:22Z Yes, it's a big solution for a small problem. It might still be faster to set up and easier to maintain than anything &quot;homegrown&quot;. This depends heavily on your current environment of course. http://stackoverflow.com/questions/27572/javaservicewrapper-on-64bit-linux-any-problems/764188#764188 Comment by WMR on JavaServiceWrapper on 64bit linux, any problems? WMR 2009-04-20T07:07:53Z 2009-04-20T07:07:53Z I accepted your answer because you're the first with real life experience (besides ourselves, we have it running in the mean time too :-) http://stackoverflow.com/questions/224646/double-cast-for-double-smaller-than-zero/224757#224757 Comment by WMR on Double cast for Double smaller than zero WMR 2008-11-11T05:51:51Z 2008-11-11T05:51:51Z Agreed, if you really need to check for these special values, you can check for equality. But for all other cases (&quot;normal&quot; numbers) ranges are what you want. http://stackoverflow.com/questions/277630/hibernate-jpa-sequence-non-id/277785#277785 Comment by WMR on Hibernate JPA Sequence (non-Id) WMR 2008-11-10T16:18:13Z 2008-11-10T16:18:13Z This should still be possible. The problem with your above code is that the field is marked as updateable+insertable. These should both be set to false. http://stackoverflow.com/questions/266371/in-vim-command-line-mode-what-is-the-special-character-symbol-for-current-line/266386#266386 Comment by WMR on In VIM command line mode what is the special character/symbol for current line? WMR 2008-11-06T08:39:53Z 2008-11-06T08:39:53Z No, this does not work, see my clarification. Maybe if you ask another question where you explain your planned shortcut in detail we can help you with another way to achieve what you intending. http://stackoverflow.com/questions/267750/java-instance-variable-accessibility/267772#267772 Comment by WMR on Java Instance Variable Accessibility WMR 2008-11-06T06:35:48Z 2008-11-06T06:35:48Z Sometimes package-private comes in handy for unit testing though. But basically I think you're right. http://stackoverflow.com/questions/264290/how-to-discover-what-linux-distro-is-in-use/264397#264397 Comment by WMR on How to discover what Linux distro is in use WMR 2008-11-05T15:54:16Z 2008-11-05T15:54:16Z Yupp, something like <code>configure</code> or CMake: <a href="http://www.cmake.org/" rel="nofollow">cmake.org</a> http://stackoverflow.com/questions/224646/double-cast-for-double-smaller-than-zero/224757#224757 Comment by WMR on Double cast for Double smaller than zero WMR 2008-10-22T18:31:11Z 2008-10-22T18:31:11Z Never. If you do so anyways be prepared that stuff like <code>(28.0&#42;0.01&#42;100.0 == 28.0)</code> evaluates to <code>false</code>. Try it... If you need exact results, doubles or floats are not what you want. You might want to have a look at <code>BigDecimal</code>, which gives you complete control over precision and rounding. http://stackoverflow.com/questions/160930/how-do-i-check-if-an-integer-is-even-or-odd/160958#160958 Comment by WMR on How do I check if an integer is even or odd? WMR 2008-10-22T14:44:32Z 2008-10-22T14:44:32Z Your Java method is broken because num % 2 == -1 for negative odd numbers. http://stackoverflow.com/questions/201078/unit-testing-for-safe-publication/201151#201151 Comment by WMR on Unit testing for safe publication. WMR 2008-10-20T09:21:48Z 2008-10-20T09:21:48Z Maybe you don't need someone who is a better fit for reviewing concurrent code than yourself but just someone who you can explain to why you think you're code is correct. This has helped me a lot of times.