User Julien Chastang - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T22:18:42Z http://stackoverflow.com/feeds/user/32174 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/533462/yui-autocomplete-misalignment-problem 0 YUI autocomplete misalignment problem Julien Chastang 2009-02-10T18:01:14Z 2009-11-24T13:37:09Z <p><img src="http://farm4.static.flickr.com/3352/3270044482_610eee066a.jpg?v=0" alt="alt text" /></p> <p>I am using the autocomplete YUI feature. However, as you can see I am having trouble aligning the suggestion drop down with the text input when I put a label in front of the text input. I am following <a href="http://developer.yahoo.com/yui/examples/autocomplete/ac_basic_array_clean.html" rel="nofollow">the example here</a> exactly except for this snippet of code where I simply replace the H3 with a label element in the form:</p> <pre><code>&lt;div id="myAutoComplete"&gt; &lt;label&gt;Enter a state:&lt;/label&gt; &lt;input id="myInput" type="text"&gt; &lt;div id="myContainer"&gt;&lt;/div&gt; &lt;/div&gt; &lt;script type="text/javascript" src="http://developer.yahoo.com/yui/examples/autocomplete/assets/js/data.js"&gt;&lt;/script&gt; </code></pre> <p>(I also had to change the data.js path from a relative to absolute path.)</p> <p>What is the best way to have the suggestion drop down to line up with the text input? I would like a solution that works on all popular modern browsers (FF3, Safari, Chrome, IE), plus IE6. </p> http://stackoverflow.com/questions/257333/clojure-editor-ide-recommendations-on-os-x 15 Clojure editor/IDE recommendations on OS X Julien Chastang 2008-11-02T20:44:52Z 2009-11-22T19:03:48Z <p>I am starting to learn the Clojure programming language. Are there any recommendations for Clojure editors/IDEs on OS X?</p> <p><strong>Update 2009-9-23</strong>: The clojure space has changed tremendously since I originally posted this question. Many of the links below, especially those that refer to clojure-mode with emacs, are out-of-date. The best clojure IDE I found was the enclojure Netbeans plugin which was recently released (2009-08-25).</p> http://stackoverflow.com/questions/331777/what-are-my-options-for-running-java-6-on-os-x 4 What are my options for running Java 6 on OS X? Julien Chastang 2008-12-01T18:44:58Z 2009-09-04T13:17:46Z <p>What are my options for running Java 6 on OS X? </p> <p>I have an MacBook Pro Intel Core Duo running Mac OS X 10.4. Do I have any options for running Java 6 on this hardware and OS?</p> <p>Related questions: Which Macs (either current or forthcoming) support 64-bit computing? Are there any Apple laptops (either current or forthcoming) that will have a 64 bit architecture?</p> <p>Any relevant links would be appreciated.</p> http://stackoverflow.com/questions/316352/do-you-finalize-local-variables-and-method-parameters-in-java 12 Do you "final"ize local variables and method parameters in Java? Julien Chastang 2008-11-25T04:16:23Z 2009-08-30T08:24:06Z <p>In Java, you can qualify local variables and method parameters with the final keyword.</p> <pre><code>public static void foo(final int x) { final String qwerty = "bar"; } </code></pre> <p>Doing so results in not being able to reassign x and qwerty in the body of the method.</p> <p>This practice nudges your code in the direction of immutability which is generally considered a plus. But, it also tends to clutter up code with "final" showing up everywhere. What is your opinion of the final keyword for local variables and method parameters in Java?</p> http://stackoverflow.com/questions/550024/tomcat-compression-does-not-add-a-content-encoding-gzip-in-the-header 3 Tomcat Compression Does Not Add a Content-Encoding: gzip in the Header Julien Chastang 2009-02-15T00:06:14Z 2009-08-11T13:43:48Z <p>I am using Tomcat to compress my HTML content like this:</p> <pre><code>&lt;Connector port="8080" maxHttpHeaderSize="8192" maxProcessors="150" maxThreads="150" minSpareThreads="25" maxSpareThreads="75" enableLookups="false" redirectPort="8443" acceptCount="150" connectionTimeout="20000" disableUploadTimeout="true" compression="on" compressionMinSize="128" noCompressionUserAgents="gozilla, traviata" compressableMimeType="text/html" URIEncoding="UTF-8" /&gt; </code></pre> <p>In the HTTP header (as observed via YSlow), however, I am not seeing </p> <pre><code>Content-Encoding: gzip </code></pre> <p>resulting in a poor YSlow score. </p> <p>All I see is</p> <pre><code>HeadersPost Response Headers Server: Apache-Coyote/1.1 Content-Type: text/html;charset=ISO-8859-1 Content-Language: en-US Content-Length: 5251 Date: Sat, 14 Feb 2009 23:33:51 GMT </code></pre> <p>I am running an apache mod_jk Tomcat configuration.</p> <p>How do I compress HTML content with Tomcat, and also have it add "Content-Encoding: gzip" in the header?</p> http://stackoverflow.com/questions/303853/what-are-your-impressions-of-maven 16 What are your impressions of Maven? Julien Chastang 2008-11-19T23:52:00Z 2009-07-27T20:56:18Z <p>I am considering using Maven for a Java open source project I manage.</p> <p>In the past, however, Maven has not always had the best reputation. What are your impressions of Maven, at this time? </p> http://stackoverflow.com/questions/1099064/do-beautiful-user-friendly-java-applets-exist/1099261#1099261 8 Answer by Julien Chastang for Do beautiful, user-friendly Java applets exist? Julien Chastang 2009-07-08T16:46:26Z 2009-07-08T16:46:26Z <p><a href="http://www.visualthesaurus.com/" rel="nofollow">Visual Thesaurus</a> is the coolest / best applet I know of.</p> http://stackoverflow.com/questions/507966/recommendations-for-a-fortran-xml-library 1 Recommendations for a Fortran XML library. Julien Chastang 2009-02-03T16:58:35Z 2009-07-03T01:00:03Z <p>Are there any recommendations for a Fortran XML library? I found a <a href="http://www.google.com/search?q=fortran+xml" rel="nofollow">few</a>, but I do not know how well they are supported.</p> http://stackoverflow.com/questions/463535/using-javascript-to-manipulate-html-input-checkbox-elements-via-type-instead-of 4 Using JavaScript to manipulate HTML input (checkbox) elements via type instead of name. Julien Chastang 2009-01-20T23:26:10Z 2009-06-20T02:29:21Z <p>I am implementing an HTML form with some checkbox input elements, and I want to have a Select All or DeSelect All button. However, <em>I do not want to rely on the name</em> of the input element (like <a href="http://www.plus2net.com/javascript_tutorial/checkbox-checkall.php" rel="nofollow">this example</a>) but rather the <strong>type</strong> because I have multiple checkbox groups with different names. Is there a way to check and uncheck all checkbox input elements within a form with JavaScript by relying on the type instead of the name?</p> <p>Edit: We rely on YUI libraries, so I have access YUI if that provides a solution.</p> http://stackoverflow.com/questions/988998/yui-uploader-with-java-back-end 0 YUI Uploader with Java back-end Julien Chastang 2009-06-12T20:55:23Z 2009-06-15T05:24:43Z <p>I am trying to use the (flash based) <a href="http://developer.yahoo.com/yui/uploader/" rel="nofollow">YUI Uploader</a> with a Java (Spring-based) back-end.</p> <p>The typical way of uploading files in the Java Servlet world is to set the <code>ENCTYPE='multipart/form-data'</code> on the HTML form requesting the file from the user. With the right server side APIs (i.e. <a href="http://jakarta.apache.org/commons/fileupload" rel="nofollow">Commons FileUpload</a>), it is possible to get the file on the server.</p> <p>But I am stymied by how to achieve this with the YUI Uploader. I am able to reach the Java controller, and I am even able to extract the custom post values. But I have no idea how to extract the binary file data out of the request.</p> <p>Has anyone out had any luck with a YUI uploader with a Java back-end?</p> http://stackoverflow.com/questions/988998/yui-uploader-with-java-back-end/994583#994583 0 Answer by Julien Chastang for YUI Uploader with Java back-end Julien Chastang 2009-06-15T05:23:19Z 2009-06-15T05:23:19Z <p>To answer my own question, and to make a long story short, this snippet of code did the trick:</p> <pre><code>@Controller @RequestMapping("/FileUploadController") public class FileUploadController { @RequestMapping(method = RequestMethod.POST) protected ModelAndView onSubmit(HttpServletRequest request) throws Exception{ FileItemFactory factory = new DiskFileItemFactory(); ServletFileUpload upload = new ServletFileUpload(factory); List&lt;FileItem&gt; /* FileItem */ items = upload.parseRequest(request); for (FileItem fileItem : items) { if (fileItem.isFormField()) { // processFormField(fileItem); } else { File uploadedFile = new File("/tmp/junk/" + fileItem.getName()); fileItem.write(uploadedFile); } } return new ModelAndView("index"); } } </code></pre> <p>This example uses Spring, but you should be able to do exactly the same as long as you have HttpServletRequest object.</p> http://stackoverflow.com/questions/986695/in-java-is-using-throws-exception-instead-of-throwing-mulitple-specific-exceptio/987584#987584 1 Answer by Julien Chastang for In Java, is using throws Exception instead of throwing mulitple specific exceptions good practice? Julien Chastang 2009-06-12T16:17:06Z 2009-06-12T16:28:15Z <p>Brian Goetz touches on some of these issues <a href="http://www.ibm.com/developerworks/java/library/j-jtp05254.html" rel="nofollow">here</a>. Also see <a href="http://java.sun.com/docs/books/effective/" rel="nofollow">Effective Java</a> 2nd Edition by Josh Bloch. He devotes a whole section on Exceptions. In addition, Rod Johnson, the founder of the Spring Framework, details his thoughts about Java Exception handling in <a href="http://www.wrox.com/WileyCDA/WroxTitle/productCd-0764543857.html" rel="nofollow">J2EE Design and Development</a>. You may or may not agree with his exception handling philospohy, but at least it may make more sense why they took the decisions they did.</p> <p><img src="http://java.sun.com/docs/books/images/effective.jpg" alt="alt text" /> <img src="http://media.wiley.com/product%5Fdata/coverImage/57/07645438/0764543857.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/976639/thinking-in-appengine/977509#977509 1 Answer by Julien Chastang for Thinking in AppEngine Julien Chastang 2009-06-10T18:54:28Z 2009-06-10T18:54:28Z <p>I played around with Google App Engine for Java and found that it had many shortcomings:</p> <p>This is not general purpose Java application hosting. In particular, you do not have access to a full JRE (e.g. cannot create threads, etc.) Given this fact, you pretty much have to build your application from the ground up with the Google App Engine JRE in mind. Porting any non-trival application would be impossible.</p> <p>More pertinent to your datastore questions...</p> <p>The datastore performance is abysmal. I was trying to write 5000 weather observations per hour -- nothing too massive -- but I could not do it because I kept on running into time out exception both with the datastore and the HTTP request. Using the "low-level" datastore API helped somewhat, but not enough.</p> <p>I wanted to delete those weather observation after 24 hours to not fill up my quota. Again, could not do it because the delete operation took too long. This problem in turn led to my datastore quota filling up. Insanely, you cannot easily delete large swaths of data in the GAE datastore.</p> <p>There are some features that I did like. Eclipse integration is snazzy. The appspot application server UI is a million times better than working with Tomcat (e.g. nice views of logs). But the minuses far outweighed those benefits for me.</p> <p>In sum, I constantly found myself having to <a href="http://sethgodin.typepad.com/seths%5Fblog/2005/03/dont%5Fshave%5Fthat.html" rel="nofollow">shave the yak</a>, in order to do something that would have been pretty trivial in any normal Java / application hosting environment.</p> http://stackoverflow.com/questions/970029/java-primitive-data-types/971124#971124 5 Answer by Julien Chastang for Java Primitive Data Types Julien Chastang 2009-06-09T16:25:17Z 2009-06-09T16:25:17Z <p><img src="http://farm4.static.flickr.com/3553/3611374260%5F4cf51c00e1%5Fo.png" alt="alt text" /></p> http://stackoverflow.com/questions/959143/future-of-aspect-oriented-programming/959829#959829 1 Answer by Julien Chastang for Future of Aspect Oriented Programming Julien Chastang 2009-06-06T14:42:48Z 2009-06-06T14:42:48Z <p>People forget that Java annotations and their use in frameworks like Guice and Spring were inspired by AOP. I would say Java annotations is where AOP is going today.</p> http://stackoverflow.com/questions/940506/threadlocal-resource-leak-and-weakreference 1 ThreadLocal Resource Leak and WeakReference Julien Chastang 2009-06-02T16:28:59Z 2009-06-03T06:15:04Z <p>My limited understanding of <a href="http://java.sun.com/javase/6/docs/api/java/lang/ThreadLocal.html" rel="nofollow">ThreadLocal</a> is that it has <a href="http://www.google.com/search?q=threadlocal%2Bleak" rel="nofollow">resource leak issues</a>. I gather this problem can be remedied through proper use of <a href="http://java.sun.com/javase/6/docs/api/java/lang/ref/WeakReference.html" rel="nofollow">WeakReferences</a> with ThreadLocal (although I may have misunderstood this point.) I would simply like a pattern or example for correctly using ThreadLocal with WeakReference, if one exists. For instance, in this code snippet where would the WeakReference be introduced?</p> <pre><code>static class DateTimeFormatter { private static final ThreadLocal&lt;SimpleDateFormat&gt; DATE_PARSER_THREAD_LOCAL = new ThreadLocal&lt;SimpleDateFormat&gt;() { protected SimpleDateFormat initialValue() { return new SimpleDateFormat("yyyy/MM/dd HH:mmz"); } }; public String format(final Date date) { return DATE_PARSER_THREAD_LOCAL.get().format(date); } public Date parse(final String date) throws ParseException { return DATE_PARSER_THREAD_LOCAL.get().parse(date); } } </code></pre> http://stackoverflow.com/questions/752399/google-app-engine-jre-class-black-list 4 Google app engine JRE Class "Black List" Julien Chastang 2009-04-15T16:00:44Z 2009-06-01T00:45:54Z <p>There is a "<a href="http://code.google.com/appengine/docs/java/jrewhitelist.html" rel="nofollow">JRE Class White List</a>" for the Google App Engine.</p> <p>What I would really like is a "Black List" -- in other words, Java APIs that will not work on GAE. Does such a list exist? Have any developers run into problems with Java APIs on GAE? </p> http://stackoverflow.com/questions/870773/which-is-better-for-java-development-hosting-aptana-google-app-engine-slice-ho/931399#931399 0 Answer by Julien Chastang for Which is better for Java development hosting: Aptana? Google App Engine? Slice Host? Julien Chastang 2009-05-31T05:42:56Z 2009-05-31T05:42:56Z <p>Bear in mind, Google App Engine does not give you a full JRE. You cannot spawn threads directly, for example. Also, I have found that the GAE datastore performance is too slow -- I run into timeout exceptions constantly. In sum, it is not a true application hosting solution. You have to heavily tailor your application to make it run on GAE.</p> http://stackoverflow.com/questions/890276/groovy-gotchas-when-integrating-groovy-code-in-pre-exsting-java-project 1 Groovy gotchas when integrating Groovy code in pre-exsting Java project. Julien Chastang 2009-05-20T21:12:06Z 2009-05-21T00:41:01Z <p>We have a large scale Java web application project. I am considering integrating some Groovy code in situations where I think Groovy could reduce our effort. For example, XML parsing and unit testing.</p> <p>Are there any "gotchas" or negative impacts for this scenario. For instance, perhaps it would make our build much more complicated. I have also heard of compatibility problems.</p> http://stackoverflow.com/questions/853321/gwt-gotchas/853496#853496 1 Answer by Julien Chastang for GWT: Gotcha's Julien Chastang 2009-05-12T15:52:33Z 2009-05-12T15:52:33Z <p>To expand on what Cletus said about "certain classes", you do not have a full JRE on the GWT client-side. (Remember, GWT Java client code is translated to JavaScript.) This means that third party Java APIs will often not work client-side. They need to be ported for GWT. So much for write once, run everywhere. See <a href="http://code.google.com/webtoolkit/doc/1.6/RefJreEmulation.html" rel="nofollow">here</a> for more information about this limitation.</p> http://stackoverflow.com/questions/831687/is-there-a-definitive-solution-to-javascript-floating-point-errors/831817#831817 3 Answer by Julien Chastang for Is there a definitive solution to javascript floating-point errors? Julien Chastang 2009-05-06T21:18:46Z 2009-05-06T23:00:44Z <p>According to Douglas Crockford, the only way around this problem is scale your values to integer. Make sure it really is an integer by using <code>Math.round</code> on the scaled value. (DC does not talk about the rounding part, but I discovered it was necessary. e.g. <code>Math.round(1.1 *100))</code> Do calculation(s). When you are done with the math scale back to original precision. See <em>JavaScript: The Good Parts</em> "Floating Point" section.</p> http://stackoverflow.com/questions/819138/any-suggestions-for-a-program-or-small-project-to-learn-about-concurrency-in-java/821883#821883 0 Answer by Julien Chastang for Any suggestions for a program or small project to learn about concurrency in Java? Julien Chastang 2009-05-04T20:26:27Z 2009-05-04T20:26:27Z <p>Write a matrix-multiply algorithm. Parallelize it. Optimize it. See how it scales especially if you have a multi-core machine. That would be a fun project.</p> http://stackoverflow.com/questions/803971/cloning-with-generics/804177#804177 1 Answer by Julien Chastang for Cloning with generics Julien Chastang 2009-04-29T20:44:31Z 2009-04-29T20:44:31Z <p>As a general comment, avoid using Object.clone() whenever possible. If you have control over the code in question, implement a copy constructor instead. See <a href="http://stackoverflow.com/questions/270369/what-have-you-used-object-clone-for/270467#270467">here</a> for information.</p> http://stackoverflow.com/questions/801993/java-multi-threading-safe-publication/803133#803133 1 Answer by Julien Chastang for Java multi-threading & Safe Publication Julien Chastang 2009-04-29T16:14:10Z 2009-04-29T16:14:10Z <p>"is this really a real problem?" </p> <p>Yes absolutely. Even the most trivial web application has to confront issues surrounding concurrency. Servlets are accessed by multiple threads, for example. </p> <p>The other issue is that threading and concurrency is very hard to handle correctly. It is almost too hard. That is why we are seeing trends emerge like transactional memory, and languages like Clojure that hopefully make concurrency easier to deal with. But we have a ways to go before these become main stream. Thus we have to do the best with what we have. Reading JCiP is a very good start.</p> http://stackoverflow.com/questions/795549/difference-between-classjava-and-closurejavascript/796306#796306 1 Answer by Julien Chastang for Difference between class(java) and closure(javascript)? Julien Chastang 2009-04-28T05:09:02Z 2009-04-28T15:42:22Z <p>This is a good question but could be better worded:</p> <p>"What are some similarities and differences between Java objects and JavaScript closures"?</p> <p>Similarities: they both have persistent state in their local variables. Their methods have access to those state variables.</p> <p>Differences: Javascript is a functional language, therefore functions within functions can be immediately invoked and returned. For example:</p> <pre><code>newXY = function(x,y) { var that = {};//Instantiate new object var x = parseFloat(x); var y = parseFloat(y); that.xtimesy = function() { return x*y; }(); // &lt;-- Notice the immediate invocation of the function, here. return that; }; </code></pre> <p>So you can write code like this snippet copy / pasted from <a href="http://www.mozilla.org/rhino/shell.html" rel="nofollow">rhino shell</a>:</p> <pre><code>js&gt; var foo = newXY(2,5); js&gt; foo.xtimesy; 10 </code></pre> http://stackoverflow.com/questions/769749/is-there-a-good-charting-library-for-iphone/770310#770310 0 Answer by Julien Chastang for Is there a good charting library for iPhone? Julien Chastang 2009-04-20T22:07:35Z 2009-04-20T22:07:35Z <p>You can theoretically use the <a href="http://code.google.com/apis/chart/" rel="nofollow">Google Chart API</a> along with a <a href="http://groups.google.com/group/google-chart-api/web/useful-links-to-api-libraries" rel="nofollow">Cocoa wrapper</a>. This could be a light-weight solution.</p> http://stackoverflow.com/questions/752280/downsides-to-immutable-objects-in-java/752311#752311 2 Answer by Julien Chastang for Downsides to immutable objects in Java? Julien Chastang 2009-04-15T15:45:26Z 2009-04-15T15:45:26Z <p>You pretty much answered your own question. The JavaBean specification, I don't believe, mentions anything about immutability, yet JavaBeans are the bread and butter of many Java frameworks.</p> http://stackoverflow.com/questions/738351/recommendation-for-javascript-url-manipulation-library-api 1 Recommendation for JavaScript URL manipulation library / API Julien Chastang 2009-04-10T17:52:41Z 2009-04-10T17:56:59Z <p>What are your recommendations for JavaScript URL manipulation library / API</p> <p>Specifically, I would like to </p> <ul> <li><p>Extract URL parameters out of a URL string. Ideally, would reflect into a JS object.</p></li> <li><p>Form URL parameter strings (ideally from a JS Object).</p></li> </ul> http://stackoverflow.com/questions/700072/java-socket-programming-does-not-work-for-10-000-clients/701779#701779 5 Answer by Julien Chastang for Java Socket Programming does not work for 10,000 clients Julien Chastang 2009-03-31T16:08:16Z 2009-03-31T16:08:16Z <p>The benefits of NIO are debatable. See Paul Tyma's blog entries <a href="http://paultyma.blogspot.com/2008/03/writing-java-multithreaded-servers.html" rel="nofollow">here</a> and <a href="http://mailinator.blogspot.com/2008/02/kill-myth-please-nio-is-not-faster-than.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/689637/do-i-need-to-worry-about-concurrency-with-tomcat-spring-beans/690606#690606 2 Answer by Julien Chastang for Do I need to worry about concurrency with tomcat spring beans? Julien Chastang 2009-03-27T17:01:43Z 2009-03-27T17:01:43Z <p>In short, yes. Spring Beans can often be shared by multiple threads. Pay special attention to the member variables in your Spring Bean. If they are mutable, either make them immutable or coordinate access with a lock (e.g. with synchronization), ThreadLocal, etc. </p> http://stackoverflow.com/questions/1176986/high-frequency-trading Comment by Julien Chastang on High Frequency Trading Julien Chastang 2009-08-24T15:44:51Z 2009-08-24T15:44:51Z There have been a bunch of (non-technical) articles on this topic recently, and I was wondering exactly the same thing. +1 http://stackoverflow.com/questions/1175008/encrypting-war-files Comment by Julien Chastang on Encrypting War files Julien Chastang 2009-07-24T17:47:13Z 2009-07-24T17:47:13Z +1 for @Mnementh's comments. What is the objective here? You are deploying your war in a web application container (e.g. Tomcat), sever-side. Web clients will not have access to it. http://stackoverflow.com/questions/1026553/are-there-some-good-and-modern-alternatives-to-javadoc Comment by Julien Chastang on Are there some good and modern alternatives to Javadoc? Julien Chastang 2009-06-22T16:04:54Z 2009-06-22T16:04:54Z It is true. Javadoc is stuck in the 1990s. Not an answer, but I asked something similar a while back: <a href="http://stackoverflow.com/questions/382114/javafx-and-javadoc" rel="nofollow" title="javafx and javadoc">stackoverflow.com/questions/382114/&hellip;</a> http://stackoverflow.com/questions/976639/thinking-in-appengine/977509#977509 Comment by Julien Chastang on Thinking in AppEngine Julien Chastang 2009-06-11T19:52:11Z 2009-06-11T19:52:11Z @Mark. That Python example, I believe, does not point to the high-level PersistenceManager API, but the low-level datastore API (Again see is.gd/YWPj is.gd/Z4Pv). As I mention, this is what I did to improve performance. But it was still too slow. I ended up &quot;filling&quot; a data structure and gradually persisting it in smaller chunks via a cron. This solution was annoying b/c it added a lot of complexity. When it was time to delete old data to avoid quota problems, I ran into timeout problems again. At that point I decided the GAE persistence framework was too immature, and non-scalable. http://stackoverflow.com/questions/976639/thinking-in-appengine/977509#977509 Comment by Julien Chastang on Thinking in AppEngine Julien Chastang 2009-06-11T16:06:31Z 2009-06-11T16:06:31Z @Nick Unfortunately, you cannot batch. See <a href="http://is.gd/YWPj" rel="nofollow">is.gd/YWPj</a> &quot;To save multiple objects...&quot;, although they say they are working on the problem. Again, working with the low-level API achieves batch-like performance, but it is still too slow. I was trying to persist weather observation (temperature, pressure, etc.) which come at roughly 5000 per hour. Nothing dramatic. http://stackoverflow.com/questions/970029/java-primitive-data-types/970048#970048 Comment by Julien Chastang on Java Primitive Data Types Julien Chastang 2009-06-09T16:17:57Z 2009-06-09T16:17:57Z Although the Java Language Specification does not mention it, I believe &quot;void&quot; is also a primitive type. http://stackoverflow.com/questions/954252/javascript-closures-and-memory-leaks/954379#954379 Comment by Julien Chastang on JavaScript Closures and Memory Leaks Julien Chastang 2009-06-05T05:47:49Z 2009-06-05T05:47:49Z Was this bug fixed in later / more recent versions of IE? http://stackoverflow.com/questions/947302/if-java-didnt-have-to-care-about-backwards-compatibility-how-would-it-be-differe Comment by Julien Chastang on If Java didn't have to care about backwards compatibility how would it be different? Julien Chastang 2009-06-03T23:05:55Z 2009-06-03T23:05:55Z Unfortunately, this interesting question was closed. To try to answer anyway... In some cases, Sun does not like to fix bugs (e.g. broken date and time APIs) because they want preserve backwards compatibility at all costs, even if the behavior in question is buggy. If they did not obsess over that, we may see long standing defects corrected. I think it is a legitimate questions, especially as we see Java go towards new owners who may have a different point of view on backwards compatibility issues. http://stackoverflow.com/questions/940506/threadlocal-resource-leak-and-weakreference Comment by Julien Chastang on ThreadLocal Resource Leak and WeakReference Julien Chastang 2009-06-02T16:58:21Z 2009-06-02T16:58:21Z Updated. Please see &quot;resource leak issues&quot; link above. http://stackoverflow.com/questions/890276/groovy-gotchas-when-integrating-groovy-code-in-pre-exsting-java-project/890913#890913 Comment by Julien Chastang on Groovy gotchas when integrating Groovy code in pre-exsting Java project. Julien Chastang 2009-05-21T03:49:58Z 2009-05-21T03:49:58Z Thanks Steve. +1 Unfortunately, these non-Java JVM languages seem to have a long way to go before they are ready for prime time. Also poor eclipse support is a show-stopper. http://stackoverflow.com/questions/864773/resource-for-learning-java-generics/864821#864821 Comment by Julien Chastang on Resource for learning Java generics? Julien Chastang 2009-05-14T19:28:53Z 2009-05-14T19:28:53Z +1 Naftalin &amp; Wadler's book is, by far, the best resource on this difficult subject. http://stackoverflow.com/questions/848604/javascript-graphing-library-to-draw-a-region/848659#848659 Comment by Julien Chastang on Javascript graphing library to draw a region Julien Chastang 2009-05-11T16:40:34Z 2009-05-11T16:40:34Z You can do something like this: <a href="http://is.gd/yT7T" rel="nofollow">is.gd/yT7T</a>. Also if you go down this road, you will probably want to use a GCA Python wrapper. There is at least one and possibly several such wrappers. I generated the plot with my own Java wrapper API, <a href="http://charts4j.googlecode.com" rel="nofollow">charts4j.googlecode.com</a>. I hope that works for you. http://stackoverflow.com/questions/831687/is-there-a-definitive-solution-to-javascript-floating-point-errors/831817#831817 Comment by Julien Chastang on Is there a definitive solution to javascript floating-point errors? Julien Chastang 2009-05-06T23:02:25Z 2009-05-06T23:02:25Z Convert all values to cents. (See above about Math.round.) Do as many calculations as you want. When you are ready to give the user answer convert back to $ by dividing by 100. That should work. http://stackoverflow.com/questions/801993/java-multi-threading-safe-publication/803133#803133 Comment by Julien Chastang on Java multi-threading & Safe Publication Julien Chastang 2009-05-05T20:08:10Z 2009-05-05T20:08:10Z I believe that is incorrect. See Chapter 3.4 from JCiP. Properly constructed &quot;Immutable object are always thread-safe.&quot; http://stackoverflow.com/questions/817856/when-and-how-should-i-use-a-threadlocal-variable/817926#817926 Comment by Julien Chastang on When and how should I use a ThreadLocal variable? Julien Chastang 2009-05-04T03:39:13Z 2009-05-04T03:39:13Z Another alternative to synchronization or threadlocal is to make the variable a local variable. Local vars are always thread safe. I assume that it is bad practice to make DateFormats local because they are expensive to create, but I have never seen solid metrics on this topic.