User Adam Jaskiewicz - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T11:31:33Zhttp://stackoverflow.com/feeds/user/35322http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/859095/what-is-the-reason-for-the-rise-of-programmers-using-apple-machines/945400#9454006Answer by Adam Jaskiewicz for What is the reason for the rise of programmers using Apple machines?Adam Jaskiewicz2009-06-03T15:27:11Z2009-09-12T19:35:51Z<p>I'm a developer who is thinking of buying an Apple. Here are my reasons:</p>
<ol>
<li><p>I like having a UNIX command line available. Cygwin is nice, but it just feels klunky compared to a real UNIX/Linux. Thus, I would like my primary OS to be a UNIX or UNIX-like environment. This limits me to Mac OS X, Linux, Solaris, or a BSD. I'm mainly a Linux guy, but I've messed with all of those enough that I'm comfortable with whatever.</p></li>
<li><p>I'm into photography. There is some really nice photo software out there that my pro-photographer friends swear by (Photoshop, Lightroom), and from what I've seen of the Open Source competitors, they just aren't there yet. This software is only available for Windows and Mac OS X.</p></li>
<li><p>The combination of 1 and 2 leaves me with Mac OS X as a primary OS.</p></li>
<li><p>I don't want to deal with Hackintosh stuff. It's worth it to me to spend a little extra and have it work out of the box. Yeah, I'll probably buy with fairly minimal specs and upgrade RAM/hard drive myself if I feel the need, and save some $$$ that way.</p></li>
<li><p>I can always run Windows, Linux, Solaris, *BSD, etc. in a VM.</p></li>
<li><p>Apple hardware is cute.</p></li>
</ol>
<p>Most of my actual development work isn't platform-specific, and what is I can always run in a VM or on one of my other computers.</p>
http://stackoverflow.com/questions/970029/java-primitive-data-types/970340#9703402Answer by Adam Jaskiewicz for Java Primitive Data TypesAdam Jaskiewicz2009-06-09T14:18:43Z2009-06-09T14:18:43Z<p>Because there are two categories of types in Java.</p>
<p>From the <a href="http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html" rel="nofollow">Java Language Specification, CHAPTER 4:
Types, Values, and Variables</a>:</p>
<blockquote>The types of the Java programming language are divided into two categories: primitive types and reference types. The primitive types <a href="http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#85587" rel="nofollow">(§4.2)</a> are the <code>boolean</code> type and the numeric types. The numeric types are the integral types <code>byte</code>, <code>short</code>, <code>int</code>, <code>long</code>, and <code>char</code>, and the floating-point types <code>float</code> and <code>double</code>. The reference types <a href="http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#9317" rel="nofollow">(§4.3)</a> are class types, interface types, and array types. There is also a special null type. An object <a href="http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#12028" rel="nofollow">(§4.3.1)</a> is a dynamically created instance of a class type or a dynamically created array. The values of a reference type are references to objects. All objects, including arrays, support the methods of class <code>Object</code> <a href="http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#11055" rel="nofollow">(§4.3.2)</a>. String literals are represented by <code>String</code> objects <a href="http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#26992" rel="nofollow">(§4.3.3)</a>.</blockquote>
http://stackoverflow.com/questions/953221/what-college-has-good-coverage-on-design-patterns-css-and-javascript/953358#9533582Answer by Adam Jaskiewicz for What college has good coverage on Design Patterns, CSS, and JavaScript?Adam Jaskiewicz2009-06-04T21:58:02Z2009-06-04T22:09:16Z<p>"Design Patterns" may or may not be covered in an Object Oriented Design course (they should be covered in such a course, IMO), which is probably a requirement. It might not be obvious from a course listing if something like Design Patterns are part of the curriculum, though; you might have to look through course descriptions, or even dig through syllabi posted on course web sites.</p>
<p>"CSS, Javascript, AJAX, DOM Scripting, and Web architecture" is mostly pretty specific stuff to web design, so it isn't going to be (and shouldn't be) in a core CS curriculum. It may be offered in CS electives, and some of it may be offered in a different department at a University (e.g., the department that teaches Visual Arts/Graphic Design might have a CSS course). A University may have a "Web Application Development" <strong>concentration</strong> that is considered a CS or Software Engineering degree, and most Universities allow you to choose "technical electives" that are non-core CS courses in specific topics, the idea being that you take a few courses to specialize in a certain area of Computer Science.</p>
<p>I think that's the way it should be. OOD is <strong>far</strong> more difficult and abstract of a subject than Javascript, CSS, AJAX, etc., and you will benefit far more from having someone there to teach, test, and mentor you.</p>
http://stackoverflow.com/questions/939633/is-there-an-off-the-shelf-clock-synchronization-solution-for-java/940016#9400160Answer by Adam Jaskiewicz for Is there an off-the-shelf clock synchronization solution for Java?Adam Jaskiewicz2009-06-02T14:53:54Z2009-06-02T14:53:54Z<p>I'd really just use NTP. It's pretty accurate even over the internet, and on a LAN it should be even better. According to Wikipedia[<a href="http://en.wikipedia.org/wiki/Network_Time_Protocol" rel="nofollow">1</a>],</p>
<blockquote>NTPv4 can usually maintain time to within 10 milliseconds (1/100 s) over the public Internet, and can achieve accuracies of 200 microseconds (1/5000 s) or better in local area networks under ideal conditions.</blockquote>
<p>so it may be good enough for your needs if your conditions are "ideal" enough. NTP has been around long enough that pretty much everything works with it. I don't see any reason to do this through Java rather than the OS. If the OS is synced up, so will be Java.</p>
<p>[1] <a href="http://en.wikipedia.org/wiki/Network_Time_Protocol" rel="nofollow">Wikipedia: Network Time Protocol</a></p>
http://stackoverflow.com/questions/923033/how-to-track-task-execution-statistics-using-an-executorservice/923110#9231103Answer by Adam Jaskiewicz for How to track task execution statistics using an ExecutorService?Adam Jaskiewicz2009-05-28T20:50:11Z2009-05-28T21:44:50Z<p><a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ThreadPoolExecutor.html" rel="nofollow">ThreadPoolExecutor</a> provides <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ThreadPoolExecutor.html#beforeExecute(java.lang.Thread,%20java.lang.Runnable)" rel="nofollow">beforeExecute</a> and <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ThreadPoolExecutor.html#afterExecute(java.lang.Runnable,%20java.lang.Throwable)" rel="nofollow">afterExecute</a> methods that you can override. You could use those to record your statistics in a single (member variable of your ExecutorService) <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ConcurrentHashMap.html" rel="nofollow">ConcurrentHashMap</a> keyed on some unique identifier for your tasks, and storing the type, start time, and end time.</p>
<p>Calculate the statistics from the <code>ConcurrentHashMap</code> when you are ready to look at them.</p>
http://stackoverflow.com/questions/921990/should-a-developer-know-perfectly-one-language-or-know-fairly-well-multiple-langu/922024#9220241Answer by Adam Jaskiewicz for Should a developer know perfectly one language or know fairly well multiple languages?Adam Jaskiewicz2009-05-28T16:59:58Z2009-05-28T17:14:29Z<p>You should strive to be a jack of all trades, and master of one or two.</p>
<p>Learn a couple of languages well (preferrably fairly different languages, like Java and Python or PHP), and have a grasp of a few others (it's good to be able to grok functional programming, and the best way to do so is to learn a functional language such as Haskell or Scheme; you should probably have a reasonable knowledge of SQL, too). Whenever you see something that seems interesting, or like it could be important in the future, play around with it. You don't have to become an expert at it, or even competent in using it; just get to know it well enough that you will remember that it exists, and what it might be good for.</p>
<p>This also applies to other things related to specific domains. Most developers deal with databases at some point, so they should have knowledge of stuff like ACID, E-R diagrams, database normalization, etc. Anyone who is going to be doing web stuff should be knowledgeable about web usability guidelines, and have at least a little competence in graphic design and UI. All developers should know how to use their computer very well; they're likely to need a lot of admin privileges to do their job, and should know what they are doing well enough to not make that a huge liability.</p>
http://stackoverflow.com/questions/912710/how-to-make-qa-test-my-web-service-instead-of-forcing-me-to-test-their-web-servic/912876#9128760Answer by Adam Jaskiewicz for How to make QA test my web service instead of forcing me to test their web service client?Adam Jaskiewicz2009-05-26T21:32:25Z2009-05-26T21:32:25Z<p>Mark it as "will not fix--not a bug" and toss it back at QA.</p>
http://stackoverflow.com/questions/896139/java-arraylist-for-list-hashmap-for-map-and-hashset-for-set/898127#8981271Answer by Adam Jaskiewicz for Java: ArrayList for List, HashMap for Map, and HashSet for Set?Adam Jaskiewicz2009-05-22T14:22:11Z2009-05-22T14:22:11Z<p>I don't really have a "default", though I suppose I use the implementations listed in the question more often than not. I think about what would be appropriate for whatever particular problem I'm working on, and use it. I don't just blindly default to using <code>ArrayList</code>, I put in 30 seconds of thought along the lines of "well, I'm going to be doing a lot of iterating and removing elements in the middle of this list so I should use a <code>LinkedList</code>".</p>
<p>And I almost always use the interface type for my reference, rather than the implementation. Remember that <code>List</code> is not the only interface that <code>LinkedList</code> implements. I see this a lot:</p>
<pre><code>LinkedList<Item> queue = new LinkedList<Item>();
</code></pre>
<p>when what the programmer <strong>meant</strong> was:</p>
<pre><code>Queue<Item> queue = new LinkedList<Item>();
</code></pre>
<p>I also use the <code>Iterable</code> interface a fair amount.</p>
http://stackoverflow.com/questions/889167/things-to-consider-when-writing-our-own-continuous-integration-server/889273#8892731Answer by Adam Jaskiewicz for Things to consider when writing our own Continuous Integration server?Adam Jaskiewicz2009-05-20T17:41:52Z2009-05-20T17:41:52Z<p>Things I would consider:</p>
<ul>
<li>What kind of experience do we have on the team in this domain?</li>
<li>Is the timeline such that the people on the team can put in the time to learn about the design of CI servers?</li>
<li>Is there budget to hire people with this domain knowledge to supplement the team?</li>
<li>Why do you think you can do this better than the existing solutions?</li>
</ul>
http://stackoverflow.com/questions/887444/java-methods-taking-a-method-as-an-argument/887758#8877581Answer by Adam Jaskiewicz for Java Methods - Taking a method AS AN ARGUMENT Adam Jaskiewicz2009-05-20T13:01:45Z2009-05-20T13:07:20Z<p>You can also do something like this:</p>
<pre><code>final Predicate somePredicate = new Predicate<Item>()
{
@Override
public boolean apply(Item item)
{
return item.someProperty().equals(something);
}
}
</code></pre>
<p>And use it like this:</p>
<pre><code>List<Item> filteredList = filter(list, somePredicate);
</code></pre>
<p>I've done stuff like that before. I've also written methods that use a closure to build and return an anonymous implementation of an interface in a similar way:</p>
<pre><code>Predicate isSomeColor(final Color color)
{
return new Predicate<Shape>()
{
@Override
public boolean apply(Shape shape)
{
return shape.getColor().equals(color);
}
}
}
List<Shape> redShapes = filter(shapes, isSomeColor(Color.RED);
</code></pre>
<p>All of this is still anonymous inner classes. Nowhere am I actually naming the class itself, I just have a reference to an instance of the class.</p>
http://stackoverflow.com/questions/885058/tdd-when-introducing-a-class-when-refactoring-should-that-class-be-unit-teste/885206#8852060Answer by Adam Jaskiewicz for TDD - When introducing a class when refactoring - should that class be unit tested?Adam Jaskiewicz2009-05-19T21:50:23Z2009-05-19T21:50:23Z<p>As others have said, it's probably not entirely needed right away, since all the same stuff is still under test. But once you start making changes to either of those two classes individually, you should separate the tests.</p>
<p>Of course, the tests shouldn't be too hard to write; since you have the stuff being tested already, it should be fairly trivial to break out the various bits of the tests.</p>
http://stackoverflow.com/questions/884769/where-should-code-be-stored-prior-to-code-review/884798#8847981Answer by Adam Jaskiewicz for Where should code be stored prior to code review?Adam Jaskiewicz2009-05-19T20:16:05Z2009-05-19T20:16:05Z<p>Academic answer for an academic question, since we don't do code review either.</p>
<p>EVERYTHING gets checked into source control. If it isn't fully working/tested/reviewed, it goes in that developer's personal branch.</p>
http://stackoverflow.com/questions/883284/java-dont-wait-for-a-thread-to-complete/883597#8835974Answer by Adam Jaskiewicz for Java, Don't wait for a thread to completeAdam Jaskiewicz2009-05-19T15:55:11Z2009-05-19T16:49:21Z<p>If it's a long-lived thread that has a similar lifecycle to your app itself, and is going to be spending a lot of its time waiting on other threads:</p>
<pre><code>new Thread(new yourLongRunningProcessThatImplementsRunnable()).start();
</code></pre>
<p>If it's a short-lived, CPU-bound task:</p>
<pre><code>ExecutorService es = Executors.newFixedThreadPool(Runtime.availableProcessors());
es.submit(new yourTaskThatImplementsRunnable());
</code></pre>
<p>Though, in most cases like this, you will be submitting a number of tasks to that same <code>ExecutorService</code>.</p>
<h1>See:</h1>
<ul>
<li><a href="http://java.sun.com/docs/books/tutorial/essential/concurrency/" rel="nofollow">Java Concurrency Tutorial</a></li>
<li><a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html" rel="nofollow">ExecutorService</a></li>
<li><a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorCompletionService.html" rel="nofollow">ExecutorCompletionService</a></li>
<li><a href="http://java.sun.com/javase/6/docs/api/java/lang/Runnable.html" rel="nofollow">Runnable</a></li>
<li><a href="http://java.sun.com/javase/6/docs/api/java/lang/Thread.html" rel="nofollow">Thread</a></li>
<li><a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/Future.html" rel="nofollow">Future</a></li>
</ul>
http://stackoverflow.com/questions/881871/how-to-convince-your-fellow-developer-to-write-short-methods/883085#8830851Answer by Adam Jaskiewicz for How to convince your fellow developer to write short methods?Adam Jaskiewicz2009-05-19T14:21:17Z2009-05-19T14:21:17Z<ul>
<li><p>Show him how much easier it is to test short methods. Prove that writing short methods will make it easier and faster for him to write the tests for his methods (he <strong>is</strong> testing these methods, right?)</p></li>
<li><p>Bring it up when you are reviewing his code. "This method is rather long, complicated, and seems to be doing four distinct things. Extract method <strong>here</strong>, <strong>here</strong>, and <strong>here</strong>."</p></li>
</ul>
http://stackoverflow.com/questions/877726/tips-for-grokking-declarative-programming-languages/877870#8778700Answer by Adam Jaskiewicz for Tips for grokking declarative programming languages?Adam Jaskiewicz2009-05-18T13:56:14Z2009-05-18T14:17:47Z<p>I took a class in college (Programming Languages). It pretty much felt like I was repeatedly slamming my head against a brick wall, but about 3/4 of the way through the class, I realized the wall wasn't there anymore; I had been beating my head against nothing for a few weeks. It was a pretty surreal feeling.</p>
<p>I think any other way won't have the same charm. Read Godel, Escher, Bach; listen to a lot of Emerson, Lake, and Palmer and Kaikhosru Sorabji; smoke some ganja, and put in the time.</p>
http://stackoverflow.com/questions/874576/is-latex-worth-learning-today/874587#8745877Answer by Adam Jaskiewicz for Is LaTeX worth learning today?Adam Jaskiewicz2009-05-17T13:08:16Z2009-05-17T13:08:16Z<p>The depth you need to go into to get a simple document out is pretty simple. Anything fancier than that, you can learn as you go. It makes formatting math stuff really easy, too. You might as well learn it.</p>
http://stackoverflow.com/questions/874526/which-keyword-of-your-language-would-you-like-to-get-rid-of/874543#8745433Answer by Adam Jaskiewicz for Which keyword of your language would you like to get rid of?Adam Jaskiewicz2009-05-17T12:47:01Z2009-05-17T12:47:01Z<p>I'd eliminate goto from Java. Or make it actually do something.</p>
http://stackoverflow.com/questions/874070/are-there-any-usb-stick-runnable-no-install-cross-platform-software-frameworks/874315#8743154Answer by Adam Jaskiewicz for Are there any USB stick runnable, no-install, cross platform software frameworks (with GUI)?Adam Jaskiewicz2009-05-17T10:24:54Z2009-05-17T10:34:11Z<h1>Java.</h1>
<ul>
<li><p>It has GUI support.</p></li>
<li><p>It provides your network/file/etc. abstractions.</p></li>
<li><p>It is cross-platform. Most platforms you can think of have a JRE available.</p></li>
<li><p>No need to install a JRE. Most users probably already have one, and if not, you can run the appropriate JRE right off the stick.</p></li>
<li><p>You can provide several startup scripts for various platforms to run the app under the appropriate JRE.</p></li>
</ul>
http://stackoverflow.com/questions/874242/the-pros-and-cons-of-shadow-it-in-software-development/874282#8742820Answer by Adam Jaskiewicz for The pros and cons of "Shadow IT" in software developmentAdam Jaskiewicz2009-05-17T10:08:32Z2009-05-17T10:08:32Z<p>Most software developers have "unapproved" software on their computers. Just expect it. I'm not sure how much I have, but I'm sure I have dozens, if not hundreds of utilities that corp. IT has never even heard of on my work laptop.</p>
http://stackoverflow.com/questions/866314/avoiding-browser-incompatibilities-when-using-animated-png-images/866331#8663312Answer by Adam Jaskiewicz for Avoiding browser incompatibilities when using animated PNG imagesAdam Jaskiewicz2009-05-14T23:12:04Z2009-05-14T23:12:04Z<p>Make the first image display for a very short period of time, and have it be a big, ugly error message.</p>
http://stackoverflow.com/questions/865519/html-page-size-standard/865992#8659920Answer by Adam Jaskiewicz for html page size standardAdam Jaskiewicz2009-05-14T21:45:36Z2009-05-14T21:45:36Z<p>Remember that not all of us maximize our web browsers. Make it flexible.</p>
http://stackoverflow.com/questions/861382/why-does-maven-have-such-a-bad-rep/865494#8654942Answer by Adam Jaskiewicz for Why does Maven have such a bad rep?Adam Jaskiewicz2009-05-14T20:16:47Z2009-05-14T20:16:47Z<p>Too much magic.</p>
http://stackoverflow.com/questions/864624/generic-test-harness-for-java-util-map/864681#8646814Answer by Adam Jaskiewicz for Generic Test harness for java.util.Map? Adam Jaskiewicz2009-05-14T17:34:33Z2009-05-14T17:41:28Z<p>The <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections</a> zip contains their tests. There should be a google-collect-testfw jar in there.</p>
<p><a href="http://code.google.com/p/google-collections/source/browse/trunk/testfw/com/google/common/collect/testing/MapInterfaceTest.java" rel="nofollow">Specifically, there's an abstract test for the general contract of Map.</a></p>
http://stackoverflow.com/questions/863692/in-what-order-do-i-read-the-essential-programming-books/863945#8639452Answer by Adam Jaskiewicz for In what order do I read the "essential" programming books?Adam Jaskiewicz2009-05-14T15:14:47Z2009-05-14T15:14:47Z<p>Learn Python. Start writing code.</p>
<p>Read <strong>The Pragmatic Programmer</strong>, cover to cover, and <em>Section I: Foundations</em> in <strong>Introduction to Algorithms</strong>. Keep writing code. Try to apply what you're reading about to your code.</p>
<p>Write lots of code. Contribute to open source projects. Learn Java, and read <strong>Effective Java</strong> (or, to be equal-opportunity, learn C# and read the equivalent tome). Get a job writing code.</p>
<p>Read <strong>The Mythical Man Month</strong> and <strong>Code Complete</strong>. Think about how these apply to your job.</p>
<p>Read <strong>Design Patterns</strong>, but understand why you shouldn't try to force your code around these patterns. Try to identify where various of the patterns are appropriate in your code. </p>
<p>Read the rest of <strong>Introduction to Algorithms</strong> and <strong>Structure and Interpretation of Computer Programs</strong>, and <em>DO THE EXERCISES</em>.</p>
<p>At this point, you're probably being exposed to a lot of <strong>Other Peoples' Code</strong>. Read <strong>Refactoring</strong> and <strong>Working Effectively with Legacy Code</strong>.</p>
http://stackoverflow.com/questions/859562/whats-the-best-way-to-recursively-reverse-a-string-in-java/859708#8597082Answer by Adam Jaskiewicz for Whats the best way to recursively reverse a string in Java?Adam Jaskiewicz2009-05-13T18:48:27Z2009-05-13T18:48:27Z<p>If you're going to do this, you want to operate on a character array, because a String is immutable and you're going to be copying Strings all over the place if you do it that way.</p>
<p>This is untested and totally stream of consciousness. It probably has an OB1 somewhere. And very not-Java.</p>
<pre><code>public String reverseString(String s)
{
char[] cstr = s.getChars();
reverseCStr(cstr, 0, s.length - 1);
return new String(cstr);
}
/**
* Reverse a character array in place.
*/
private void reverseCStr(char[] a, int s, int e)
{
// This is the middle of the array; we're done.
if (e - s <= 1)
return;
char t = a[s];
a[s] = a[e];
a[e] = t;
reverseCStr(a, s + 1, e - 1);
}
</code></pre>
http://stackoverflow.com/questions/858572/how-to-make-a-new-list-in-java/858600#85860011Answer by Adam Jaskiewicz for How to make a new List in JavaAdam Jaskiewicz2009-05-13T15:17:30Z2009-05-13T15:28:50Z<p>First read <a href="http://java.sun.com/javase/6/docs/api/java/util/List.html" rel="nofollow">this</a>, then read <a href="http://java.sun.com/javase/6/docs/api/java/util/ArrayList.html" rel="nofollow">this</a> and <a href="http://java.sun.com/javase/6/docs/api/java/util/LinkedList.html" rel="nofollow">this</a>. 9 times out of 10 you'll use one of those two implementations.</p>
<p>In fact, just read <a href="http://java.sun.com/javase/6/docs/technotes/guides/collections/overview.html" rel="nofollow">Sun's Guide to the Collections framework</a>.</p>
http://stackoverflow.com/questions/857735/understanding-threads/858116#8581163Answer by Adam Jaskiewicz for Understanding ThreadsAdam Jaskiewicz2009-05-13T13:59:28Z2009-05-13T14:12:06Z<p>I'm not sure exactly what you're trying to do here. It sounds to me like you have a solution in mind to a problem that would best be solved in another way. Would something like this accomplish your <strong>end goal</strong>?</p>
<pre><code>public class MyApp implements Runnable
{
public MyApp(int foo, String bar)
{
// Set stuff up...
}
@Override
public void run()
{
// Do stuff...
}
public static void main(String[] argv)
{
// Parse command line args...
Thread thread0 = new Thread(new MyApp(foo, bar));
Thread thread1 = new Thread(new MyApp(foo, bar));
thread0.start();
thread1.start();
}
}
</code></pre>
<p>Though I would probably put <code>main()</code> in another object in a real app, since life-cycle management is a separate concern.</p>
http://stackoverflow.com/questions/854121/when-do-you-know-youre-dealing-with-an-anti-pattern/854287#8542875Answer by Adam Jaskiewicz for When do you know you're dealing with an anti-pattern?Adam Jaskiewicz2009-05-12T18:55:19Z2009-05-12T18:55:19Z<p>I ran the <a href="http://metrics.sourceforge.net/" rel="nofollow">Eclipse Metrics plugin</a>.</p>
<p>When you have many, MANY methods with cyclomatic complexity scores of well over 20 (one was 66...) and regularly see methods with dozens of parameters or hundreds of lines of code, you know something has gone wrong.</p>
<p>It doesn't tell you everything (metrics never do), but when you start seeing numbers like that, it gives you a place to start looking.</p>
http://stackoverflow.com/questions/849706/static-class-vs-instanced-class/849748#8497482Answer by Adam Jaskiewicz for Static class vs instanced classAdam Jaskiewicz2009-05-11T19:50:23Z2009-05-11T19:50:23Z<p>If a class doesn't maintain any state, doesn't have any instance methods, and could be implemented entirely with class methods, I usually take a long hard look at whether its behaviors would in fact make more sense somewhere else. I find they usually seem to have a lot of methods along the lines of <code>doSomethingWithItem(Item item)</code>, which would make more sense as an instance method in <code>Item</code>.</p>
<p>Yeah, I know this doesn't answer your question, but I think others have covered that pretty well already, and I wanted to get another perspective out there.</p>
http://stackoverflow.com/questions/841888/picking-good-identifier-names/842099#8420990Answer by Adam Jaskiewicz for Picking good identifier namesAdam Jaskiewicz2009-05-08T22:31:17Z2009-05-08T22:31:17Z<p>Like <a href="http://stackoverflow.com/questions/841888/picking-good-identifier-names/841988#841988">kekoav</a>, I am wary of naming something FooManager or FooController. Not only is it indicative of an object that suffers from an identity crisis, but it introduces ambiguity. I've worked on a project where there was an "AccountManager", which was a domain object representing a person who managed accounts (a subtype of Employee). Of course, someone made an "AccountManagerManager", and someone else got confused and created an Account domain object (which wasn't something our app was dealing with), then mixed stuff into AccountManager to manage the Account. It was kind of a mess.</p>
<p>Quis custodiet ipsos custodes? <strong>Quoque quis administro ipsos administratorum?</strong></p>
<p>Yeah, my Latin is rusty.</p>
http://stackoverflow.com/questions/1396191/what-should-every-developer-know-about-legal-matters/1396205#1396205Comment by Adam Jaskiewicz on What should every developer know about legal matters?Adam Jaskiewicz2009-09-08T21:00:41Z2009-09-08T21:00:41ZWhen in doubt, yes. But "in doubt" should be sufficiently small that we don't all need to keep lawyers on retainer. Any developer should have a reasonable understanding of intellectual property law, and a clear understanding of the restrictions and obligations imposed by common open-source licenses. Lawyers are for the hard questions.http://stackoverflow.com/questions/1334934/arguments-against-zip-files-as-source-control/1335028#1335028Comment by Adam Jaskiewicz on Arguments against zip files as source controlAdam Jaskiewicz2009-08-26T18:33:08Z2009-08-26T18:33:08ZMy reaction to zip files would probably be "o.O Why?!" followed by creating a Linux VM on my dev machine and setting up an SVN server.http://stackoverflow.com/questions/1312572/how-should-centenarian-date-of-birth-fields-be-handled/1312592#1312592Comment by Adam Jaskiewicz on How should centenarian date of birth fields be handled?Adam Jaskiewicz2009-08-21T15:41:18Z2009-08-21T15:41:18Z@Instantsoup I know that. My parents don't, despite me showing them a few times. I'm pretty sure my parents are more typical internet users than I am, and they're more computer-savvy than many students I helped when I was working in the Mechanical Engineering computer labs at school. Also, it doesn't help in some browsers (or Flash-based forms, but that's another rant).http://stackoverflow.com/questions/1312572/how-should-centenarian-date-of-birth-fields-be-handled/1312592#1312592Comment by Adam Jaskiewicz on How should centenarian date of birth fields be handled?Adam Jaskiewicz2009-08-21T15:21:54Z2009-08-21T15:21:54ZThis. I get annoyed scrolling down to 1984; I can't imagine what it must be like for my parents scrolling down to the '50s.http://stackoverflow.com/questions/1293548/how-many-lines-should-a-method-typically-have/1293571#1293571Comment by Adam Jaskiewicz on How many lines should a method typically have?Adam Jaskiewicz2009-08-18T19:08:48Z2009-08-18T19:08:48ZThat's a good ball park figure. Pretty much if you look at it and go "Gah! I don't want to read all that!!1" it's probably too long.http://stackoverflow.com/questions/1268087/recommended-book-about-parallel-programming-theory-best-practice/1268117#1268117Comment by Adam Jaskiewicz on Recommended book about parallel programming - theory & best practice?Adam Jaskiewicz2009-08-12T20:04:01Z2009-08-12T20:04:01ZThis looks like a good book. Any thoughts on how this compares to other books like <i>Java Concurrency in Practice</i> or <i>The Art of Multiprocessor Programming</i>?http://stackoverflow.com/questions/1229605/is-this-really-the-best-way-to-start-a-second-jvm-from-java-code/1229720#1229720Comment by Adam Jaskiewicz on Is *this* really the best way to start a second JVM from Java code?Adam Jaskiewicz2009-08-04T20:35:26Z2009-08-04T20:35:26Z-1; question specifies system-independent, and even if it didn't, this still has problems if the currently running app isn't running under the default JRE.http://stackoverflow.com/questions/976635/what-exactly-is-a-software-architectComment by Adam Jaskiewicz on What exactly is a "Software Architect"?Adam Jaskiewicz2009-06-17T15:05:37Z2009-06-17T15:05:37ZFrom what I understand, the first part of the FE exam is pretty general, and covers a lot of stuff that you won't get in most SE curriculums. Unless you had to take fluid mechanics, thermodynamics, materials, static and dynamic systems, and the like, you probably aren't going to pass. The second half is more specific, but yeah, there probably isn't a Software Engineering discipline represented, so you'd have to take "General", which is more of the same kind of stuff as the first half (i.e. a "general engineer" ought to be able to design a bridge, a chemical plant, or a transmission).http://stackoverflow.com/questions/859095/what-is-the-reason-for-the-rise-of-programmers-using-apple-machines/945400#945400Comment by Adam Jaskiewicz on What is the reason for the rise of programmers using Apple machines?Adam Jaskiewicz2009-06-17T14:51:18Z2009-06-17T14:51:18ZPhotoshop is on Windows, yes. I mentioned that it's available for Windows and MacOS X. Since I don't like Windows, and Linux doesn't have that software, I use MacOS.http://stackoverflow.com/questions/995981/is-it-essential-to-understand-computers-to-be-a-good-programmer/995990#995990Comment by Adam Jaskiewicz on Is it essential to understand computers to be a good programmer?Adam Jaskiewicz2009-06-15T20:21:50Z2009-06-15T20:21:50Z@TheTXI That doesn't duplicate the conditions of uneven road surfaces, wind, etc., any of which may contribute. "Could not reproduce because I don't know how to use a computer" isn't going to fly in most organizations.http://stackoverflow.com/questions/995981/is-it-essential-to-understand-computers-to-be-a-good-programmer/995990#995990Comment by Adam Jaskiewicz on Is it essential to understand computers to be a good programmer?Adam Jaskiewicz2009-06-15T16:04:51Z2009-06-15T16:04:51Z@Berry How does the mechanic test-drive the car? If the mechanic can't drive, how does he diagnose a problem like "the car makes a weird noise between 50 and 55"?http://stackoverflow.com/questions/354488/is-there-a-way-to-split-a-widescreen-monitor-in-to-two-or-more-virtual-monitors/354501#354501Comment by Adam Jaskiewicz on Is there a way to split a widescreen monitor in to two or more virtual monitors?Adam Jaskiewicz2009-06-15T15:03:51Z2009-06-15T15:03:51Z@Rob, it answered the question before it was edited.http://stackoverflow.com/questions/983670/what-should-my-new-coding-language-be/983693#983693Comment by Adam Jaskiewicz on What should my new coding language be?Adam Jaskiewicz2009-06-11T21:20:56Z2009-06-11T21:20:56ZIt isn't different enough. It won't teach him anything he doesn't already know, or give him any more capabilities, other than another bullet point on his resume. And with his background, it's something he should be able to pick up on demand (and employers should know that). It's better for him to learn a different class of language (a dynamic scripting language such as Python, or a functional language such as Haskell).http://stackoverflow.com/questions/976635/what-exactly-is-a-software-architectComment by Adam Jaskiewicz on What exactly is a "Software Architect"?Adam Jaskiewicz2009-06-10T18:24:47Z2009-06-10T18:24:47Z@ocdecio My friends with Electrical/Civil/Mechanical/etc. degrees all had to take a "Fundamentals of Engineering" exam sometime close to the end of their senior year. Assuming they passed that and graduated, they now have to accumulate a certain amount of time working in their field, and take another exam to be certified as a "Professional Engineer". This is in Michigan.http://stackoverflow.com/questions/971241/you-have-four-numbers-how-do-you-figure-out-which-one-is-greatest/971290#971290Comment by Adam Jaskiewicz on you have four numbers, how do you figure out which one is greatest?Adam Jaskiewicz2009-06-09T17:21:25Z2009-06-09T17:21:25ZI did this on an exam once (though it was only for three numbers).