User Skillwired - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T16:50:56Zhttp://stackoverflow.com/feeds/user/6856http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1927291/passing-hashes-instead-of-method-parameters5Passing hashes instead of method parametersSkillwired2009-12-18T09:54:28Z2009-12-18T22:34:11Z
<p>I see that in Ruby (and dynamically typed languages, in general) a very common practice is to pass a hash, instead of declaring concrete method parameters. For example, instead of declaring a method with parameters and calling it like this:</p>
<pre><code>def my_method(width, height, show_border)
my_method(400, 50, false)
</code></pre>
<p>you can do it this way:</p>
<pre><code>def my_method(options)
my_method({width => 400, height => 50, show_border => false})
</code></pre>
<p>I'd like to know your opinion about it. Is it a good or a bad practice, should we do it or not? In what situation using this practice is valid, and it what situation can it be dangerous?</p>
http://stackoverflow.com/questions/657987/open-closed-principle-and-java-final-modifier9Open-closed principle and Java "final" modifier.Skillwired2009-03-18T12:08:58Z2009-06-27T22:50:41Z
<p>The open-closed principle states that "Software entities (classes, modules, functions, etc.) should be open for extension, but closed for modification".</p>
<p>However, Joshua Bloch in his famous book "Effective Java" gives the following advice: "Design and document for inheritance, or else prohibit it", and encourages programmers to use the "final" modifier to prohibit subclassing.</p>
<p>I think these two principles clearly contradict each other (am I wrong?). Which principle do you follow when writing your code, and why? Do you leave your classes open, disallow inheritance on some of them (which ones?), or use the final modifier whenever possible?</p>
http://stackoverflow.com/questions/64148/how-to-upgrade-database-schema-built-with-an-orm-tool3How to upgrade database schema built with an ORM tool?Skillwired2008-09-15T15:52:31Z2008-12-11T03:17:32Z
<p>I'm looking for a general solution for upgrading database schema with ORM tools, like JPOX or Hibernate. How do you do it in your projects?</p>
<p>The first solution that comes to my mind is to create my own mechanism for upgrading databases, with SQL scripts doing all the work. But in this case I'll have to remember about creating new scripts every time the object mappings are updated. And I'll still have to deal with low-level SQL queries, instead of just defining mappings and allowing the ORM tools to do all the job...</p>
<p>So the question is how to do it properly. Maybe some tools allow for simplifying this task (for example, I heard that Rails have such mechanism built-in), if so please help me decide which ORM tool to choose for my next Java project.</p>
http://stackoverflow.com/questions/201386/what-exactly-is-intentional-programming/204188#2041882Answer by Skillwired for What exactly is Intentional ProgrammingSkillwired2008-10-15T09:48:49Z2008-10-15T09:48:49Z<p>Seems to me like yet another fad of software engineering. We've seen thousands of them already: meta programming, generative programming, visual programming, and so on. For a short time they get very fashionable, people use it everywhere, and then they invariably go back to old ways of creating software. </p>
<p>Why? Frederick Brooks has already answered this question over 20 years ago: there's <a href="http://www.lips.utexas.edu/ee382c-15005/Readings/Readings1/05-Broo87.pdf" rel="nofollow">No Single Silver Bullet</a> to kill the werewolf...</p>
http://stackoverflow.com/questions/92159/how-do-you-vent-stress-as-a-programmer/95735#957351Answer by Skillwired for How do you vent stress as a programmer?Skillwired2008-09-18T19:00:43Z2008-09-18T19:00:43Z<p>Start playing squash.</p>
http://stackoverflow.com/questions/72682/is-there-a-name-for-this-anti-pattern-code-smell/72840#7284010Answer by Skillwired for Is there a name for this anti-pattern/code smell?Skillwired2008-09-16T14:22:29Z2008-09-16T14:22:29Z<p><a href="http://www.refactoring.com/catalog/replaceErrorCodeWithException.html" rel="nofollow">Replace Error Code with Exception</a></p>
http://stackoverflow.com/questions/69702/java-collections-using-wildcard/70393#703932Answer by Skillwired for Java Collections using wildcardSkillwired2008-09-16T08:35:29Z2008-09-16T09:02:57Z<p>Let's say you have an interface and two classes:</p>
<pre><code>interface IResult {}
class AResult implements IResult {}
class BResult implements IResult {}
</code></pre>
<p>Then you have classes that return a list as a result:</p>
<pre><code>interface ITest<T extends IResult> {
List<T> getResult();
}
class ATest implements ITest<AResult> {
// look, overridden!
List<AResult> getResult();
}
class BTest implements ITest<BResult> {
// overridden again!
List<BResult> getResult();
}
</code></pre>
<p>It's a good solution, when you need "covariant returns", but you return collections instead of your own objects. The big plus is that you don't have to cast objects when using ATest and BTest independently from the ITest interface. However, when using ITest interface, you cannot add anything to the list that was returned - as you cannot determine, what object types the list really contains! If it would be allowed, you would be able to add BResult to List<AResult> (returned as List<? extends T>), which doesn't make any sense.</p>
<p>So you have to remember this: List<? extends X> defines a list that could be easily overridden, but which is read-only.</p>
http://stackoverflow.com/questions/70324/java-inner-class-and-static-nested-class/70522#705220Answer by Skillwired for Java inner class and static nested classSkillwired2008-09-16T08:58:40Z2008-09-16T08:58:40Z<p>The instance of the inner class is created when instance of the outer class is created. Therefore the members and methods of the inner class have access to the members and methods of the instance (object) of the outer class. When the instance of the outer class goes out of scope, also the inner class instances cease to exist.</p>
<p>The static nested class doesn't have a concrete instance. It's just loaded when it's used for the first time (just like the static methods). It's a completely independent entity, whose methods and variables doesn't have any access to the instances of the outer class.</p>
<p>The static nested classes are not coupled with the outer object, they are faster, and they don't take heap/stack memory, because its not necessary to create instance of such class. Therefore the rule of thumb is to try to define static nested class, with as limited scope as possible (private >= class >= protected >= public), and then convert it to inner class (by removing "static" identifier) and loosen the scope, if it's really necessary.</p>
http://stackoverflow.com/questions/70216/whats-the-purpose-of-meta-inf/70242#702420Answer by Skillwired for What's the purpose of META-INF?Skillwired2008-09-16T08:02:31Z2008-09-16T08:02:31Z<p><a href="http://java.sun.com/docs/books/tutorial/deployment/jar/manifestindex.html" rel="nofollow">Working with Manifest Files: The Basics</a></p>
http://stackoverflow.com/questions/64333/what-is-the-downside-to-test-driven-development/67727#677270Answer by Skillwired for What is the downside to Test Driven Development?Skillwired2008-09-15T22:49:01Z2008-09-15T22:49:01Z<p>The biggest problem are the people who don't know how to write proper unit tests. They write tests that depend on each other (and they work great running with Ant, but then all of sudden fail when I run them from Eclipse, just because they run in different order). They write tests that don't test anything in particular - they just debug the code, check the result, and change it into test, calling it "test1". They widen the scope of classes and methods, just because it will be easier to write unit tests for them. The code of unit tests is terrible, with all the classical programming problems (heavy coupling, methods that are 500 lines long, hard-coded values, code duplication) and is a hell to maintain. For some strange reason people treat unit tests as something inferior to the "real" code, and they don't care about their quality at all. :-(</p>
http://stackoverflow.com/questions/67097/is-there-any-mandatory-certification-a-programmer-should-have/67570#675705Answer by Skillwired for Is there any mandatory certification a programmer should have?Skillwired2008-09-15T22:17:42Z2008-09-15T22:17:42Z<p>I don't think there are certificates that are good for every programmer. But if you're specializing in a certain field, a certificate is definitely a PLUS (so don't listen to guys that say something opposite ;-)). The truth is that 95% of programmers do not participate in any open source project, write own blogs, read programming blogs and books, or visit sites like stackoverflow.com. They believe that don't have to do anything to hone their skills, and their "professional experience" is everything that matters.</p>
<p>A certificate is a clear sign that you're not just one of them; that you actually care and you want to develop. Then, a certificate has the same advantages as any other exam, it forces you to review the material, to remind things that you really should remember, and also to learn something new in this process. And, if you're looking for a job abroad, I guarantee that a well recognized certificate is something that your future employer will like to see on your CV.</p>
<p>As I said at the beginning, I cannot recommend a certificate that will be good for every programmer. But for Java programmers the Sun certificates (SCJP, SCWCD, SCBCD, SCJD, SCEA) is definitely something worth looking at.</p>
http://stackoverflow.com/questions/154314/when-to-use-final/154510#154510Comment by Skillwired on When to use finalSkillwired2008-10-01T10:13:17Z2008-10-01T10:13:17ZJoshua Bloch argues that all classes should be defined as final, unless they are designed for inheritance. I agree with him; I add final to every class that implement an interface (to be able to create unit tests). Also mark as final all protected/class methods, which are not going to be overridden.