User Adrian - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T01:32:44Z http://stackoverflow.com/feeds/user/7426 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1393181/hql-query-how-to/1407360#1407360 0 Answer by Adrian for HQL query, how to? Adrian 2009-09-10T19:51:19Z 2009-09-10T19:51:19Z <p>It looks like you're trying to select rows based on the size of a collection, which should be:</p> <pre><code>WHERE size(Entity1.config.dateTimeInfo.ntpConfig.server) &gt; 3 </code></pre> <p>For more info, check out the <a href="http://docs.jboss.org/hibernate/stable/core/reference/en/html/queryhql.html#queryhql-expressions" rel="nofollow">Hibernate documentation</a>.</p> http://stackoverflow.com/questions/191592/how-do-i-get-rid-of-the-mouse-cursor-in-full-screen-exclusive-mode 5 How do I get rid of the mouse cursor in full-screen exclusive mode? Adrian 2008-10-10T14:31:02Z 2009-06-22T16:21:16Z <p>I'm working on a simple 2D game engine in Java, and having no trouble with FSEM, buffer strategies, and so on; my issue is with the mouse cursor. In windowed mode, I can hide the mouse cursor, no problem, by using setCursor() from my JFrame to set a wholly-transparent cursor. However, after a call to device.setFullScreenWindow(this) to go into FSEM, the mouse cursor comes back, and subsequent calls to setCursor() to set it back to my blank cursor have no effect. Calling device.setFullScreenWindow(null) allows me to get rid of the cursor again - it's only while I'm in FSEM that I can't get rid of it.</p> <p>I'm working under JDK 6, target platform is JDK 5+.</p> <p><strong>UPDATE:</strong> I've done some more testing, and it looks like this issue occurs under MacOS X 10.5 w/Java 6u7, but not under Windows XP SP3 with Java 6u7. So, it could possibly be a bug in the Mac version of the JVM.</p> http://stackoverflow.com/questions/191592/how-do-i-get-rid-of-the-mouse-cursor-in-full-screen-exclusive-mode/205690#205690 0 Answer by Adrian for How do I get rid of the mouse cursor in full-screen exclusive mode? Adrian 2008-10-15T17:42:13Z 2008-10-15T17:42:13Z <p>I think I've finally found the solution:</p> <pre><code>System.setProperty("apple.awt.fullscreenhidecursor","true"); </code></pre> <p>This is an Apple-proprietary system property that hides the mouse cursor when an application is in full-screen mode. It's the only way I've found to fix it.</p> http://stackoverflow.com/questions/140090/where-should-a-subversion-repository-be/140109#140109 1 Answer by Adrian for Where should a Subversion repository be? Adrian 2008-09-26T15:09:15Z 2008-09-26T15:09:15Z <p>I keep mine on the development server, which also runs Trac, Apache hosting an automatically-updated copy of the project JavaDocs, and the CI build platform. A project would have to be of fairly epic proportions to require a dedicated Subversion server.</p> <p>However, keep in mind that it is very important to keep your Subversion repository backed up on another machine in another location - your repository is your most valuable asset!</p> http://stackoverflow.com/questions/93049/are-java-6s-performance-improvements-in-the-jdk-jvm-or-both 3 Are Java 6's performance improvements in the JDK, JVM, or both? Adrian 2008-09-18T14:30:01Z 2008-09-18T18:07:00Z <p>I've been wondering about the performance improvements touted in Java SE 6 - is it in the compiler or the runtime? Put another way, would a Java 5 application compiled by JDK 6 see an improvement run under JSE 5 (indicating improved compiler optimization)? Would a Java 5 application compiled by JDK 5 see an improvement run under JSE 6 (indicating improved runtime optimization)?</p> <p>I've noticed that compiling under JDK 6 takes almost twice as long as it did under JDK 5 for the exact same codebase; I'm hoping that at least some of that extra time is being spent on compiler optimizations, hopefully leading to more performant JARs and WARs. Sun's JDK info doesn't really go into detail on the performance improvements they've made - I assume it's a little from column A, and a little from column B, but I wonder which is the greater influence. Does anyone know of any benchmarks done on JDK 6 vs. JDK 5?</p> http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/93143#93143 0 Answer by Adrian for What do you use to keep notes as a developer? Adrian 2008-09-18T14:39:10Z 2008-09-18T14:39:10Z <p>I use <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> tickets for keeping track of things to do, and Trac's wiki for formal notes and documentation. During a planning/design/brainstorming phase, I'll use pen-and-paper, and if I'm trying to work out a complex problem that I can't keep all in my head at once, I turn to the large whiteboard hung up next to my desk. Each is perfect for certain purposes, and I couldn't do without any of them. Especially Trac. Nothing would ever get done around here without Trac!</p> <p>I also frequently rely on Gmail and it's search capabilities; if I get important information via email, I never need to transfer it anywhere else to keep track of it, I just leave it in my mailbox to be searched for when it's needed.</p> http://stackoverflow.com/questions/64148/how-to-upgrade-database-schema-built-with-an-orm-tool/64225#64225 0 Answer by Adrian for How to upgrade database schema built with an ORM tool? Adrian 2008-09-15T16:02:27Z 2008-09-15T21:35:53Z <p>When working with Hibernate, I use an installer class that runs from the command-line and has options for creating database schema, inserting base data, and dynamically updating the database schema using <a href="http://www.hibernate.org/hib_docs/v3/api/org/hibernate/tool/hbm2ddl/SchemaUpdate.html" rel="nofollow">SchemaUpdate</a>. I find it to be extremely useful. It also gives me a place to put one-off scripts that will be run when a new version is launched to, for example, populate a new field in an existing DB table.</p> http://stackoverflow.com/questions/64213/what-is-the-most-useful-multi-purpose-open-source-library-for-java/64295#64295 4 Answer by Adrian for What is the most useful multi-purpose open-source library for java? Adrian 2008-09-15T16:10:13Z 2008-09-15T16:10:13Z <p>Apache's <a href="http://commons.apache.org/" rel="nofollow">Jakarta Commons</a>.</p> http://stackoverflow.com/questions/63257/does-generated-code-need-to-be-human-readable/63302#63302 0 Answer by Adrian for Does generated code need to be human readable? Adrian 2008-09-15T14:17:26Z 2008-09-15T14:17:26Z <p>Generally, if you're generating code that needs to be human-modified later, it needs to be as human-readable as possible. However, even if it's code that will be generated and never touched again, it still needs to be readable enough that you (as the developer writing the code generator) can debug the generator - if your generator spits out bad code, it may be hard to track down if it's difficult to understand.</p> http://stackoverflow.com/questions/63162/what-development-documentation-do-you-find-useful/63267#63267 0 Answer by Adrian for What development documentation do you find useful Adrian 2008-09-15T14:14:37Z 2008-09-15T14:14:37Z <p>I find generated documentation (e.g. JavaDoc) to be very effective, so long as it is actively maintained. It's too easy to stop updating the inline documentation once the initial APIs are stabilized, but it is crucial if the documentation is to be usable for maintenance down the road.</p> <p>I too use a Wiki to keep track of project information; where the JavaDoc houses API documentation, the Wiki keeps track of development methodology, build and install notes, dependencies and requirements, product testing information, database schema changes, and the like. We use <a href="http://trac.edgewall.org/" rel="nofollow">Trac</a> for managing this information, which I've found to be a huge help.</p> http://stackoverflow.com/questions/191592/how-do-i-get-rid-of-the-mouse-cursor-in-full-screen-exclusive-mode/192829#192829 Comment by Adrian on How do I get rid of the mouse cursor in full-screen exclusive mode? Adrian 2008-10-10T20:24:54Z 2008-10-10T20:24:54Z This is almost exactly what I'm doing, and while it works perfectly in windowed mode, it doesn't work in full-screen mode. The cursor still shows up until I leave full-screen mode, then I'm able to hide it again, using the same technique you described. http://stackoverflow.com/questions/191592/how-do-i-get-rid-of-the-mouse-cursor-in-full-screen-exclusive-mode/192075#192075 Comment by Adrian on How do I get rid of the mouse cursor in full-screen exclusive mode? Adrian 2008-10-10T18:33:22Z 2008-10-10T18:33:22Z That's more or less what I was doing, but I was creating my own 1-pixel transparent cursor image on-the-fly. I switched it to use a pre-made 1px transparent GIF, and it didn't help - still works in windowed mode but I cannot banish the cursor in full-screen mode. http://stackoverflow.com/questions/191592/how-do-i-get-rid-of-the-mouse-cursor-in-full-screen-exclusive-mode/191634#191634 Comment by Adrian on How do I get rid of the mouse cursor in full-screen exclusive mode? Adrian 2008-10-10T14:41:57Z 2008-10-10T14:41:57Z The problem is, I need the mouse input, I just want to hide the cursor image on the screen.