User Jonik - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T10:42:15Z http://stackoverflow.com/feeds/user/56285 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1879283/different-ways-of-write-singleton-in-java/1879298#1879298 2 Answer by Jonik for Different ways of write singleton in java Jonik 2009-12-10T07:50:19Z 2009-12-10T08:46:07Z <p>Well, in the latter case the singleton object gets created before it is ever needed, but in most cases that's probably not horribly bad.</p> <p>By the way, Joshua Bloch recommends (in <em>Effective Java</em>, 2nd ed, item 4) implementing singletons using a single-element enum:</p> <pre><code>public enum SingletonObject { INSTANCE; } </code></pre> <p>He gives the following justification: </p> <blockquote> <p>[...] it is more concise, provides serialization machinery for free, and provides an ironclad guarantee against multiple instantiation, even in the face of sophisticated serialization or reflection attacks. While this approach has yet to be widely adopted, a single-element enum type is the best way to implement a singleton.</p> </blockquote> http://stackoverflow.com/questions/831865/what-java-xml-library-do-you-recommend-to-replace-dom4j 4 What Java XML library do you recommend (to replace dom4j)? Jonik 2009-05-06T21:29:54Z 2009-12-07T16:05:15Z <p>I'm looking for something like dom4j, but without dom4j's warts, such as bad or missing documentation and seemingly stalled development status.</p> <p>Background: I've been using <a href="http://stackoverflow.com/questions/807418/simplest-way-to-query-xml-in-java/831595#831595">and</a> <a href="http://stackoverflow.com/questions/729621/convert-string-xml-fragment-to-document-node-in-java/729979#729979">advocating</a> dom4j, but don't feel completely right about it because I know the library is far from optimal (example: see how methods in XSLT related <a href="http://www.dom4j.org/dom4j-1.6.1/apidocs/org/dom4j/rule/Stylesheet.html" rel="nofollow">Stylesheet</a> class are documented; what would you pass to run() as the <code>String mode</code> parameter?)</p> <p>Requirements: The library should make basic XML handling easier than it is when <a href="http://stackoverflow.com/questions/729621/convert-string-xml-fragment-to-document-node-in-java/729668#729668">using</a> <a href="http://stackoverflow.com/questions/807418/simplest-way-to-query-xml-in-java/807508#807508">pure JDK</a> (<a href="http://java.sun.com/javase/6/docs/api/index.html?javax/xml/package-summary.html" rel="nofollow"><code>javax.xml</code></a> and <a href="http://java.sun.com/javase/6/docs/api/index.html?org/w3c/dom/package-summary.html" rel="nofollow"><code>org.w3c.dom</code></a> packages). Things like this:</p> <ul> <li>Read an XML document (from file or String) into an object, easily traverse and manipulate the DOM, do XPath queries and run XSLT against it. </li> <li>Build an XML document in your Java code, add elements and attributes and data, and finally write the document into a file or String.</li> </ul> <p>I really like what <a href="http://www.dom4j.org/" rel="nofollow">dom4j promises</a>, actually: "<em>easy to use, open source library for working with XML, XPath and XSLT [...] with full support for DOM, SAX and JAXP.</em>" And upcoming dom4j 2.0 does claim to fix everything: fully utilise Java 5 and add missing documentation. But unfortunately, if you <a href="http://www.dom4j.org/download.html" rel="nofollow">look closer</a>:</p> <blockquote> <p>Warning: dom4j 2.0 is in pre-alpha stage. It is likely it can't be compiled. In case it can be compiled at random it is likely it can't run. In case it runs occasionally it can explode suddenly. If you want to use dom4j, you want version 1.6.1. Really.</p> </blockquote> <p>...and the website has said that for a <em>long</em> time. So is there a good alternative to dom4j? Please provide some justification for your preferred library, instead of just dumping names and links. :-)</p> http://stackoverflow.com/questions/581450/static-context-in-enum-definition 7 Static context in enum definition Jonik 2009-02-24T11:37:37Z 2009-12-01T19:10:23Z <p>The syntax sugar provided by Java's <code>enum</code> facility can sometimes be a little confusing. Consider this example, which does not compile:</p> <pre><code>public enum TestEnum { FOO("foo") { public void foo() { helper(); // &lt;- compiler error } }; String name; TestEnum(String name) { this.name = name; } public abstract void foo(); private void helper(){ // do stuff (using this.name, so must not be static) } } </code></pre> <p>Can anyone explain why the compiler says </p> <blockquote> <p>Non-static method 'helper()' cannot be referenced from a static context</p> </blockquote> <p>How exactly is this context static?</p> <p>You can make this compile by changing the call to <strong><code>this.</code></strong><code>helper()</code> (here is one confusing point: if we really are in a "static context" like the compiler suggests, how can "<code>this</code>" work?) or by increasing the visibility of <code>helper()</code> to default level. Which would you prefer? Also, feel free to suggest a better question title :-)</p> <p><strong>Edit</strong>: I found <a href="http://74.125.77.132/search?q=cache:yTkD6C3gZTEJ:x86.sun.com/thread.jspa%3FmessageID%3D3780246" rel="nofollow">some discussion about this</a> - but no real answers. My colleague thinks the fact that that <code>this.helper()</code> works is actually a compiler bug. And indeed with newer Java versions it seems <em>not</em> to work (although <code>super.helper()</code> does): "cannot find symbol helper()". (Although there's something odd going on: after trying with different Java versions I can't get <code>this.helper()</code> to compile again with any of them...)</p> http://stackoverflow.com/questions/1802629/is-there-an-elegant-way-to-remove-nulls-while-transforming-a-collection-using-goo 2 Is there an elegant way to remove nulls while transforming a Collection using Google Collections? Jonik 2009-11-26T09:42:20Z 2009-11-26T13:55:52Z <p>I have a question about simplifying some Collection handling code, when using Google Collections.</p> <p>I've got a bunch of "Computer" objects, and I want to end up with a Collection of their "resource id"s. This is done like so:</p> <pre><code>Collection&lt;Computer&gt; matchingComputers = findComputers(); Collection&lt;String&gt; resourceIds = Lists.newArrayList(Iterables.transform(matchingComputers, new Function&lt;Computer, String&gt;() { public String apply(Computer from) { return from.getResourceId(); } })); </code></pre> <p>Now, <code>getResourceId()</code> may return null (and changing that is not an option right now), yet in this case I'd like to omit nulls from the resulting String collection.</p> <p>Here's one way to filter nulls out: </p> <pre><code>Collections2.filter(resourceIds, new Predicate&lt;String&gt;() { @Override public boolean apply(String input) { return input != null; } }); </code></pre> <p>You could put all that together like this:</p> <pre><code>Collection&lt;String&gt; resourceIds = Collections2.filter( Lists.newArrayList(Iterables.transform(matchingComputers, new Function&lt;Computer, String&gt;() { public String apply(Computer from) { return from.getResourceId(); } })), new Predicate&lt;String&gt;() { @Override public boolean apply(String input) { return input != null; } }); </code></pre> <p>But this is hardly elegant, let alone readable, for such a simple task! In fact, plain old Java code (with no fancy Predicate or Function stuff at all) would arguably be much cleaner:</p> <pre><code>Collection&lt;String&gt; resourceIds = Lists.newArrayList(); for (Computer computer : matchingComputers) { String resourceId = computer.getResourceId(); if (resourceId != null) { resourceIds.add(resourceId); } } </code></pre> <p>Using the above is certainly also an option, but out of curiosity (and desire to learn more of Google Collections), <strong>can you do the exact same thing in some shorter or more elegant way using Google Collections</strong>?</p> http://stackoverflow.com/questions/1681287/remove-middleman-intellij-refactoring-on-an-empty-interface/1686960#1686960 1 Answer by Jonik for 'Remove middleman' IntelliJ refactoring on an empty interface Jonik 2009-11-06T11:17:38Z 2009-11-23T19:58:57Z <p>Looking at <a href="http://blogs.jetbrains.com/idea/2008/12/intellij-idea-8-refactorings-remove-middleman/" rel="nofollow">a blog post explaining the "Remove Middleman" refactoring</a> in IDEA, I'd think you simply cannot use it for this. It's just for "replacing all calls to delegating methods with the equivalent direct calls". </p> <p>(For a moment I thought another refactoring, "Use Interface Where Possible", might be of help, but I couldn't get that working either in my simple test case.)</p> http://stackoverflow.com/questions/1692546/java-algo-to-find-smallest-and-second-smallest-number-in-list/1692562#1692562 -2 Answer by Jonik for Java Algo to Find smallest and second smallest Number in List Jonik 2009-11-07T09:38:38Z 2009-11-07T10:12:43Z <p>Call <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Collections.html#min%28java.util.Collection%29" rel="nofollow">Collections.min()</a>, then remove the element you got from the List, and call it again?</p> <pre><code> List&lt;Integer&gt; list = Arrays.asList(20, 30, 90, 50); List&lt;Integer&gt; copy = new ArrayList&lt;Integer&gt;(list); Integer smallest = Collections.min(copy); // 20 copy.remove(smallest); Integer secondSmallest = Collections.min(copy); // 30 </code></pre> <p>(Making a copy not to mess with the original.)</p> <p>This is probably far from the most performant solution (From Collections.min() Javadoc: "This method iterates over the entire collection, hence it requires time proportional to the size of the collection."), but it's very simple to write and maintain. :)</p> http://stackoverflow.com/questions/1687203/java-remove-empty-xml-tags/1687332#1687332 4 Answer by Jonik for Java Remove empty XML tags Jonik 2009-11-06T12:41:29Z 2009-11-06T13:03:38Z <p>I was wondering whether it would be easy to do this with the <a href="http://www.xom.nu/" rel="nofollow">XOM</a> library and gave it a try. </p> <p>It turned out to be quite easy:</p> <pre><code>import nu.xom.*; import java.io.File; import java.io.IOException; public class RemoveEmptyTags { public static void main(String[] args) throws IOException, ParsingException { Document document = new Builder().build(new File("original.xml")); handleNode(document.getRootElement()); System.out.println(document.toXML()); // empty elements now removed } private static void handleNode(Node node) { if (node.getChildCount() == 0 &amp;&amp; "".equals(node.getValue())) { node.getParent().removeChild(node); return; } // recurse the children for (int i = 0; i &lt; node.getChildCount(); i++) { handleNode(node.getChild(i)); } } } </code></pre> <p>This probably won't handle all corner cases properly, like a completely empty document. And what to do about elements that are otherwise empty but have attributes?</p> <p>(This answer is part of my evaluation of XOM as a potential <a href="http://stackoverflow.com/questions/831865/what-java-xml-library-do-you-recommend-to-replace-dom4j">replacement to dom4j</a>.)</p> http://stackoverflow.com/questions/481813/how-to-simplify-a-null-safe-compareto-implementation 3 How to simplify a null-safe compareTo() implementation? Jonik 2009-01-26T23:25:14Z 2009-11-06T02:16:00Z <p>I'm implementing <code>compareTo()</code> method for a simple class such as this (to be able to use <code>Collections.sort()</code> and other goodies offered by the Java platform):</p> <pre><code>public class Metadata implements Comparable&lt;Metadata&gt; { private String name; private String value; // Imagine basic constructor and accessors here // Irrelevant parts omitted } </code></pre> <p>I want the <em>natural ordering</em> for these objects to be: 1) sorted by name and 2) sorted by value if name is the same; both comparisons should be case-insensitive. For both fields null values are perfectly acceptable, so <code>compareTo</code> must not break in these cases. </p> <p>The solution that springs to mind is along the lines of the following (I'm using "guard clauses" here while others might prefer a single return point, but that's beside the point):</p> <pre><code>// primarily by name, secondarily by value; null-safe; case-insensitive public int compareTo(Metadata other) { if (this.name == null &amp;&amp; other.name != null){ return -1; } else if (this.name != null &amp;&amp; other.name == null){ return 1; } else if (this.name != null &amp;&amp; other.name != null) { int result = this.name.compareToIgnoreCase(other.name); if (result != 0){ return result; } } if (this.value == null) { return other.value == null ? 0 : -1; } if (other.value == null){ return 1; } return this.value.compareToIgnoreCase(other.value); } </code></pre> <p>This does the job, but I'm not perfectly happy with this code. Admittedly it isn't <em>very</em> complex, but is quite verbose and tedious.</p> <p>The question is, <strong>how would you make this less verbose</strong> (while retaining the functionality)? Feel free to refer to Java standard libraries or Apache Commons if they help. Would the only option to make this (a little) simpler be to implement my own "NullSafeStringComparator", and apply it for comparing both fields?</p> <p><strong>Edits 1-3</strong>: Eddie's right; fixed the "both names are null" case above</p> http://stackoverflow.com/questions/1680463/java-key-key-map/1680476#1680476 3 Answer by Jonik for Java key - key map Jonik 2009-11-05T13:12:40Z 2009-11-05T16:27:21Z <p>You might want to look at <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/BiMap.html" rel="nofollow">BiMap</a> from the <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections</a> library.</p> <p>An example where a <a href="http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/HashBiMap.html" rel="nofollow">HashBiMap</a> is used as the "mySpecialHashMap":</p> <pre><code>BiMap&lt;String, String&gt; myBiMap = HashBiMap.create(); myBiMap.put("key1", "key2"); myBiMap.get("key1"); // returns "key2" myBiMap.inverse().get("key2"); // returns "key1" </code></pre> http://stackoverflow.com/questions/1608331/is-the-apache-commons-collections-framework-faster-than-the-jdk-collections-frame/1677082#1677082 0 Answer by Jonik for Is the Apache Commons Collections framework faster than the JDK collections framework? Jonik 2009-11-04T22:20:54Z 2009-11-04T22:57:42Z <p>You're sort of missing the point, because Apache Commons Collections was never meant to be a <em>replacement</em> of the Java Collections framework. </p> <p>Like it says on the <a href="http://commons.apache.org/collections/" rel="nofollow">project's home page</a>:</p> <blockquote> <p>Commons-Collections seek to <strong>build upon the JDK classes</strong> by providing new interfaces, implementations and utilities.</p> </blockquote> <p>Anyway, like erickson pointed out, you're better off with <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections</a> if you are using Java collections and want something to <em>complement</em> it. As to <em>why</em> it should be better than Commons Collections (which erickson forgot to address), see e.g. <a href="http://stackoverflow.com/questions/787446/is-there-a-java-1-5-equivalent-to-the-predicatet-methods-in-net/787459#787459">this answer</a> and the <a href="http://www.javalobby.org/articles/google-collections/" rel="nofollow">interview</a> mentioned in it.</p> http://stackoverflow.com/questions/1618170/java-file-read-problem/1618204#1618204 0 Answer by Jonik for Java file read problem Jonik 2009-10-24T15:04:23Z 2009-10-24T15:36:27Z <p>If I were you, I'd probably use <a href="http://commons.apache.org/io/api-release/org/apache/commons/io/FileUtils.html" rel="nofollow">FileUtils</a> class from <a href="http://commons.apache.org/io/" rel="nofollow">Apache Commons IO</a>. The method <a href="http://commons.apache.org/io/api-release/org/apache/commons/io/FileUtils.html#readLines%28java.io.File%29" rel="nofollow"><code>readLines(File file)</code></a> returns a List of Strings, one for each line. Then you can simply handle one line at a time.</p> <p>Something like this: </p> <pre><code> File file = new File("test.txt"); List&lt;String&gt; lines = FileUtils.readLines(file); for (String line : lines) { // handle one line } </code></pre> <p><sub>(Unfortunately Commons IO doesn't support generics, so the there would be an unchecked assignment warning when assigning to List&lt;String&gt;. To remedy that use either @SuppressWarnings, or just an untyped List and casting to Strings.)</sub></p> <p>This is, perhaps, an example of a situation where one can apply "<a href="http://stackoverflow.com/questions/822768/what-are-the-pitfalls-of-a-java-noob/826344#826344">know and use the libraries</a>" and skip writing some lower-level boilerplate code altogether.</p> http://stackoverflow.com/questions/1590863/getting-java-applications-to-look-native-on-windows-how/1590894#1590894 0 Answer by Jonik for Getting java applications to look native on windows - how? Jonik 2009-10-19T20:20:46Z 2009-10-19T20:20:46Z <p>You'd do something like: </p> <pre><code>UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); </code></pre> <p>(Which of course works only on Windows.) The result looks and feels reasonably native. More info e.g. <a href="http://www.iam.ubc.ca/guides/javatut99/uiswing/misc/plaf.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1483534/java-isempty-undefined-for-string/1483542#1483542 4 Answer by Jonik for java isEmpty() undefined for string Jonik 2009-09-27T13:03:17Z 2009-09-27T13:09:20Z <p><code>String.isEmpty()</code> was introduced in Java release 1.6. You might want to check what JDK version you're using for your project. (I don't know much about Eclipse myself, but it should be somewhere in the project settings.)</p> http://stackoverflow.com/questions/1286057/continuous-builds-and-agile-vs-commit-often/1304742#1304742 1 Answer by Jonik for Continuous builds and Agile vs commit often Jonik 2009-08-20T08:24:08Z 2009-09-27T11:15:38Z <p>I'll add yet another answer, because to me it seems some of the most important points haven't been mentioned.</p> <blockquote> <p>My understanding with version control is that its better to commit often, because then you have history and the ability to go back to previous changes in a fine grained way.</p> </blockquote> <p>I absolutely agree about this.</p> <blockquote> <p>My understanding with Agile and continuous build is that its there to put pressure on the developers to always have working code.</p> </blockquote> <p>It is <em>not</em> there to put pressure on developers — I'd rather describe continuous integration as a friendly <strong>safety net</strong> that helps you catch problems as soon as you commit them, when fixing them is usually easy. (Check Martin Fowler's <a href="http://martinfowler.com/articles/continuousIntegration.html" rel="nofollow">seminal article</a> for more CI benefits.) It <em>is</em> important to always have working code, and that's where version control branches come in, as <a href="http://stackoverflow.com/questions/1286057/continuous-builds-and-agile-vs-commit-often/1286069#1286069">silky pointed out</a>. But unlike the traditional scenario he describes (and what Fowler talks about: "Everyone Commits To the Mainline Every Day"), I'd recommend the opposite: have your main trunk stable, preferably always in releaseable shape, and do all major development in temporary working branches. </p> <p>I've plugged the stable trunk approach on SO <a href="http://stackoverflow.com/questions/1261825/subversion-should-anyone-be-developing-off-the-trunk/1262101#1262101">here</a> and <a href="http://stackoverflow.com/questions/200757/how-do-you-handle-the-tension-between-refactoring-and-the-need-for-merging/583650#583650">here</a>; see those posts for some justification and experiences of this model. Also, I warmly recommend this article which influenced my thinking a lot: <a href="http://www.infoq.com/articles/agile-version-control" rel="nofollow">Version Control for Multiple Agile Teams</a> by Henrik Kniberg.</p> <p>Breaking the build in a dev branch is far from a taboo, although you should still try to keep everything compiling and all tests passing. Breaking the <em>trunk</em> build, in this scenario, is somewhat more serious, but still I wouldn't call it a taboo — these things happen from time to time, and instead of finding someone to blame, it is infinitely more important for the team to just fix it (and be happy that the problem was found <em>now</em>, instead of much later, perhaps by a customer). </p> http://stackoverflow.com/questions/967288/how-to-stream-xml-data-using-xom 1 How to stream XML data using XOM? Jonik 2009-06-08T22:14:39Z 2009-09-25T22:53:20Z <p>Say I want to output a huge set of search results, as XML, into a PrintWriter or an OutputStream, using <a href="http://xom.nu/" rel="nofollow">XOM</a>. The resulting XML would look like this:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;resultset&gt; &lt;result&gt; [child elements and data] &lt;/result&gt; ... ... [1000s of result elements more] &lt;/resultset&gt; </code></pre> <p>Because the resulting XML document could be big (tens or hundreds of megabytes, perhaps), I want to output it in a streaming fashion (instead of creating the whole Document in memory and then writing that).</p> <p>The granularity of outputting one <code>&lt;result&gt;</code> at a time is fine, so I want to generate one <code>&lt;result&gt;</code> after another, and write it into the stream. Assume there's already a method that helps with iterating the results and generating <code>Element</code> objects:</p> <pre><code>public nu.xom.Element getNextResult(); </code></pre> <p>So I'd simply like to do something like this pseudocode (automatic flushing enabled, so don't worry about that) :</p> <pre><code>open stream/writer write declaration write start tag for &lt;resultset&gt; while more results: write next &lt;result&gt; element write end tag for &lt;resultset&gt; close stream/writer </code></pre> <p>I've been looking at <a href="http://xom.nu/apidocs/nu/xom/Serializer.html" rel="nofollow"><code>Serializer</code></a>, but the necessary methods, <code>writeStartTag(Element)</code>, <code>writeEndTag(Element)</code>, <code>write(DocType)</code> are protected, not public! Is there no other way than to subclass Serializer to be able to use those methods, or to manually write the start and end tags directly into the stream as Strings, bypassing XOM altogether? (The latter wouldn't be too bad in this simple example, but in the general case it would get quite ugly.) </p> <p>Am I missing something or is XOM just not made for this? </p> <p>With <a href="http://dom4j.org/" rel="nofollow">dom4j</a> I could do this easily using <a href="http://www.dom4j.org/dom4j-1.6.1/apidocs/org/dom4j/io/XMLWriter.html" rel="nofollow"><code>XMLWriter</code></a> - it has constructors that take a <code>Writer</code> or <code>OutputStream</code>, and methods <code>writeOpen(Element)</code>, <code>writeClose(Element)</code>, <code>writeDocType(DocumentType)</code> etc. Compare to XOM's <code>Serializer</code> where the only public <code>write</code> method is the one that takes a whole <code>Document</code>.</p> <p>Please refrain from answering if you're not familiar with XOM! I specifically want to know if and how you can do this kind of streaming with that library. (This is related to <a href="http://stackoverflow.com/questions/831865/what-java-xml-library-do-you-recommend-to-replace-dom4j">my question about the best dom4j replacement</a> where XOM is a strong contender.)</p> http://stackoverflow.com/questions/687/keyboard-for-programmers/1367692#1367692 0 Answer by Jonik for Keyboard for programmers Jonik 2009-09-02T13:28:46Z 2009-09-02T13:28:46Z <p>For my development machine at work, I prefer a very <strong>basic Logitech keyboard</strong>. Such as this Logitech 350 Internet Keyboard:</p> <p><img src="http://www.kuvaboksi.fi/mediaobjects/orig/pub/2009/09/02/8143010478554519614orig.gif" width="500"></p> <p>I was choosing a keyboard just now (to replace a clunky standard Fujitsu Siemens one) and test-drived this against <a href="http://stackoverflow.com/questions/687/keyboard-for-programmers/53726#53726">Logitech's UltraX</a> flat model, which admittedly looks way more elegant, but whose feel when typing was slightly "wrong" somehow, for me.</p> <p>What I like about this basic Logitech keyboard:</p> <ul> <li>The feel is a good compromise - pressing the keys requires neither too much pressure nor too little.</li> <li>Function keys and the "Insert/Delete/Home/End" block are laid out "normally" (and <em>not</em>, for example, so that the latter are grouped together with Prt Scr / Scroll Lock). To me this makes a surprisingly big difference in how natural it feels to use the keyboard.</li> </ul> <p>Cost of the Logitech 350 is a whopping <a href="http://www.verkkokauppa.com/popups/prodinfo.php?id=15968" rel="nofollow"><strong>€10</strong></a> where I live. =)</p> http://stackoverflow.com/questions/1322147/help-with-java-executors-wait-for-task-termination/1322219#1322219 3 Answer by Jonik for Help with java executors: wait for task termination. Jonik 2009-08-24T12:52:43Z 2009-08-24T12:58:21Z <blockquote> <p>Can you suggest me a guide/book about java executors??</p> </blockquote> <p>I can answer this part:</p> <p><a href="http://jcip.net/" rel="nofollow"><strong>Java Concurrency in Practice</strong></a> by Brian Goetz (with Tim Peierls, <a href="http://en.wikipedia.org/wiki/Joshua%5FBloch" rel="nofollow">Joshua Bloch</a>, Joseph Bowbeer, David Holmes and <a href="http://en.wikipedia.org/wiki/Doug%5FLea" rel="nofollow">Doug Lea</a>) is most likely your best bet.</p> <p><img src="http://jcip.net/images/jcip-cover.jpg" width="150"></p> <p>It's not <em>only</em> about executors though, but instead covers <code>java.util.concurrent</code> package in general, as well as basic concurrency concepts and techniques, and some advanced topics such as the Java memory model.</p> http://stackoverflow.com/questions/1316983/to-openid-or-not-to-openid-is-it-worth-it/1316990#1316990 9 Answer by Jonik for To OpenID or not to OpenID? Is it worth it? Jonik 2009-08-22T20:40:05Z 2009-08-22T20:40:05Z <blockquote> <p>It seems to me it is easier and faster for the user to simply enter a username and password in a signup form they have to go through anyway.</p> </blockquote> <p>I think, on the contrary, that often it's easier and less of a hassle if the user can login with his existing OpenID, instead of creating separate credentials for every site. (Isn't that the main point about it.)</p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/737476#737476 2 Answer by Jonik for What non-programming books should programmers read? Jonik 2009-04-10T12:25:07Z 2009-08-21T19:32:11Z <p>One of his books <a href="http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/111490#111490">was already mentioned</a>, but I'd like to add this:</p> <h2>The Hidden Connections: A Science for Sustainable Living</h2> <p>by Fritjof Capra</p> <p><img src="http://ecx.images-amazon.com/images/I/41BQDT6BAFL._SL500_AA240_.jpg" width="200"></p> <p>This is a highly ambitious attempt to bring together research from various disciplines, and especially apply complexity theory ideas ("non-linear dynamics") in fields ranging from molecular biology to social interactions in large organisations, to networks of global capitalism. Towards the end, it goes on to outline how we could make our communities and technologies more ecologically sustainable.</p> <p>For me, even though all of it may not have been thoroughly convincing, it was still one of the most inspiring books I've read, and it gave a lot to think about. </p> <p>Some reviews: <a href="http://www.amazon.com/review/R30VUL59Y0CRR6/ref=cm%5Fcr%5Frdp%5Fperm" rel="nofollow">one</a> (good summary; all praise), <a href="http://www.blackstarreview.com/rev-0120.html" rel="nofollow">two</a>, more critical ones: <a href="http://books.livingsocial.com/books/14550-fritjof-capra-the-hidden-connections-a-science-for-sustainable-living" rel="nofollow">three</a>, <a href="http://www.amazon.com/review/R11EMDJJA7ASYX/ref=cm%5Fcr%5Frdp%5Fperm" rel="nofollow">four</a>.</p> http://stackoverflow.com/questions/1291870/how-do-you-write-good-highly-useful-general-purpose-libraries/1308926#1308926 2 Answer by Jonik for How do you write good highly useful general purpose libraries? Jonik 2009-08-20T21:24:30Z 2009-08-20T22:51:55Z <p><strong>Edit</strong>: I just noticed I <em>very nearly</em> duplicated <a href="http://stackoverflow.com/questions/1291870/how-do-you-write-good-highly-useful-general-purpose-libraries/1291913#1291913"><strong>what cherouvim had posted</strong></a>; sorry about that! But turns out we're linking to different speeches by Bloch, even if the subject is exactly the same. (cherouvim linked to a December 2005 talk, I to January 2007 one.) Well, I'll leave this answer here — you're probably best off by watching <em>both</em> and seeing how his message and way of presenting it has evolved :)</p> <p><hr /></p> <p>FWIW, I'd like to point to this Google Tech Talk by <a href="http://en.wikipedia.org/wiki/Joshua%5FBloch" rel="nofollow">Joshua Bloch</a>, who is a greatly respected guy in the Java world, and someone who has given speeches and written extensively on API design. (Oh, and designed some exceptionally good general purpose libraries, like the Java Collections Framework!)</p> <blockquote> <p>Joshua Bloch, Google Tech Talks, January 24, 2007:<br /> "<a href="http://www.youtube.com/watch?v=aAb7hSCtvGw" rel="nofollow"><strong>How To Design A Good API and Why it Matters</strong></a>" (the video is about 1 hour long)</p> </blockquote> <p>You can also read many of the same ideas in his article <a href="http://www.infoq.com/articles/API-Design-Joshua-Bloch" rel="nofollow">Bumper-Sticker API Design</a> (but I still recommend watching the presentation!)</p> <p>(Seeing you come from the .NET side, I hope you don't let his Java background get in the way too much :-) This really is <em>not</em> Java-specific for the most part.)</p> <p>Edit: Here's another <a href="http://www.youtube.com/watch?v=9ni%5FKEkHfto#t=47m42s" rel="nofollow">1½ minute bit of wisdom</a> by Josh Bloch on why writing libraries is hard, and why it's still worth putting effort in it (economies of scale) — in a response to a question wondering, basically, "how hard can it be". (Part of a presentation about the Google Collections library, which is also totally worth watching, but more Java-centric.)</p> http://stackoverflow.com/questions/1298661/why-java-is-still-used-in-web-development/1298667#1298667 1 Answer by Jonik for Why Java is still used in web development? Jonik 2009-08-18T17:53:45Z 2009-08-19T09:10:46Z <p>When talking about Java &amp; the web, people seem to happily mix things by concentrating on Java applications deployed with Web Start (or even Applets), and forgetting that Java is a common language for implementing plain old dynamic web sites (or <a href="http://en.wikipedia.org/wiki/Web%5Fapplication" rel="nofollow">web applications</a>). The latter is especially true for larger, more "enterprisey" systems. Even if on the desktop Java never really took off, on the server side it certainly did.</p> <p>Without going into much detail, a couple of reasons why Java is used for creating web sites / applications:</p> <ul> <li>It's a tried and true approach for building large-scale web apps. Either using just the basic (Java EE) technologies of <a href="http://en.wikipedia.org/wiki/Java%5FServlet" rel="nofollow">Servlets</a> and <a href="http://en.wikipedia.org/wiki/JavaServer%5FPages" rel="nofollow">JSP</a>, or newer frameworks built on top of those, such as <a href="http://java.sun.com/javaee/javaserverfaces/" rel="nofollow">JSF</a>, <a href="http://wicket.apache.org/" rel="nofollow">Wicket</a> or <a href="http://code.google.com/webtoolkit/" rel="nofollow">Google Web Toolkit</a>. (Just one example of high scalability: <a href="http://en.wikipedia.org/wiki/Gmail" rel="nofollow">Gmail</a> is implemented in Java, using Google Web Toolkit.)</li> <li>A mind-boggling amount of Java libraries exist, for all kinds of tasks — both open-source and commercial ones. If you need some in the backend of your app it may make a lot of sense to do the whole app using the same technology.</li> <li>There are <em>a lot</em> of skilled Java developers out there — something that may affect tech desicions when launching (larger) projects</li> <li>When creating a web interface for, or integrating into, an existing Java enterprise system (which are common) it may be beneficial to use the same language</li> </ul> <p>Edit: I also agree with <a href="http://superuser.com/questions/24698/why-java-is-still-used-in-web-development/24749#24749">Doug</a> about the tools and developer support. For example, <a href="http://www.jetbrains.com/idea/" rel="nofollow">IntelliJ IDEA</a> may well be the most advanced IDE <em>for any language</em> (and I've heard this also from people who've used Eclipse and Visual Studio extensively... ;-) )</p> http://stackoverflow.com/questions/1270049/releasing-a-java-application-on-different-os/1270233#1270233 2 Answer by Jonik for Releasing a java application on different OS Jonik 2009-08-13T05:50:06Z 2009-08-13T05:50:06Z <p>If a commercial tool is acceptable for you, I'd recommend <a href="http://www.ej-technologies.com/products/install4j/overview.html" rel="nofollow">install4j</a>. It can produce installers for the most common plaftforms, which specifically support installing the application as a service.</p> <p>Quote from their <a href="http://www.ej-technologies.com/products/install4j/features.html" rel="nofollow">Features page</a>:</p> <blockquote> <p>install4j offers full support for generating and installing services (daemons). For services, install4j generates service executables on Windows, startup items on Mac OS X and start/stop scripts on Unix/Linux platforms. </p> </blockquote> http://stackoverflow.com/questions/1261825/subversion-should-anyone-be-developing-off-the-trunk/1262101#1262101 3 Answer by Jonik for Subversion - should anyone be developing off the trunk? Jonik 2009-08-11T18:20:22Z 2009-08-11T18:32:38Z <p>As <a href="http://stackoverflow.com/questions/1261825/subversion-should-anyone-be-developing-off-the-trunk/1261862#1261862">Neil Butterworth said</a>, it depends; several valid ways exist.</p> <p>However, personally I would recommend having a stable trunk, and doing all major development on temporary branches. (I.e., only small, independent changes that will be completely <em>done</em> with a single commit should go directly to trunk.) To avoid longer-lived branches getting too far from the mainline, (auto)merge everything that goes into trunk to all the development branches, at least daily. Oh, and <em>everything</em> should be watched by CI — not just trunk but all development branches too. Especially with Hudson it's a snap and causes very little overhead.</p> <p>If interested in how we've applied this, there are some more details in <a href="http://stackoverflow.com/questions/200757/how-do-you-handle-the-tension-between-refactoring-and-the-need-for-merging/583650#583650">this answer</a>. (I'd hate to repeat myself too much... :)</p> <p>I'd actually recommend this approach even if it's just one team working on the codebase, and <em>even</em> if everyone is working on the same feature/change. Why? Well, because in my experience (unless things — like release schedules, requirements, and so on — are very predictable in your environment) it definitely pays off to have your trunk in a <em>releasable shape</em>, all the time.</p> http://stackoverflow.com/questions/1183407/should-i-use-the-java-naming-convention/1184835#1184835 1 Answer by Jonik for Should I use the Java naming convention? Jonik 2009-07-26T15:27:44Z 2009-07-30T14:50:48Z <p>As <a href="http://stackoverflow.com/questions/1183407/should-i-use-the-java-naming-convention/1183413#1183413">Steve Gilham</a> and <a href="http://stackoverflow.com/questions/1183407/should-i-use-the-java-naming-convention/1183416#1183416">Emil H</a> said, yes, you should definitely stick to Java conventions when you write Java code. (The same obviously goes for any language or platform.)</p> <p>As to <em>why</em> that should be so important, I recommend that you check out the classic Java book, <em><a href="http://java.sun.com/docs/books/effective/" rel="nofollow">Effective Java</a></em>, by Joshua Bloch. In its foreword (<a href="http://books.google.com/books?id=ka2VUBqHiWkC&amp;pg=PR13#PPR13,M1" rel="nofollow">available online here</a>!), Guy Steele provides a nice, concise argument for writing code that is <em>idiomatic</em> for the given language. The book also contains a section specifically about this (item 56 in 2nd edition): <strong>Adhere to generally accepted naming conventions</strong>. That item is only a couple of pages long, and you may already know most of what is says, but, more importantly, the book as a whole is the best possible guide for writing clear and maintainable Java code.</p> <p>You mention it's a large project done by a team of programmers, which makes the choice even clearer. Even if all the <em>current</em> programmers happened to be happy with your C/C++ like naming pattern, remember that it's very plausible that the composition of your team changes at some point. A newly recruited Java programmer will certainly feel more at home when confronted with a codebase of idiomatic Java that adheres to common conventions of the language.</p> http://stackoverflow.com/questions/1197535/how-much-do-you-really-work-a-day/1197538#1197538 2 Answer by Jonik for How much do you [really] work a day Jonik 2009-07-28T21:19:19Z 2009-07-29T00:47:29Z <p>For (some) calculations, in our team we use the approximation that "day == 6 hours". (Even though we're at the office for 8 hours on average, of course, minus lunch break.)</p> <p>Obviously the real amount varies. And it isn't usually even worth thinking about, as long as you get the job done in the long run :)</p> http://stackoverflow.com/questions/1192361/how-to-convert-microsoft-locale-id-lcid-into-language-code-or-locale-object-in 1 How to convert Microsoft Locale ID (LCID) into language code or Locale object in Java Jonik 2009-07-28T07:19:50Z 2009-07-28T12:11:27Z <p>I need to translate a <a href="http://msdn.microsoft.com/en-us/goglobal/bb964664.aspx" rel="nofollow">Microsoft locale ID</a>, such as 1033 (for US English), into either an <a href="http://en.wikipedia.org/wiki/ISO%5F639" rel="nofollow">ISO 639 language code</a> or directly into a Java <a href="http://java.sun.com/javase/6/docs/api/java/util/Locale.html" rel="nofollow">Locale</a> instance. (Edit: or even simply into the "Language - Country/Region" in Microsoft's table.)</p> <p>Is this possible, and what's the easiest way? Preferably using only JDK standard libraries, of course, but if that's not possible, with a 3rd party library.</p> http://stackoverflow.com/questions/1192361/how-to-convert-microsoft-locale-id-lcid-into-language-code-or-locale-object-in/1192856#1192856 0 Answer by Jonik for How to convert Microsoft Locale ID (LCID) into language code or Locale object in Java Jonik 2009-07-28T09:05:13Z 2009-07-28T12:11:27Z <p>As it started to look like there is no ready Java solution to do this mapping, we took the ~20 minutes to roll something of our own, at least for now.</p> <p>We took the information from the horse's mouth, i.e. <a href="http://msdn.microsoft.com/en-us/goglobal/bb964664.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/goglobal/bb964664.aspx</a>, and copy-pasted it (through Excel) into a .properties file like this: </p> <pre><code>1078 = Afrikaans - South Africa 1052 = Albanian - Albania 1118 = Amharic - Ethiopia 1025 = Arabic - Saudi Arabia 5121 = Arabic - Algeria ... </code></pre> <p>Then there's a very simple class that reads the information into a map, and has a method for doing the conversion.</p> <pre><code>Map&lt;String, String&gt; lcidToDescription; public String getDescription(String lcid) { ... } </code></pre> <p>And yes, this doesn't actually map to <em>language code</em> or <em>Locale object</em> (which is what I originally asked), but to Microsoft's "Language - Country/Region" description. It turned out this was sufficient for our current need.</p> <p>Disclaimer: this really is a minimalistic, "dummy" way of doing it yourself in Java, and obviously keeping (and maintaining) a copy of the LCID mapping information in your own codebase is not very elegant. (On the other hand, neither would I want to include a huge library jar or do anything overly complicated just for this simple mapping.) So despite this answer, <strong>feel free to post more elegant solutions or existing libraries</strong> if you know of anything like that.</p> http://stackoverflow.com/questions/1188400/getting-the-path-to-the-directory-of-a-given-class-file 1 Getting the path to the directory of a given class file Jonik 2009-07-27T14:15:40Z 2009-07-28T05:04:24Z <p>I was confronted with code which tries to read some configuration files from the same directory where the .class file for the class itself is:</p> <pre><code>File[] configFiles = new File( this.getClass().getResource(".").getPath()).listFiles(new FilenameFilter() { public boolean accept(File dir, String name) { return name.endsWith(".xml"); } }); </code></pre> <p>Apparently this works in some cases (when running the code inside Resin, perhaps), but for me, running Tomcat, it simply fails with NPE, because <code>getClass().getResource(".")</code> returns <code>null</code>.</p> <p>A colleague suggested creating another config file containing a list of all the ".xml" config files (which indeed would work here as it stays quite static), and that you shouldn't really try to do something like this in Java. </p> <p>Still, I'm wondering if there is <em>some</em> nice way, which works universally, for getting the path to the directory where a given .class file is located? I guess you could get it from the path of the .class file itself like this:</p> <pre><code>new File(this.getClass().getResource("MyClass.class").getPath()).getParent() </code></pre> <p>... but is this the only / cleanest way?</p> <p><strong>Edit</strong>: To clarify, assume we <em>know</em> this is used in an application deployed in such a way that MyClass.class will always be read from a .class file on disk, and the resources will be there in that same directory.</p> http://stackoverflow.com/questions/1147277/can-you-go-home-at-5pm-guilt-free/1177501#1177501 0 Answer by Jonik for Can you go home at 5pm, guilt free? Jonik 2009-07-24T13:03:10Z 2009-07-24T13:03:10Z <blockquote> <p>Can you go home at 5pm, guilt free?</p> </blockquote> <p>I couldn't usually, but that's because I came in at 10am ;-) Most often I go home, guilt free, at about 6pm.</p> <p>Where I work we don't do overtime (or do it <em>extremely</em> rarely); we don't believe in it. I'm not 100% sure, but I have the impression most agile teams prefer it this way (even if it isn't in the manifesto).</p> <p>Work hours are flexible. We have the morning scrum at 10am every day, so that's the latest you can come. Personally I'm at work usually from 9.30...10 until 5.30...6. (Actually I'd like to shift this to a little earlier... but it's not easy. :-) Some of my coworkers do work from 8 to 4 or so.)</p> <p>You can stay longer, sure, if you want. It accumulates flex hours, which you have to keep in balance in the long run. If I'm deeply in the middle of something, <em>in the zone</em> or whatever you call it, I might stay quite late - on the other hand, if I feel unproductive or too tired or something, I might leave early. I think this is the way it should be - I'm actually saving the employer's money if go home when not feeling productive at all. </p> <p>I'd definitely hate working somewhere where they are very strict about office hours, or where they monitor you about it very closely. I believe that when employees are trusted, they'll also be most happy and will best get the job done. Also, my experience is that in software development it makes no sense to fixate on the hours you spend <em>at the office</em> -- I've had many 'breakthrough' ideas about work projects when sitting on the bus on the way home, or when getting to sleep at night or whatever. </p> http://stackoverflow.com/questions/1092959/recommended-books-about-the-software-business/1093208#1093208 6 Answer by Jonik for Recommended books about the software business? Jonik 2009-07-07T15:57:38Z 2009-07-07T16:03:31Z <p><a href="http://en.wikipedia.org/wiki/Mythical%5Fman%5Fmonth" rel="nofollow"><strong>The Mythical Man-Month</strong></a> by Fred Brooks</p> <p><img src="http://upload.wikimedia.org/wikipedia/en/f/fd/Mythical%5Fman-month%5F%28book%5Fcover%29.jpg" alt="The Mythical Man Month" /></p> <p>Isn't this the mother of all software business books, so to speak? First published in 1975, but still surprisingly relevant. </p> <p>It is somewhat technical in parts, but still largely about issues like project management which are quite central to doing business with software.</p> http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/1856962#1856962 Comment by Jonik on What non-programming books should programmers read? Jonik 2009-12-14T14:28:42Z 2009-12-14T14:28:42Z Duplicate of <a href="http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/736375#736375" rel="nofollow" title="what non programming books should programmers read">stackoverflow.com/questions/38210/&hellip;</a> - vote that up instead. (And it's &quot;Neuromancer&quot; in English.) http://stackoverflow.com/questions/1879283/different-ways-of-write-singleton-in-java/1879298#1879298 Comment by Jonik on Different ways of write singleton in java Jonik 2009-12-10T08:14:23Z 2009-12-10T08:14:23Z @Steve: Yeah, it came out in 2008. Definitely a worthwhile (and much needed) update, even if the best parts of it remain largely unchanged from the 1st ed http://stackoverflow.com/questions/1873659/string-conversion Comment by Jonik on String Conversion Jonik 2009-12-09T12:57:30Z 2009-12-09T12:57:30Z @Kumar: If jellybean's answer solved your problem, consider &quot;accepting&quot; it by ticking the green checkmark on the left. http://stackoverflow.com/questions/1865540/free-java-projects-online-and-download Comment by Jonik on Free java projects Online and download Jonik 2009-12-07T08:38:46Z 2009-12-07T08:38:46Z Well, it probably belongs more to SO than to SU. There are lots of &quot;where to find online resources related to language or technology X&quot; type questions on SO. http://stackoverflow.com/questions/1821976/adding-elements-to-an-array Comment by Jonik on Adding elements to an array? Jonik 2009-11-30T19:55:45Z 2009-11-30T19:55:45Z Also, you need to realise that ArrayList which you're using is <b>not</b> the same as array. It's a type of Collection (or, more specifically, List) –&#160;see the Java Collections tutorial linked to above. http://stackoverflow.com/questions/1802629/is-there-an-elegant-way-to-remove-nulls-while-transforming-a-collection-using-goo/1803804#1803804 Comment by Jonik on Is there an elegant way to remove nulls while transforming a Collection using Google Collections? Jonik 2009-11-26T18:32:35Z 2009-11-26T18:32:35Z Nope, it doesn't work as you say - that mutable list (obviously) follows the contract defined by Collection.remove(). Do try it out with a small test program - that's really quick to do: <a href="http://www.copypastecode.com/16197/" rel="nofollow">copypastecode.com/16197</a> http://stackoverflow.com/questions/1802629/is-there-an-elegant-way-to-remove-nulls-while-transforming-a-collection-using-goo/1803804#1803804 Comment by Jonik on Is there an elegant way to remove nulls while transforming a Collection using Google Collections? Jonik 2009-11-26T14:29:51Z 2009-11-26T14:29:51Z Hmm, actually, it doesn't remove all nulls. See Collection.remove() Javadoc: &quot;Removes a <b>single instance</b> of the specified element from this collection&quot;. If a Set was used for resourceIds, then this would indeed work. http://stackoverflow.com/questions/1802629/is-there-an-elegant-way-to-remove-nulls-while-transforming-a-collection-using-goo/1802941#1802941 Comment by Jonik on Is there an elegant way to remove nulls while transforming a Collection using Google Collections? Jonik 2009-11-26T11:34:42Z 2009-11-26T11:34:42Z Excellent advice, thank you! Using Predicates.notNull() and putting the Function in a constant indeed clarify the code a lot. http://stackoverflow.com/questions/1706496/java-effective-files-copying Comment by Jonik on java - effective files copying Jonik 2009-11-10T11:31:37Z 2009-11-10T11:31:37Z Oh, the NIO related answers here might be of interest to you: <a href="http://stackoverflow.com/questions/106770/standard-concise-way-to-copy-a-file-in-java" rel="nofollow" title="standard concise way to copy a file in java">stackoverflow.com/questions/106770/&hellip;</a> http://stackoverflow.com/questions/1706496/java-effective-files-copying Comment by Jonik on java - effective files copying Jonik 2009-11-10T09:59:14Z 2009-11-10T09:59:14Z To simplify your code you could use e.g. Commons IO (see Guillaume's answer), but whichever library you choose won't change the fact that copying (as opposed to moving) a large number of files will be <i>slow</i> due to disk IO limitations. http://stackoverflow.com/questions/1706496/java-effective-files-copying/1706619#1706619 Comment by Jonik on java - effective files copying Jonik 2009-11-10T09:35:56Z 2009-11-10T09:35:56Z Only problem is that no released version of Guava exists yet - only option is to check out trunk sources from their svn. (Correct me if I'm wrong.) http://stackoverflow.com/questions/1706199/get-the-array-of-strings-by-matching-the-pattern-in-the-given-string Comment by Jonik on Get the array of strings by matching the pattern in the given string Jonik 2009-11-10T07:51:20Z 2009-11-10T07:51:20Z By the way, looking at your earlier questions... if an answer solves your problem, don't forget to mark it as &quot;accepted&quot; by ticking the green checkmark on the left. http://stackoverflow.com/questions/1700703/unit-for-estimating-hours-in-scrum-tool/1702199#1702199 Comment by Jonik on Unit for estimating hours in Scrum tool Jonik 2009-11-09T16:49:17Z 2009-11-09T16:49:17Z One way to avoid the problem you mentioned is agreeing that new stories are not started until earlier ones are finished (or have absolutely no work left that can be divvied up). Also, I think there's nothing wrong using hours for estimating how much work remains for a task; these are rough estimates and giving them does <b>not</b> take a lot of time. http://stackoverflow.com/questions/1691876/using-the-right-numeric-data-type/1692364#1692364 Comment by Jonik on Using the right numeric data type Jonik 2009-11-08T16:45:40Z 2009-11-08T16:45:40Z Kevin - Well, yeah, but that wasn't awfully clear from the answer, especially when there isn't a word about the fact that BigDecimal would be the right way! Such examples would better serve as an appendix to e.g. your own answer which lays out the basic rules of thumb way more clearly (as voters agree) http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/1695798#1695798 Comment by Jonik on What non-programming books should programmers read? Jonik 2009-11-08T10:10:30Z 2009-11-08T10:10:30Z <a href="http://gettingreal.37signals.com/" rel="nofollow">gettingreal.37signals.com</a>. And you would describe it as a non-programming book?