User Ubersoldat - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T10:01:05Z http://stackoverflow.com/feeds/user/48869 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1856133/separate-code-and-comments 0 Separate code and comments Ubersoldat 2009-12-06T18:24:33Z 2009-12-06T19:03:10Z <p>I'm finding comments on code starting to get annoying. I feel that once you achieve some level of expertise, code is pretty much self documenting. But comments are still a necessity. What I would like to know if there's such a plugin or IDE with this idea of comments separated from the code. If such a thing doesn't exists, what ideas do you think would work great on a plugin for an IDE like Eclipse?</p> <p>Take this Python code for example:</p> <pre><code>def do_something(self, var): # * 541 ... </code></pre> <p>Then some XML like this:</p> <pre><code>&lt;comments&gt; &lt;comment id="541" file="x.py" line="14"&gt;This is a comment&lt;/comment&gt; &lt;comments&gt; </code></pre> <p>Thanks!</p> http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/1770162#1770162 0 Answer by Ubersoldat for What are your favorite Vim tricks? Ubersoldat 2009-11-20T12:26:06Z 2009-11-20T12:26:06Z <p>Make vimdiff a great merge tool</p> <pre><code>function Vimdiff() nmap &lt;F7&gt; [czz nmap &lt;F8&gt; ]czz nmap &lt;F2&gt; do nmap &lt;F3&gt; dp endfunction au FilterWritePre * if &amp;diff | call Vimdiff() | endif </code></pre> <p>This will allow you to use F7 and F8 to go to the next/previous change and F2 and F3 will copy changes from left to right and vice-versa.</p> http://stackoverflow.com/questions/1748129/using-grep-to-find-files-that-doesnt-contain-a-given-string-pattern/1748144#1748144 1 Answer by Ubersoldat for Using grep to find files that doesn't contain a given string pattern Ubersoldat 2009-11-17T11:11:24Z 2009-11-17T11:11:24Z <p>$man grep</p> <p>-v, --invert-match</p> <p>Invert the sense of matching, to select non-matching lines.</p> http://stackoverflow.com/questions/1026259/jboss-doesnt-sends-a-jmstemplate-spring-message 2 JBoss doesn't sends a JmsTemplate (Spring) message Ubersoldat 2009-06-22T09:25:10Z 2009-11-05T16:10:05Z <p>Well, actually JBoss does send the message, but only when the current transaction started by the EJB is finished.</p> <p>We have this problem with JBoss 4.0.3 and Spring's JmsTemplate. An EJB sends a message to a queue with a temporary queue as the reply_to field. Then, inside the same transaction, we listen for the response given by the first MDB. The problem is that the JmsTemplate's method "send" isn't executed after the transaction have finished. So, by the time the message is sent to the queue, and processed by the MDB, the listener of the temporary queue is gone.</p> <p>This is called "Synchronous Reception"</p> <p>Two things change this behavior but does raise some concerns:</p> <ol> <li><p>Change the EJB's transaction type to BMT. (Concern: BMT sucks)</p></li> <li><p>Create a thread that all it does is to call the JmsTemplate.send() method.</p></li> </ol> <p>As a side note, this is an EJB that is working correctly on a weblogic environment, and the message does get sent when it should, in the middle of the transaction not when it's over.</p> <p>Thanks for any help. </p> http://stackoverflow.com/questions/442496/android-http-connection 1 Android HTTP Connection Ubersoldat 2009-01-14T10:11:49Z 2009-10-02T11:23:02Z <p>Can anybody tell my why this doesn't work in the Android emulator? From the browser I have access and the server is internal. All I can think of is that I'm missing some configuration on my app so it can access the network layer.</p> <pre><code>try { InetAddress server = Inet4Address.getByName("thehost"); //Doesn't work either //or InetAddress server2 = Inet4Address.getByAddress(new String("192.168.1.30").getBytes()); if(server.isReachable(5000)){ Log.d(TAG, "Ping!"); } Socket clientsocket = new Socket(server, 8080); } catch (UnknownHostException e) { Log.e(TAG, "Server Not Found"); } catch (IOException e) { Log.e(TAG, "Couldn't open socket"); } </code></pre> <p>Throws an UnknownHostException</p> <p>Thanks</p> http://stackoverflow.com/questions/1321308/whats-the-best-way-to-get-text-user-interfaces-ncurses-like-functionality-in-j/1347746#1347746 0 Answer by Ubersoldat for What's the best way to get text user-interfaces (ncurses-like) functionality in Java? Ubersoldat 2009-08-28T15:27:35Z 2009-08-28T15:27:35Z <p>I think it would be better to abstract your Java code from the TUI and use ncurses against several separated parts of your application or using arguments, in a web-services style. For example, code your TUI and when the user calls an action, use ncurses to call your code passing some parameters </p> <pre><code>java -Daction=doSomething MyApp </code></pre> <p>This way you can code your app using a GUI also in case you need to.</p> http://stackoverflow.com/questions/503103/best-background-color-for-your-editor/503134#503134 1 Answer by Ubersoldat for "Best" background color for your editor Ubersoldat 2009-02-02T13:07:30Z 2009-02-02T13:07:30Z <p>I find zenburn (vim) very pleasing to the point that I used it as a GNOME theme and for Eclipse. Works great and I don't get too much eye strain</p> http://stackoverflow.com/questions/497552/share-static-singletons-through-ejbs 1 Share static singletons through EJB's Ubersoldat 2009-01-30T22:35:33Z 2009-01-30T23:39:04Z <p>I'm trying to create a cache in a webservice. For this I've created a new Stateless Bean to provide this cache to other Stateless beans. This cache is simply a static ConcurrentMap where MyObject is a POJO. The problem is that it seems as there are different cache objects. One for the client beans, and another locally.</p> <pre><code>-CacheService -CacheServiceBean -getMyObject() -insertMyObject(MyObject) -size() -SomeOtherBean cache = jndiLookup(CacheService) cache.insertMyObject(x) cache.size() -&gt; 1 </code></pre> <p>After this assignment, if I call cache.size from inside the CacheServiceBean, I get 0. Is it even possible to share static singletons through beans? Finally I decided to use a database table, but I'm still thinking about this.</p> <p>Thanks for your responses.</p> http://stackoverflow.com/questions/496832/is-there-a-simple-way-to-do-gui-input-for-a-relational-database/497592#497592 0 Answer by Ubersoldat for Is there a simple way to do GUI input for a relational database? Ubersoldat 2009-01-30T22:47:23Z 2009-01-30T22:47:23Z <p>This can be easy, but tedious, because you have to validate, parse, convert, etc... Every input field. Anyway, you can create a DAO for every entity on your database with the proper SQL queries. Then use some model object that will interact with your GUI (validation, parsing, etc) and with the DAOs.</p> http://stackoverflow.com/questions/484009/media-analysis-java-library 0 Media analysis java library Ubersoldat 2009-01-27T16:12:22Z 2009-01-28T16:58:24Z <p>Hi,</p> <p>As a "learn Groovy" project, I'm developing a site to manage my media collection (MP3, MP4, AVI, OGG) and I wasn't able to find any open source library to retrieve meta data from this files. I was thinking of something like Linux's file command. I've found few libraries on Java that do one or the other (like mp3info), but not a total solution even for just music files. Does such a library exists? Will this become another hobby project? Thanks for the answers</p> http://stackoverflow.com/questions/423878/when-coding-what-do-you-worry-about/485864#485864 0 Answer by Ubersoldat for When coding, what do you worry about? Ubersoldat 2009-01-27T23:43:30Z 2009-01-27T23:43:30Z <ul> <li>To comment or not to comment.</li> <li>"Please lord, let JBoss handle this many threads"</li> <li>Why me</li> <li>OOP can be evil in the wrong hands</li> <li>I should've studied medicine</li> </ul> http://stackoverflow.com/questions/478365/what-is-the-best-approach-to-take-when-you-cant-figure-something-out-and-you-ha/478545#478545 0 Answer by Ubersoldat for What is the best approach to take when you can't figure something out, and you have no one to ask? Ubersoldat 2009-01-25T23:47:20Z 2009-01-25T23:47:20Z <p>If you can't explain it to your grandma' then you don't know what you're doing. Explaining some stuff to my girl (not technical savvy at all) helps a lot, even if she doesn't give me any feedback.</p> http://stackoverflow.com/questions/478403/can-i-add-and-remove-elements-of-enumeration-at-runtime-in-java/478534#478534 0 Answer by Ubersoldat for Can I add and remove elements of enumeration at runtime in Java Ubersoldat 2009-01-25T23:41:05Z 2009-01-25T23:41:05Z <p>You could try to assign properties to the ENUM you're trying to create and statically contruct it by using a loaded properties file. Big hack, but it works :)</p> http://stackoverflow.com/questions/469799/what-are-the-appropriate-uses-for-ms-access/478520#478520 2 Answer by Ubersoldat for What are the appropriate uses for MS Access? Ubersoldat 2009-01-25T23:29:46Z 2009-01-25T23:29:46Z <p>I used Access for a fast "application" for telemarketing. It was fast and easy and worked. Also a very graphic way of learning the different relationships between tables, queries, keys and some things a 16 years old wouldn't understand by reading a "Learn MySQL in 25 days". Maybe if some rules or advices where given during the development process, and explain Access limitations upon start, would prevent from over-using it. Anyway, look at the examples Access comes with.</p> http://stackoverflow.com/questions/469445/last-words-of-a-programmer/478399#478399 3 Answer by Ubersoldat for Last words of a ??? programmer Ubersoldat 2009-01-25T22:05:35Z 2009-01-25T22:05:35Z <pre><code>try{ ... }carch(Exception ignore){ //This won't happen } </code></pre> http://stackoverflow.com/questions/467399/can-i-execute-a-shell-script-from-a-web-page/467522#467522 -2 Answer by Ubersoldat for Can I execute a shell script from a web page? Ubersoldat 2009-01-21T23:37:05Z 2009-01-21T23:37:05Z <p>Why don't you do this from your app? It won't be very hard to implement an FTP client in Java. Surely there are open/free libraries to accomplish this somewhere. I don't believe this script does anything that you can't do in Java. A message driven bean with the FTP code should be enough. Your server is not FTP? Well, installing FTP isn't that hard either.</p> http://stackoverflow.com/questions/467425/how-does-open-source-enforcement-work/467488#467488 -6 Answer by Ubersoldat for How does Open Source enforcement work? Ubersoldat 2009-01-21T23:27:24Z 2009-01-21T23:27:24Z <p>If you're using the library, you're not forced to release your app under GPL. As long as you use it as a "black box" you won't have any problem. Think about it, even Java is released under the GPL, you can read the Java source code to get a hold on how to use enums or generics for example. Does this forces you and millions around the world to release under GPL because of using generics? I don't think so. Now, if you take source code from the library and extend from that code, then you can worry about violation of the license.</p> http://stackoverflow.com/questions/458065/if-you-had-one-month-to-work-on-anything-you-wanted-what-would-you-do/458184#458184 0 Answer by Ubersoldat for If you had one month to work on anything you wanted, what would you do? Ubersoldat 2009-01-19T16:23:30Z 2009-01-19T16:23:30Z <p>Get to prestige 10 on CoD World at War :) Then I could think about doing some android apps.</p> http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/457985#457985 2 Answer by Ubersoldat for What are the things Java got right? Ubersoldat 2009-01-19T15:31:42Z 2009-01-19T15:31:42Z <ol> <li>Platform Independent.</li> <li>Great Unix/Linux support</li> <li>Great varied Standard Libraries</li> <li>GC</li> <li>static typed</li> </ol> <p>For some projects I still had my doubts a few years ago because of the license Java was under, but now under the GPL it's unstoppable. </p> http://stackoverflow.com/questions/450407/using-linux-vs-windows-for-development/450624#450624 0 Answer by Ubersoldat for Using Linux vs Windows for development Ubersoldat 2009-01-16T14:55:53Z 2009-01-16T14:55:53Z <p>Linux of course. With only a few commands you can have a complete development rig. Apache, MySQL, Python, Perl, your favorite IDE's, in what? 10 minutes? You don't have to go to www.x.com to get x and then install, repeat... Also, Linux is a install and forget OS this days. I haven't have the need of touching my system since I had installed it.</p> http://stackoverflow.com/questions/445187/to-check-in-or-not-check-in-the-entire-eclipse-project/445198#445198 1 Answer by Ubersoldat for To check in, or not check in, the entire Eclipse project? Ubersoldat 2009-01-15T00:22:53Z 2009-01-15T00:22:53Z <p>Don't. Only check in the source code of your projects.</p> http://stackoverflow.com/questions/442347/geeky-desk-accessory/442372#442372 4 Answer by Ubersoldat for Geeky (desk) accessory Ubersoldat 2009-01-14T09:17:48Z 2009-01-14T09:17:48Z <p>N95... what's more geek than this mobile phone?</p> http://stackoverflow.com/questions/442322/should-java-break-backwards-compatibility-in-future-versions-for-the-benefit-of-a/442366#442366 2 Answer by Ubersoldat for Should Java break backwards compatibility in future versions for the benefit of a cleaner language? Ubersoldat 2009-01-14T09:15:05Z 2009-01-14T09:15:05Z <p>You can do this with hobby (Ruby), low implementation (Python) languages, but you can't imagine how many apps are written in Java around the world. Just check freshmeat or sourceforge. And that's only a portion. So no, it's not a good idea. Actually, it would be a pretty stupid idea.</p> <p>There are not two GUI frameworks. Swing depends and uses AWT as it's basis.</p> http://stackoverflow.com/questions/439714/is-there-any-scenario-where-an-application-instance-runs-across-multiple-computer/439911#439911 -2 Answer by Ubersoldat for Is there any scenario where an application instance runs across multiple computers? Ubersoldat 2009-01-13T17:24:36Z 2009-01-13T17:24:36Z <p>Well yes, there's distcc. It's the GCC compiler distributed.</p> http://stackoverflow.com/questions/439762/good-code-to-read/439893#439893 0 Answer by Ubersoldat for Good code to read? Ubersoldat 2009-01-13T17:19:06Z 2009-01-13T17:19:06Z <p>Java's Source Code is the best way to learn proper Java... except for Clonable. Oh! And Eclipse's source code taught me a lot about SWT.</p> http://stackoverflow.com/questions/438915/starting-programming-career-at-age-33-how-will-employers-see-it/439151#439151 0 Answer by Ubersoldat for Starting programming career at age 33. How will employers see it? Ubersoldat 2009-01-13T14:38:56Z 2009-01-13T14:38:56Z <p>Try producing an Open Source project. This has opened a lot of doors for my self thanks to a very simple project.</p> http://stackoverflow.com/questions/436421/whats-your-choice-for-testing-your-program-in-a-virtual-machine/438783#438783 0 Answer by Ubersoldat for What's your choice for testing your program in a virtual machine? Ubersoldat 2009-01-13T12:23:24Z 2009-01-13T12:23:24Z <p>Linux/OpenSolaris on top of Virtual Box on top of Linux.</p> http://stackoverflow.com/questions/438719/which-j2ee-web-app-hosting-would-you-recommend-for-casual-projects/438777#438777 0 Answer by Ubersoldat for Which J2EE Web App Hosting Would You Recommend for Casual Projects? Ubersoldat 2009-01-13T12:21:37Z 2009-01-13T12:21:37Z <p>Installing and Configuring your own Linux + JBoss5 box is not that hard. Then forward port 8080 on your router to the server and that's it. You can even do this with a Virtual Machine.</p> http://stackoverflow.com/questions/436134/eclipse-detach-package-explorer-outline-panels/437322#437322 0 Answer by Ubersoldat for Eclipse: detach package explorer, outline panels? Ubersoldat 2009-01-12T22:47:34Z 2009-01-12T22:47:34Z <p>Well, I just code on the J2EE Perspective with all stuff gone. When I want to do something else I change to other perspective</p> http://stackoverflow.com/questions/437262/how-to-open-a-file-in-a-list-of-files-in-vim/437285#437285 0 Answer by Ubersoldat for how to open a file in a list of files in vim? Ubersoldat 2009-01-12T22:34:24Z 2009-01-12T22:34:24Z <p>Maybe this could help:</p> <p><a href="http://vimdoc.sourceforge.net/htmldoc/windows.html" rel="nofollow">http://vimdoc.sourceforge.net/htmldoc/windows.html</a></p> http://stackoverflow.com/questions/1856133/separate-code-and-comments Comment by Ubersoldat on Separate code and comments Ubersoldat 2009-12-06T19:11:39Z 2009-12-06T19:11:39Z Thomas, I find it rude for someone to delete a comment from someone else. What can you put on the commit log? &quot;Deleted stupid comment&quot;? http://stackoverflow.com/questions/1856133/separate-code-and-comments Comment by Ubersoldat on Separate code and comments Ubersoldat 2009-12-06T19:02:31Z 2009-12-06T19:02:31Z Carl, the XML was just an example, I would shoot my self before using XML for anything! :) http://stackoverflow.com/questions/1748119/how-to-instal-netbeans-enterprise-5-5-upon-netbeans-ide-6-5 Comment by Ubersoldat on how to instal netbeans enterprise 5.5 upon netbeans IDE 6.5 Ubersoldat 2009-11-17T11:09:26Z 2009-11-17T11:09:26Z What do you mean with &quot;upon it&quot;? You can easily download NetBeans zip, decompress it and run the binary as any other Java app independently of any previous versions and even using a different JVM. http://stackoverflow.com/questions/1026259/jboss-doesnt-sends-a-jmstemplate-spring-message Comment by Ubersoldat on JBoss doesn't sends a JmsTemplate (Spring) message Ubersoldat 2009-11-17T11:07:35Z 2009-11-17T11:07:35Z This behaviour is the same on every JBoss version I've tested: 4.2, 5.0 and 5.1 http://stackoverflow.com/questions/1026259/jboss-doesnt-sends-a-jmstemplate-spring-message/1681622#1681622 Comment by Ubersoldat on JBoss doesn't sends a JmsTemplate (Spring) message Ubersoldat 2009-11-17T11:00:34Z 2009-11-17T11:00:34Z Thanks Jason, I'll take a look at this solution and see if things work as expected. http://stackoverflow.com/questions/696440/what-is-tunnelling-ssh-tunneling-and-ppp-tunneling/696490#696490 Comment by Ubersoldat on what is tunnelling (ssh tunneling and ppp tunneling) Ubersoldat 2009-11-04T16:37:36Z 2009-11-04T16:37:36Z Haha... let's see if the guys behind SO see this response and implement a way of attaching images. http://stackoverflow.com/questions/27065/tool-to-read-and-display-java-class-versions Comment by Ubersoldat on Tool to read and display Java .class versions Ubersoldat 2009-08-18T12:15:33Z 2009-08-18T12:15:33Z I think it's time to close this question as staffan's solution seems to be the best one. http://stackoverflow.com/questions/1026259/jboss-doesnt-sends-a-jmstemplate-spring-message/1026290#1026290 Comment by Ubersoldat on JBoss doesn't sends a JmsTemplate (Spring) message Ubersoldat 2009-06-22T09:40:10Z 2009-06-22T09:40:10Z &quot;and sends should only be executed when the tx commits&quot; But this disallows any possible use of synchronous receptions. http://stackoverflow.com/questions/497552/share-static-singletons-through-ejbs Comment by Ubersoldat on Share static singletons through EJB's Ubersoldat 2009-02-02T12:28:15Z 2009-02-02T12:28:15Z Thanks for your responses. As soon as I can test the different answers you have given me I'll close the answer with the one that resolves the issue. One week, tops http://stackoverflow.com/questions/484009/media-analysis-java-library/487574#487574 Comment by Ubersoldat on Media analysis java library Ubersoldat 2009-01-30T22:19:10Z 2009-01-30T22:19:10Z Very interesting. Seems like they are already doing what I want to achieve except for the movie files. Thanks. I'll keep this question open for a few more days anyway. http://stackoverflow.com/questions/484009/media-analysis-java-library/487609#487609 Comment by Ubersoldat on Media analysis java library Ubersoldat 2009-01-30T22:16:39Z 2009-01-30T22:16:39Z There are many tools that I know of that can achieve this... but not in Java http://stackoverflow.com/questions/484009/media-analysis-java-library/488399#488399 Comment by Ubersoldat on Media analysis java library Ubersoldat 2009-01-30T22:15:57Z 2009-01-30T22:15:57Z That's the sort of thing I would prefer to avoid. http://stackoverflow.com/questions/485120/will-emacs-make-me-a-better-programmer Comment by Ubersoldat on Will emacs make me a better programmer? Ubersoldat 2009-01-27T23:54:40Z 2009-01-27T23:54:40Z The thing about emacs that I dislike is not being a default editor in many Linux distros. I don't know why, but on every Linux/Unix you sit on, you have vi or some other vi-like editor. You have to install emacs everytime. http://stackoverflow.com/questions/484009/media-analysis-java-library Comment by Ubersoldat on Media analysis java library Ubersoldat 2009-01-27T16:18:16Z 2009-01-27T16:18:16Z I forgot to mention, JMF is not an option since I don't find a way to make it work under Linux http://stackoverflow.com/questions/478150/why-are-there-many-jre-implementations/478172#478172 Comment by Ubersoldat on Why are there many JRE implementations? Ubersoldat 2009-01-25T20:34:09Z 2009-01-25T20:34:09Z You're saying that Linux doesn't have guarantees? Come on!