User flicken - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T13:49:14Z http://stackoverflow.com/feeds/user/12880 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1722179/can-eclipse-not-hard-code-eclipsehome-when-exporting-build-xml/1722652#1722652 1 Answer by flicken for Can Eclipse not hard-code ECLIPSE_HOME when exporting build.xml? flicken 2009-11-12T14:43:16Z 2009-11-12T14:43:16Z <p>Alternatively, due to Ant's immutable properties, you can override the value of ECLIPSE_HOME on the command line:</p> <pre><code>ant -DECLIPSE_HOME=c:/Eclipse/MyEclipseVersion build </code></pre> http://stackoverflow.com/questions/1668981/prolog-path-search-pointers/1669264#1669264 0 Answer by flicken for Prolog Path Search Pointers flicken 2009-11-03T18:27:59Z 2009-11-03T19:07:20Z <p>The (a, c) is a compound term, you can access it in a predicate like this:</p> <pre><code> my_predicate((A, B)) :- print(A), print(B). </code></pre> http://stackoverflow.com/questions/1661070/eclipse-plug-in-finding-source-parts-location/1661304#1661304 1 Answer by flicken for Eclipse plug-in - Finding source parts location flicken 2009-11-02T13:22:26Z 2009-11-02T13:22:26Z <p>You want to modify <a href="http://www.eclipse.org/articles/article.php?file=Article-JavaCodeManipulation%5FAST/index.html" rel="nofollow">Abstract Syntax Tree</a> (AST). </p> http://stackoverflow.com/questions/1637931/system-properties-cant-be-resolved-in-spring-xml-using-maven/1645653#1645653 3 Answer by flicken for System properties can't be resolved in Spring XML using Maven flicken 2009-10-29T18:24:51Z 2009-10-29T18:36:25Z <p>This is a known bug in the Surefire plugin 2.4.3. For details, see JIRA issue "<a href="http://jira.codehaus.org/browse/SUREFIRE-121" rel="nofollow">System properties set on the command line get clobbered</a>". Use the previous version, 2.4.2 instead:</p> <pre><code>&lt;build&gt; &lt;plugins&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt; &lt;!-- Use 2.4.2 because 2.4.3 has bug with system properties see http://jira.codehaus.org/browse/SUREFIRE-121 --&gt; &lt;version&gt;2.4.2&lt;/version&gt; &lt;/plugin&gt; &lt;/plugins&gt; &lt;/build&gt; </code></pre> http://stackoverflow.com/questions/1643521/java-processbuilder-external-process-hangs/1643553#1643553 0 Answer by flicken for Java ProcessBuilder: external process hangs flicken 2009-10-29T13:00:55Z 2009-10-29T13:00:55Z <p>Just a guess, but have you tried un-combining the error and output streams?</p> http://stackoverflow.com/questions/1586197/list-of-relevant-rpc-protocols/1586345#1586345 2 Answer by flicken for List of relevant RPC Protocols flicken 2009-10-18T23:38:51Z 2009-10-19T12:35:20Z <ul> <li><a href="http://en.wikipedia.org/wiki/Hessian%5F%28web%5Fservice%5Fprotocol%29" rel="nofollow">Hessian</a></li> <li><a href="http://www.caucho.com/resin-3.0/protocols/burlap.xtp" rel="nofollow">Burlap</a></li> </ul> http://stackoverflow.com/questions/1537075/rails-personal-message-plugin/1537185#1537185 0 Answer by flicken for Rails Personal Message Plugin flicken 2009-10-08T11:22:12Z 2009-10-08T11:22:12Z <p>One option: use <a href="http://www.philsergi.com/2007/10/actsasmessageable-plugin-released%5F04.html" rel="nofollow">acts_as_messageable</a>, and send the notification e-mail in the callback method <code>Message#on_deliver</code>.</p> http://stackoverflow.com/questions/1480140/calling-a-method-on-an-object-the-type-of-which-i-dont-know/1480212#1480212 1 Answer by flicken for Calling a method on an object the type of which I don't know flicken 2009-09-26T01:46:42Z 2009-09-26T01:46:42Z <p>Use &lt; ? extends Object></p> <pre><code> public class ListPostProcessor implements PostProcessor&lt;List&lt;? extends Object&gt;&gt; { ... } </code></pre> http://stackoverflow.com/questions/1389081/what-does-the-operator-stands-for-in-ruby/1389109#1389109 6 Answer by flicken for What does the operator ||= stands for in ruby? flicken 2009-09-07T12:12:46Z 2009-09-07T12:12:46Z <p>From the question <a href="http://stackoverflow.com/questions/613985/common-ruby-idioms">Common Ruby Idioms</a>:</p> <blockquote> <p>is equivalent to</p> </blockquote> <pre><code> if a == nil || a == false a = b end </code></pre> http://stackoverflow.com/questions/1376704/help-me-convert-to-java-code/1376729#1376729 4 Answer by flicken for Help me convert to java code flicken 2009-09-04T00:53:15Z 2009-09-04T00:53:15Z <p>You should use the existing Java classes <a href="http://java.sun.com/javase/6/docs/api/java/math/BigInteger.html" rel="nofollow">BigInteger</a> and/or <a href="http://java.sun.com/javase/6/docs/api/java/math/BigDecimal.html" rel="nofollow">BigDecimal</a>.</p> http://stackoverflow.com/questions/175621/starting-external-process-during-integration-testing-in-maven 0 Starting external process during integration testing in maven flicken 2008-10-06T18:35:50Z 2009-06-25T16:54:15Z <p>I want completely automated integration testing for a Maven project. The integration tests require that an external (platform-dependent) program is started before running. Ideally, the external program would be killed after the unit tests are finished, but is not necessary. </p> <p>Is there a Maven plugin to accomplish this? Other ideas?</p> http://stackoverflow.com/questions/174560/sharing-test-code-in-maven 7 Sharing Test code in Maven flicken 2008-10-06T14:38:27Z 2009-06-24T20:14:01Z <p>How can you depend on test code from another module in Maven? </p> <p>Example, I have 2 modules:</p> <ul> <li>Base</li> <li>Main</li> </ul> <p>I would like a test case in Main to extend a base test class in Base. Is this possible?</p> <p>Update: Found an <a href="http://stackoverflow.com/questions/174560/sharing-test-code-in-maven#174670">acceptable answer</a>, which involves creating a test jar.</p> http://stackoverflow.com/questions/996093/how-to-automatically-generate-comments-for-getter-setter-based-on-field-comments/996439#996439 0 Answer by flicken for How to automatically generate comments for getter/setter based on field comments in Eclipse? flicken 2009-06-15T14:32:06Z 2009-06-15T14:32:06Z <p>The <a href="http://plugins.intellij.net/plugin/?id=54" rel="nofollow" title="JavadocWriter">JavadocWriter</a> plugin for IntelliJ IDEA says it does a "smart copy the javadoc from field to accessor". Caveat utilitor: I haven't tried the plugin myself, and it hasn't been updated in 3 years.</p> http://stackoverflow.com/questions/843181/translating-blocks-and-statements-for-a-dsl/843193#843193 0 Answer by flicken for translating blocks and statements for a DSL flicken 2009-05-09T12:13:38Z 2009-05-09T12:13:38Z <blockquote> <p>Here, t is not a ruby variable and thus the block can't (and must not!) be evaluated by Ruby.</p> </blockquote> <p>Any reason for the "not evaluated" restriction? It seems like <a href="http://www.ruby-doc.org/core/classes/Kernel.html#M005951" rel="nofollow">method_missing</a> would elegantly handle evaluating the "missing" <code>t</code> variable, but Ruby would automatically dereference the <code>x</code> variable.</p> http://stackoverflow.com/questions/826210/get-class-name-from-activerecord-object/826227#826227 13 Answer by flicken for Get class name from ActiveRecord object flicken 2009-05-05T18:15:23Z 2009-05-05T18:21:23Z <p>You want to call <a href="http://www.ruby-doc.org/core/classes/Module.html#M001699" rel="nofollow">.name</a> on the object's class:</p> <pre><code>result.class.name </code></pre> http://stackoverflow.com/questions/813452/in-spring-config-can-i-define-object-of-type-string/813690#813690 2 Answer by flicken for in Spring.config, can I define object of type string? flicken 2009-05-01T23:23:34Z 2009-05-01T23:23:34Z <p>Use Spring's built-in <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html" rel="nofollow">PropertyPlaceholdConfigurer</a>:</p> <pre><code>&lt;bean id="PropertyPlaceholderConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"&gt; &lt;property name="systemPropertiesModeName" value="SYSTEM_PROPERTIES_MODE_OVERRIDE"/&gt; &lt;property name="location" value="classpath*:/application.properties"/&gt; &lt;/bean&gt; &lt;bean id="Someobject" class="somepackage.Sometype"&gt; &lt;property name="connectionString" value="${mydb}"/&gt; &lt;/bean&gt; </code></pre> <p>Setting <code>SYSTEM_PROPERTIES_MODE_OVERRIDE</code> allows overriding the property via the command line.</p> http://stackoverflow.com/questions/804247/java-cyclic-generic-type-relation-doesnt-allow-cast-from-supertype-javac-bug/804303#804303 0 Answer by flicken for Java: Cyclic generic type relation doesn't allow cast from supertype (javac bug). flicken 2009-04-29T21:14:00Z 2009-04-29T21:14:00Z <p>I've ended up using non-generics for this:</p> <pre><code> @Test public void test() { ISpace spaceSupertype = new Space(); IAtom atomSupertype = new Atom(); Space space = (Space) spaceSupertype; // ok Atom atom = (Atom) atomSupertype; // ok } </code></pre> http://stackoverflow.com/questions/788689/ruby-metaprogramming-online-tutorial/788739#788739 1 Answer by flicken for Ruby metaprogramming online tutorial flicken 2009-04-25T11:28:54Z 2009-04-25T11:28:54Z <p>Here is a nice overview: <a href="http://ola-bini.blogspot.com/2006/09/ruby-metaprogramming-techniques.html" rel="nofollow">http://ola-bini.blogspot.com/2006/09/ruby-metaprogramming-techniques.html</a></p> http://stackoverflow.com/questions/741687/detecting-conflicts-in-recurring-events/741773#741773 0 Answer by flicken for detecting conflicts in recurring events flicken 2009-04-12T13:28:50Z 2009-04-12T13:58:47Z <p>Assuming the recurrences are sortable, you can sort them in O(n*log(n), and only compare to neighboring events. Here's a start:</p> <pre><code>def conflicts?(other) conflicts = 0 # Generate all recurrences and sort all_recurrences = recurrences + other.recurrences all_recurrences.sort! # Keep track of what immediate neighbors could be conflicting conflicting = [] all_recurrences.each do |my_rec| conflicting.each do |other_rec| do start, finish = other_rec.first, other_rec.last if my_rec.include?(start) || my_rec.include?(finish) then # TODO update conflicting array: add my_rec + other_rec if conflicting conflicts += 1 else # TODO remove other_rec if not conflicting end end end conflicts &gt; 0 end </code></pre> http://stackoverflow.com/questions/732522/how-do-you-compare-2-items-in-a-generic-list/732542#732542 4 Answer by flicken for How do you compare 2 items in a generic list? flicken 2009-04-09T02:10:44Z 2009-04-09T02:10:44Z <p>Look into the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Comparator.html" rel="nofollow">Comparator</a> and <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Comparable.html" rel="nofollow">Comparable</a> interfaces. </p> <p>Your sort method should take <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Comparator.html" rel="nofollow">Comparator</a> or you should specify &lt; T extends Comparable > so that the Comparable interface can be used. </p> <pre><code>public void sort(Comparable&lt;T&gt; comparator) { sort(SortType.MERGE, comparator); } .... private LList&lt;T&gt; merge(LList&lt;T&gt; first, LList&lt;T&gt; second) { ... if(comparator.compare(first.headNode.data, second.headNode.data) &lt; 0) { ... } </code></pre> http://stackoverflow.com/questions/720224/providing-simple-address-driving-directions-with-google-maps/721274#721274 2 Answer by flicken for Providing simple address/driving directions with Google Maps flicken 2009-04-06T12:47:43Z 2009-04-06T12:47:43Z <p>You don't need to use the API for this. You can send a query directly to a Google maps object in an iframe.</p> <p>For example, to show the White House:</p> <pre><code> &lt;iframe src="http://maps.google.com/maps?geocode=&amp;q=1600%20Pennsylvania%20Avenue%20NW,%20washington,%20DC" width="100%" height="300" &gt; &lt;p&gt;Your browser does not support iframes.&lt;/p&gt; &lt;/iframe&gt; </code></pre> <p>The resulting map has a single address marker which allows the user to get directions.</p> http://stackoverflow.com/questions/686635/is-it-possible-to-have-multiple-propertyplaceholderconfigurer-in-my-applicationco/688346#688346 4 Answer by flicken for Is it possible to have multiple PropertyPlaceHolderConfigurer in my applicationContext? flicken 2009-03-27T02:47:05Z 2009-03-27T02:47:05Z <p>Yes you can do more than one. Be sure to set <a href="http://static.springframework.org/spring/docs/2.5.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html#setIgnoreUnresolvablePlaceholders(boolean)" rel="nofollow">ignoreUnresolvablePlaceholders</a> so that the first will ignore any placeholders that it can't resolve.</p> <pre><code>&lt;bean id="ppConfig1" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"&gt; &lt;property name="ignoreUnresolvablePlaceholders" value="true"/&gt; &lt;property name="locations"&gt; &lt;list&gt; &lt;value&gt;classpath*:/my.properties&lt;/value&gt; &lt;/list&gt; &lt;/property&gt; &lt;/bean&gt; &lt;bean id="ppConfig2" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"&gt; &lt;property name="ignoreUnresolvablePlaceholders" value="false"/&gt; &lt;property name="locations"&gt; &lt;list&gt; &lt;value&gt;classpath*:/myOther.properties&lt;/value&gt; &lt;/list&gt; &lt;/property&gt; &lt;/bean&gt; </code></pre> <p>Depending on your application, you should investigate systemPropertiesMode, it allows you to load properties from a file, but allow the system properties to override values in the property file if set.</p> http://stackoverflow.com/questions/422848/ant-how-to-modify-java-library-path-in-a-buildfile/674411#674411 0 Answer by flicken for ANT: How to modify java.library.path in a buildfile flicken 2009-03-23T17:32:10Z 2009-03-23T17:32:10Z <p>If you really want to change a property, you can do this in a Java task or in a scripting language. </p> <p>Here is an example using Groovy:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;project name="example" default="run"&gt; &lt;taskdef name="groovy" classname="org.codehaus.groovy.ant.Groovy" classpath="lib/groovy-all-1.1-rc-1.jar"/&gt; &lt;target name="run"&gt; &lt;echo&gt;java.library.path = ${java.library.path}&lt;/echo&gt; &lt;groovy&gt; properties["java.library.path"] = "changed" &lt;/groovy&gt; &lt;echo&gt;java.library.path = ${java.library.path}&lt;/echo&gt; &lt;/target&gt; &lt;/project&gt; </code></pre> <p>Caution, this violates Ant's "immutable property" property. Use at your own risk.</p> http://stackoverflow.com/questions/674276/how-do-you-access-ant-properties-from-within-a-shellscript-task/674313#674313 1 Answer by flicken for How do you access ant properties from within a shellscript task? flicken 2009-03-23T17:14:16Z 2009-03-23T17:14:16Z <p>According to the <a href="http://ant-contrib.sourceforge.net/tasks/tasks/shellscript.html" rel="nofollow">shellscript documentation</a>:</p> <blockquote> <p>Embedded ant properties will be converted.</p> </blockquote> <p>So you can use the ${variable} notation:</p> <pre><code>&lt;shellscript shell="bash" dir="${build.dir}"&gt; echo "Version: ${version}" &lt;/shellscript&gt; </code></pre> http://stackoverflow.com/questions/669271/what-is-the-difference-between-the-template-and-the-strategy-pattern/669306#669306 2 Answer by flicken for What is the difference between the template and the strategy pattern? flicken 2009-03-21T13:32:43Z 2009-03-21T13:32:43Z <p>Inheritance versus aggregation (is-a versus has-a). It's two ways to achieve the same goal. </p> <p>This question shows some of trade-offs between choices: <a href="http://stackoverflow.com/questions/269496/inheritance-vs-aggregation">http://stackoverflow.com/questions/269496/inheritance-vs-aggregation</a></p> http://stackoverflow.com/questions/515575/limit-map-key-and-value-types-more-complicated/515743#515743 1 Answer by flicken for limit map key and value types - more complicated flicken 2009-02-05T12:38:47Z 2009-02-05T16:29:53Z <p>You can extract a method to get the validator. All access to the <code>validators</code> Map is through type-checked method, and are thus type-safe.</p> <pre><code> protected &lt;A extends Annotation&gt; AnnotatedFieldValidator&lt;A&gt; getValidator(A a) { // unchecked cast, but isolated in method return (AnnotatedFieldValidator&lt;A&gt;) validators.get(a); } public void validate(Object o) { Object target = null; Field[] fields = getAllFields(o.getClass()); for (Field field : fields) { for (Annotation a : field.getAnnotations()) { AnnotatedFieldValidator&lt;Annotation&gt; validator = getValidator(a); if (validator != null) { validator.validate(field, a, target); } } } } // Generic map private Map&lt;Class&lt;? extends Annotation&gt;, AnnotatedFieldValidator&lt;? extends Annotation&gt;&gt; validators; </code></pre> <p>(Removed second suggestion as duplicate.)</p> http://stackoverflow.com/questions/364523/is-there-a-general-backend-library-for-java-reflection/365724#365724 0 Answer by flicken for Is there a general "backend" library for Java reflection flicken 2008-12-13T21:00:01Z 2008-12-13T21:00:01Z <p>Try the <a href="http://fest.easytesting.org/reflect/wiki/pmwiki.php" rel="nofollow">FEST Reflection</a> module. It's a fluent way to do Java reflection. For example:</p> <pre><code> String name = method("get").withReturnType(String.class) .withParameterTypes(int.class) .in(names) .invoke(8); </code></pre> http://stackoverflow.com/questions/350620/how-do-i-use-a-variable-in-a-grep-with-groovy/351238#351238 0 Answer by flicken for How do I use a variable in a grep with groovy? flicken 2008-12-08T22:49:08Z 2008-12-08T22:49:08Z <p>You need {}'s around the variable expression. That is:</p> <pre><code> "${l.get(0)}" </code></pre> <p>See <a href="http://groovy.codehaus.org/JN1525-Strings" rel="nofollow">Groovy String</a> documentation for more information. </p> <p>Full example:</p> <pre><code>List l = new ArrayList{a@yahoo.com, b@gmail.com} def gmail = ['sh','-c','grep "clientLogin="${l.get(0)} file.txt' | grep gmail | wc -l ] def yahoo = ['sh','-c','grep "clientLogin="${l.get(1)} file.txt' | grep yahoo| wc -l ] </code></pre> http://stackoverflow.com/questions/273662/building-with-ant-dynamic-build-options/275622#275622 1 Answer by flicken for Building with ant : dynamic build options? flicken 2008-11-09T04:58:20Z 2008-11-09T04:58:20Z <p>You can override ant properties from the command line. </p> <pre><code>ant -Dinstall.location=/bob1 install </code></pre> <p>See <a href="http://ant.apache.org/manual/running.html" rel="nofollow">Running Ant</a> for more information.</p> http://stackoverflow.com/questions/218813/jmock-mocking-a-static-method/218870#218870 1 Answer by flicken for jmock mocking a static method flicken 2008-10-20T15:43:22Z 2008-10-20T15:43:22Z <p>See related question <a href="http://stackoverflow.com/questions/153048/how-to-mock-with-static-methods">How to mock with static methods</a>. </p> http://stackoverflow.com/questions/1393842/starting-an-external-program-in-java-and-piping-its-output/1393891#1393891 Comment by flicken on Starting an external program in Java and piping it's output flicken 2009-09-08T13:06:49Z 2009-09-08T13:06:49Z You presumably mean #exec(String): <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Runtime.html#exec(java.lang.String" rel="nofollow">java.sun.com/j2se/1.5.0/&hellip;</a>) http://stackoverflow.com/questions/896255/java-classloading-running-extremely-slow Comment by flicken on Java classloading running extremely slow? flicken 2009-05-22T04:48:45Z 2009-05-22T04:48:45Z Is the real &quot;Foo&quot; in a package? Loading from the default package (no package) can have strange effects. Try moving to foo.Foo. http://stackoverflow.com/questions/843181/translating-blocks-and-statements-for-a-dsl/843544#843544 Comment by flicken on translating blocks and statements for a DSL flicken 2009-05-09T16:29:59Z 2009-05-09T16:29:59Z The OP also wants unbound variables, like 't' in the original example, so you'd have to catch NameError exceptions. http://stackoverflow.com/questions/843181/translating-blocks-and-statements-for-a-dsl/843193#843193 Comment by flicken on translating blocks and statements for a DSL flicken 2009-05-09T16:27:00Z 2009-05-09T16:27:00Z Nevermind, Justin Love beat me to it. http://stackoverflow.com/questions/843181/translating-blocks-and-statements-for-a-dsl/843193#843193 Comment by flicken on translating blocks and statements for a DSL flicken 2009-05-09T16:26:02Z 2009-05-09T16:26:02Z Makes sense. Instead, use Kernel#bindings to dereference any variable. I'll post another answer with details. http://stackoverflow.com/questions/690155/tutorial-on-jpa-mapping-file/690307#690307 Comment by flicken on Tutorial on JPA mapping file flicken 2009-03-27T15:59:13Z 2009-03-27T15:59:13Z Second link is broken. Link: <a href="http://schuchert.wikispaces.com/JPA+Tutorial+1+-+Getting+Started" rel="nofollow">schuchert.wikispaces.com/JPA+Tutorial+1+-+Getting&hellip;</a> http://stackoverflow.com/questions/673962/does-anyone-know-how-to-extract-a-date-from-a-record-in-java/674076#674076 Comment by flicken on Does anyone know how to extract a date from a record in java? flicken 2009-03-23T17:11:16Z 2009-03-23T17:11:16Z For date parsing/extracting, use JodaTime: <a href="http://joda-time.sourceforge.net/" rel="nofollow">joda-time.sourceforge.net</a> http://stackoverflow.com/questions/515575/limit-map-key-and-value-types-more-complicated/516085#516085 Comment by flicken on limit map key and value types - more complicated flicken 2009-02-05T16:38:56Z 2009-02-05T16:38:56Z Glad you found an acceptable solution. I prefer extracting the getValidator method, because it encapsulates access to the validators Map. However, yours looks more elegant at the top-level validate method. http://stackoverflow.com/questions/370695/java-listener-inheritance Comment by flicken on Java Listener inheritance flicken 2009-01-29T13:59:26Z 2009-01-29T13:59:26Z Side note: a ConcurrentModificationException can occur in the fireXXX methods unless you synchronize those as well (expensive!). For typical use cases, it's faster and less error-prone to use java.util.concurrent.CopyOnWriteArrayList for your listener list so that synchronization is unnecessary. http://stackoverflow.com/questions/229856/ways-to-save-enums-in-database/229919#229919 Comment by flicken on Ways to save enums in database flicken 2008-10-23T21:45:40Z 2008-10-23T21:45:40Z @anonymousstackoverflowuser.openid.org: See <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/Enum.html#name" rel="nofollow">java.sun.com/j2se/1.5.0/&hellip;</a>() http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/218135#218135 Comment by flicken on What was the strangest coding standard rule that you were forced to follow? flicken 2008-10-20T15:48:17Z 2008-10-20T15:48:17Z See this Joel on Software post about how <i>proper</i> use of Hungarian notation can help reduce bugs: <a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">joelonsoftware.com/articles/Wrong.html</a> http://stackoverflow.com/questions/203286/what-things-didnt-you-know-you-needed-but-are-now-very-glad-you-have/203463#203463 Comment by flicken on What things didn't you know you needed but are now very glad you have? flicken 2008-10-16T14:20:55Z 2008-10-16T14:20:55Z Eclipse has &quot;Drop to Frame&quot;, which backs up to the start of the current method (or any other method in the call stack). With small enough methods, the amount of forward stepping is minimal. http://stackoverflow.com/questions/198831/activerecord-association-question-getting-hasmany-through-to-work/199830#199830 Comment by flicken on Activerecord association question: getting has_many :through to work flicken 2008-10-14T14:17:57Z 2008-10-14T14:17:57Z Ensure you use 'uniq' after 'flatten', so you don't get duplicate coaches. http://stackoverflow.com/questions/175621/starting-external-process-during-integration-testing-in-maven/175664#175664 Comment by flicken on Starting external process during integration testing in maven flicken 2008-10-06T19:24:00Z 2008-10-06T19:24:00Z Commands are project-specific executables, so a generic 'execute' plugin would be necessary. http://stackoverflow.com/questions/175621/starting-external-process-during-integration-testing-in-maven/175664#175664 Comment by flicken on Starting external process during integration testing in maven flicken 2008-10-06T19:02:38Z 2008-10-06T19:02:38Z An interesting, non-intuitive use of the antrun plugin. I was hoping for something cleaner, but this just might work for me.