User Ubersoldat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T10:01:05Zhttp://stackoverflow.com/feeds/user/48869http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1856133/separate-code-and-comments0Separate code and commentsUbersoldat2009-12-06T18:24:33Z2009-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><comments>
<comment id="541" file="x.py" line="14">This is a comment</comment>
<comments>
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/95072/what-are-your-favorite-vim-tricks/1770162#17701620Answer by Ubersoldat for What are your favorite Vim tricks?Ubersoldat2009-11-20T12:26:06Z2009-11-20T12:26:06Z<p>Make vimdiff a great merge tool</p>
<pre><code>function Vimdiff()
nmap <F7> [czz
nmap <F8> ]czz
nmap <F2> do
nmap <F3> dp
endfunction
au FilterWritePre * if &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#17481441Answer by Ubersoldat for Using grep to find files that doesn't contain a given string patternUbersoldat2009-11-17T11:11:24Z2009-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-message2JBoss doesn't sends a JmsTemplate (Spring) messageUbersoldat2009-06-22T09:25:10Z2009-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-connection1Android HTTP ConnectionUbersoldat2009-01-14T10:11:49Z2009-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#13477460Answer by Ubersoldat for What's the best way to get text user-interfaces (ncurses-like) functionality in Java?Ubersoldat2009-08-28T15:27:35Z2009-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#5031341Answer by Ubersoldat for "Best" background color for your editorUbersoldat2009-02-02T13:07:30Z2009-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-ejbs1Share static singletons through EJB's Ubersoldat2009-01-30T22:35:33Z2009-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() -> 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#4975920Answer by Ubersoldat for Is there a simple way to do GUI input for a relational database?Ubersoldat2009-01-30T22:47:23Z2009-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-library0Media analysis java libraryUbersoldat2009-01-27T16:12:22Z2009-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#4858640Answer by Ubersoldat for When coding, what do you worry about?Ubersoldat2009-01-27T23:43:30Z2009-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#4785450Answer by Ubersoldat for What is the best approach to take when you can't figure something out, and you have no one to ask?Ubersoldat2009-01-25T23:47:20Z2009-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#4785340Answer by Ubersoldat for Can I add and remove elements of enumeration at runtime in JavaUbersoldat2009-01-25T23:41:05Z2009-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#4785202Answer by Ubersoldat for What are the appropriate uses for MS Access?Ubersoldat2009-01-25T23:29:46Z2009-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#4783993Answer by Ubersoldat for Last words of a ??? programmerUbersoldat2009-01-25T22:05:35Z2009-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-2Answer by Ubersoldat for Can I execute a shell script from a web page?Ubersoldat2009-01-21T23:37:05Z2009-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-6Answer by Ubersoldat for How does Open Source enforcement work?Ubersoldat2009-01-21T23:27:24Z2009-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#4581840Answer by Ubersoldat for If you had one month to work on anything you wanted, what would you do?Ubersoldat2009-01-19T16:23:30Z2009-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#4579852Answer by Ubersoldat for What are the things Java got right? Ubersoldat2009-01-19T15:31:42Z2009-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#4506240Answer by Ubersoldat for Using Linux vs Windows for developmentUbersoldat2009-01-16T14:55:53Z2009-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#4451981Answer by Ubersoldat for To check in, or not check in, the entire Eclipse project?Ubersoldat2009-01-15T00:22:53Z2009-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#4423724Answer by Ubersoldat for Geeky (desk) accessoryUbersoldat2009-01-14T09:17:48Z2009-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#4423662Answer by Ubersoldat for Should Java break backwards compatibility in future versions for the benefit of a cleaner language?Ubersoldat2009-01-14T09:15:05Z2009-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-2Answer by Ubersoldat for Is there any scenario where an application instance runs across multiple computers?Ubersoldat2009-01-13T17:24:36Z2009-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#4398930Answer by Ubersoldat for Good code to read?Ubersoldat2009-01-13T17:19:06Z2009-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#4391510Answer by Ubersoldat for Starting programming career at age 33. How will employers see it?Ubersoldat2009-01-13T14:38:56Z2009-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#4387830Answer by Ubersoldat for What's your choice for testing your program in a virtual machine?Ubersoldat2009-01-13T12:23:24Z2009-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#4387770Answer by Ubersoldat for Which J2EE Web App Hosting Would You Recommend for Casual Projects?Ubersoldat2009-01-13T12:21:37Z2009-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#4373220Answer by Ubersoldat for Eclipse: detach package explorer, outline panels?Ubersoldat2009-01-12T22:47:34Z2009-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#4372850Answer by Ubersoldat for how to open a file in a list of files in vim?Ubersoldat2009-01-12T22:34:24Z2009-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-commentsComment by Ubersoldat on Separate code and commentsUbersoldat2009-12-06T19:11:39Z2009-12-06T19:11:39ZThomas, I find it rude for someone to delete a comment from someone else. What can you put on the commit log? "Deleted stupid comment"?http://stackoverflow.com/questions/1856133/separate-code-and-commentsComment by Ubersoldat on Separate code and commentsUbersoldat2009-12-06T19:02:31Z2009-12-06T19:02:31ZCarl, 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-5Comment by Ubersoldat on how to instal netbeans enterprise 5.5 upon netbeans IDE 6.5Ubersoldat2009-11-17T11:09:26Z2009-11-17T11:09:26ZWhat do you mean with "upon it"? 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-messageComment by Ubersoldat on JBoss doesn't sends a JmsTemplate (Spring) messageUbersoldat2009-11-17T11:07:35Z2009-11-17T11:07:35ZThis behaviour is the same on every JBoss version I've tested: 4.2, 5.0 and 5.1http://stackoverflow.com/questions/1026259/jboss-doesnt-sends-a-jmstemplate-spring-message/1681622#1681622Comment by Ubersoldat on JBoss doesn't sends a JmsTemplate (Spring) messageUbersoldat2009-11-17T11:00:34Z2009-11-17T11:00:34ZThanks 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#696490Comment by Ubersoldat on what is tunnelling (ssh tunneling and ppp tunneling)Ubersoldat2009-11-04T16:37:36Z2009-11-04T16:37:36ZHaha... 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-versionsComment by Ubersoldat on Tool to read and display Java .class versionsUbersoldat2009-08-18T12:15:33Z2009-08-18T12:15:33ZI 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#1026290Comment by Ubersoldat on JBoss doesn't sends a JmsTemplate (Spring) messageUbersoldat2009-06-22T09:40:10Z2009-06-22T09:40:10Z"and sends should only be executed when the tx commits"
But this disallows any possible use of synchronous receptions.http://stackoverflow.com/questions/497552/share-static-singletons-through-ejbsComment by Ubersoldat on Share static singletons through EJB's Ubersoldat2009-02-02T12:28:15Z2009-02-02T12:28:15ZThanks 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, topshttp://stackoverflow.com/questions/484009/media-analysis-java-library/487574#487574Comment by Ubersoldat on Media analysis java libraryUbersoldat2009-01-30T22:19:10Z2009-01-30T22:19:10ZVery 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#487609Comment by Ubersoldat on Media analysis java libraryUbersoldat2009-01-30T22:16:39Z2009-01-30T22:16:39ZThere are many tools that I know of that can achieve this... but not in Javahttp://stackoverflow.com/questions/484009/media-analysis-java-library/488399#488399Comment by Ubersoldat on Media analysis java libraryUbersoldat2009-01-30T22:15:57Z2009-01-30T22:15:57ZThat's the sort of thing I would prefer to avoid.http://stackoverflow.com/questions/485120/will-emacs-make-me-a-better-programmerComment by Ubersoldat on Will emacs make me a better programmer?Ubersoldat2009-01-27T23:54:40Z2009-01-27T23:54:40ZThe 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-libraryComment by Ubersoldat on Media analysis java libraryUbersoldat2009-01-27T16:18:16Z2009-01-27T16:18:16ZI forgot to mention, JMF is not an option since I don't find a way to make it work under Linuxhttp://stackoverflow.com/questions/478150/why-are-there-many-jre-implementations/478172#478172Comment by Ubersoldat on Why are there many JRE implementations?Ubersoldat2009-01-25T20:34:09Z2009-01-25T20:34:09ZYou're saying that Linux doesn't have guarantees? Come on!