User Martin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T13:29:31Z http://stackoverflow.com/feeds/user/11357 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/72484#72484 48 Answer by Martin for What development book made the most impact on you as a developer? Martin 2008-09-16T13:53:46Z 2009-07-27T18:32:13Z <p><img src="http://oreilly.com/catalog/covers/9780596007126%5Fcat.gif" alt="alt text" /></p> <p><a href="http://oreilly.com/catalog/9780596007126/" rel="nofollow">Head First Design Patterns</a> as well. Not the best book I have read, but it was fun to read and since then I started reading more general books about programming instead of the usual "XY Programming Language in 21 days".</p> http://stackoverflow.com/questions/91984/how-do-i-hotkey-directly-to-file-search-tab-in-eclipse/92097#92097 3 Answer by Martin for How do I hotkey directly to File Search tab in eclipse Martin 2008-09-18T12:31:35Z 2008-09-19T06:56:32Z <p>You have to make a new key binding!</p> <p>Go to </p> <pre><code>preferences\general\keys\ </code></pre> <p>Click on </p> <pre><code>include unbound commands </code></pre> <p>Search for "file search" in the search box. Click into "binding" and add a binding:</p> <p><img src="http://www.martinsland.de/img/keybinding.PNG" alt="alt text" /></p> <p>You can use the same binding (delete the other binding in that case) or define another one (e.g. CTRL + SHIFT + H)</p> <p><strong><em>Update:</strong> As svrist pointed out: In the currently newest version of Eclipse (Ganymede) there is no "Include unbound commands" checkbox anymore. Seems to be the default behaviour there.</em></p> <p><hr /></p> <p>Other solution: You could press CTRL+3 in your editor, type in "file s", press Enter. The next time you press CTRL+3 "file search" is at the top.</p> http://stackoverflow.com/questions/91784/how-can-i-delete-duplicate-rows-in-a-table/91980#91980 6 Answer by Martin for How can I delete duplicate rows in a table Martin 2008-09-18T12:16:11Z 2008-09-18T12:23:31Z <p>The following example works as well when your PK is just a subset of all table columns.</p> <p>(Note: I like the approach with inserting another surrogate id column more. But maybe this solution comes handy as well.)</p> <p>First find the duplicate rows: </p> <pre><code>SELECT col1, col2, count(*) FROM t1 GROUP BY col1, col2 HAVING count(*) &gt; 1 </code></pre> <p>If there are only few, you can delete them manually:</p> <pre><code>set rowcount 1 delete from t1 where col1=1 and col2=1 </code></pre> <p>The value of "rowcount" should be n-1 times the number of duplicates. In this example there are 2 dulpicates, therefore rowcount is 1. If you get several duplicate rows, you have to do this for every unique primary key.</p> <p>If you have many duplicates, then copy every key once into anoher table:</p> <pre><code>SELECT col1, col2, col3=count(*) INTO holdkey FROM t1 GROUP BY col1, col2 HAVING count(*) &gt; 1 </code></pre> <p>Then copy the keys, but eliminate the duplicates.</p> <pre><code>SELECT DISTINCT t1.* INTO holddups FROM t1, holdkey WHERE t1.col1 = holdkey.col1 AND t1.col2 = holdkey.col2 </code></pre> <p>In your keys you have now unique keys. Check if you don't get any result:</p> <pre><code>SELECT col1, col2, count(*) FROM holddups GROUP BY col1, col2 </code></pre> <p>Delete the duplicates from the original table:</p> <pre><code>DELETE t1 FROM t1, holdkey WHERE t1.col1 = holdkey.col1 AND t1.col2 = holdkey.col2 </code></pre> <p>Insert the original rows:</p> <pre><code>INSERT t1 SELECT * FROM holddups </code></pre> <p>btw and for completeness: In Oracle there is a hidden field you could use (rowid):</p> <pre><code>DELETE FROM our_table WHERE rowid not in (SELECT MIN(rowid) FROM our_table GROUP BY column1, column2, column3... ; </code></pre> http://stackoverflow.com/questions/91203/software-architect/91244#91244 0 Answer by Martin for Software Architect Martin 2008-09-18T09:40:30Z 2008-09-18T09:40:30Z <p>It depends on the role a "Software Architect" has. Lately I get the impression, that what was used to be called a "Senior Developer" is now an architect.</p> <p>For me an Software Architect is a person that has a deep understanding of software in general and has worked in that field for quite some time. And instead of taking the management path has taken the technical path and staid there. And not just one path. I still don't get what e.g. an "Java Software Architect" is supposed to be. Either you have general knowledge or you don't. Someone who sticks to one technology shouldn't be called an architect.</p> <p>And here we have my answer: yes, every company should have an architect. Someone who sets the general technical direction for a project / company, which technology should be used, what kind of trainig is good...</p> http://stackoverflow.com/questions/91061/j2ee-app-server-hello-world/91149#91149 4 Answer by Martin for J2EE App Server Hello World Martin 2008-09-18T09:19:03Z 2008-09-18T09:19:03Z <p>I would choose JBoss or Glassfish for a start. However I'm not sure what you mean by J2EE "Hello World". If you just want to deploy some JSP you could use this tutorial (for JBoss):</p> <p><a href="http://www.centerkey.com/jboss/" rel="nofollow">http://www.centerkey.com/jboss/</a></p> <p>If you want to get further and do the EJB stack and/or deploy an ear-file, you could read the very good JBoss documentation:</p> <p><a href="http://www.redhat.com/docs/manuals/jboss/jboss-eap-4.3/doc/Installation_Guide/html/index.html" rel="nofollow">Installation Guide</a></p> <p><a href="http://www.redhat.com/docs/manuals/jboss/jboss-eap-4.3/doc/Getting_Started/html/index.html" rel="nofollow">Getting started</a></p> <p><a href="http://www.redhat.com/docs/manuals/jboss/jboss-eap-4.3/doc/Server_Configuration_Guide/html/index.html" rel="nofollow">Configuration Guide</a></p> <p>In general you could also just do the basic installation and change or try the pre-installed example applications. </p> <p>I currently have JBoss installed (on windows). I develop with Eclipse and use the J2EE server integration to hot deploy or debug my code. After you get your first code running you realy should have a look at the ide integration since it makes development/deploy roundtrips so much faster.</p> http://stackoverflow.com/questions/70324/java-inner-class-and-static-nested-class/70358#70358 14 Answer by Martin for Java inner class and static nested class Martin 2008-09-16T08:28:34Z 2008-09-16T08:28:34Z <p>Nested classes are divided into two categories: static and non-static. Nested classes that are declared static are simply called static nested classes. Non-static nested classes are called inner classes. </p> <p>Static nested classes are accessed using the enclosing class name:</p> <pre><code>OuterClass.StaticNestedClass </code></pre> <p>For example, to create an object for the static nested class, use this syntax:</p> <pre><code>OuterClass.StaticNestedClass nestedObject = new OuterClass.StaticNestedClass(); </code></pre> <p>Objects that are instances of an inner class exist within an instance of the outer class. Consider the following classes:</p> <pre><code>class OuterClass { ... class InnerClass { ... } } </code></pre> <p>An instance of InnerClass can exist only within an instance of OuterClass and has direct access to the methods and fields of its enclosing instance.</p> <p>To instantiate an inner class, you must first instantiate the outer class. Then, create the inner object within the outer object with this syntax:</p> <pre><code>OuterClass.InnerClass innerObject = outerObject.new InnerClass(); </code></pre> <p>see: <a href="http://java.sun.com/docs/books/tutorial/java/javaOO/nested.html" rel="nofollow">Java Tutorial - Nested Classes</a></p> http://stackoverflow.com/questions/70124/how-do-you-find-your-way-around-a-new-codebase/70241#70241 1 Answer by Martin for How do you find your way around a new codebase Martin 2008-09-16T08:02:18Z 2008-09-16T08:02:18Z <p>If you have good documented code and several unit tests I don't see much of a problem. You can get pretty far just by analysing java doc and reading the code. Especially if it's good code where every method and class has a specific purpose.</p> <p>But at work I usually stumble over large code chunks with different code styles and mixed up patterns. If variables are called a, b, c and the methods are called do() or calculate() I start debugging. It is very helpfull to put a breakpoint somewhere deep down in a method and analyze the different layers of callers and what state the variables are in.</p> <p>In general: if possible I find runtime analysis much faster and more helpful than just looking at the source.</p> http://stackoverflow.com/questions/91984/how-do-i-hotkey-directly-to-file-search-tab-in-eclipse/92425#92425 Comment by Martin on How do I hotkey directly to File Search tab in eclipse Martin 2008-09-18T13:46:45Z 2008-09-18T13:46:45Z Did you click on &quot;Include unbound commands&quot;? Otherwise you wont get that entry!