User Julien Chastang - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T22:18:42Zhttp://stackoverflow.com/feeds/user/32174http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/533462/yui-autocomplete-misalignment-problem0YUI autocomplete misalignment problemJulien Chastang2009-02-10T18:01:14Z2009-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><div id="myAutoComplete">
<label>Enter a state:</label>
<input id="myInput" type="text">
<div id="myContainer"></div>
</div>
<script type="text/javascript" src="http://developer.yahoo.com/yui/examples/autocomplete/assets/js/data.js"></script>
</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-x15Clojure editor/IDE recommendations on OS XJulien Chastang2008-11-02T20:44:52Z2009-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-x4What are my options for running Java 6 on OS X? Julien Chastang2008-12-01T18:44:58Z2009-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-java12Do you "final"ize local variables and method parameters in Java?Julien Chastang2008-11-25T04:16:23Z2009-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-header3Tomcat Compression Does Not Add a Content-Encoding: gzip in the HeaderJulien Chastang2009-02-15T00:06:14Z2009-08-11T13:43:48Z
<p>I am using Tomcat to compress my HTML content like this:</p>
<pre><code><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" />
</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-maven16What are your impressions of Maven?Julien Chastang2008-11-19T23:52:00Z2009-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#10992618Answer by Julien Chastang for Do beautiful, user-friendly Java applets exist?Julien Chastang2009-07-08T16:46:26Z2009-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-library1Recommendations for a Fortran XML library.Julien Chastang2009-02-03T16:58:35Z2009-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-of4Using JavaScript to manipulate HTML input (checkbox) elements via type instead of name.Julien Chastang2009-01-20T23:26:10Z2009-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-end0YUI Uploader with Java back-endJulien Chastang2009-06-12T20:55:23Z2009-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#9945830Answer by Julien Chastang for YUI Uploader with Java back-endJulien Chastang2009-06-15T05:23:19Z2009-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<FileItem> /* 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#9875841Answer by Julien Chastang for In Java, is using throws Exception instead of throwing mulitple specific exceptions good practice?Julien Chastang2009-06-12T16:17:06Z2009-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#9775091Answer by Julien Chastang for Thinking in AppEngineJulien Chastang2009-06-10T18:54:28Z2009-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#9711245Answer by Julien Chastang for Java Primitive Data TypesJulien Chastang2009-06-09T16:25:17Z2009-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#9598291Answer by Julien Chastang for Future of Aspect Oriented ProgrammingJulien Chastang2009-06-06T14:42:48Z2009-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-weakreference1ThreadLocal Resource Leak and WeakReferenceJulien Chastang2009-06-02T16:28:59Z2009-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<SimpleDateFormat> DATE_PARSER_THREAD_LOCAL = new ThreadLocal<SimpleDateFormat>() {
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-list4Google app engine JRE Class "Black List"Julien Chastang2009-04-15T16:00:44Z2009-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#9313990Answer by Julien Chastang for Which is better for Java development hosting: Aptana? Google App Engine? Slice Host?Julien Chastang2009-05-31T05:42:56Z2009-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-project1Groovy gotchas when integrating Groovy code in pre-exsting Java project.Julien Chastang2009-05-20T21:12:06Z2009-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#8534961Answer by Julien Chastang for GWT: Gotcha'sJulien Chastang2009-05-12T15:52:33Z2009-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#8318173Answer by Julien Chastang for Is there a definitive solution to javascript floating-point errors?Julien Chastang2009-05-06T21:18:46Z2009-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#8218830Answer by Julien Chastang for Any suggestions for a program or small project to learn about concurrency in Java?Julien Chastang2009-05-04T20:26:27Z2009-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#8041771Answer by Julien Chastang for Cloning with genericsJulien Chastang2009-04-29T20:44:31Z2009-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#8031331Answer by Julien Chastang for Java multi-threading & Safe PublicationJulien Chastang2009-04-29T16:14:10Z2009-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#7963061Answer by Julien Chastang for Difference between class(java) and closure(javascript)?Julien Chastang2009-04-28T05:09:02Z2009-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;
}(); // <-- 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> var foo = newXY(2,5);
js> foo.xtimesy;
10
</code></pre>
http://stackoverflow.com/questions/769749/is-there-a-good-charting-library-for-iphone/770310#7703100Answer by Julien Chastang for Is there a good charting library for iPhone?Julien Chastang2009-04-20T22:07:35Z2009-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#7523112Answer by Julien Chastang for Downsides to immutable objects in Java?Julien Chastang2009-04-15T15:45:26Z2009-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-api1Recommendation for JavaScript URL manipulation library / APIJulien Chastang2009-04-10T17:52:41Z2009-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#7017795Answer by Julien Chastang for Java Socket Programming does not work for 10,000 clientsJulien Chastang2009-03-31T16:08:16Z2009-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#6906062Answer by Julien Chastang for Do I need to worry about concurrency with tomcat spring beans?Julien Chastang2009-03-27T17:01:43Z2009-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-tradingComment by Julien Chastang on High Frequency TradingJulien Chastang2009-08-24T15:44:51Z2009-08-24T15:44:51ZThere have been a bunch of (non-technical) articles on this topic recently, and I was wondering exactly the same thing. +1http://stackoverflow.com/questions/1175008/encrypting-war-filesComment by Julien Chastang on Encrypting War filesJulien Chastang2009-07-24T17:47:13Z2009-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-javadocComment by Julien Chastang on Are there some good and modern alternatives to Javadoc?Julien Chastang2009-06-22T16:04:54Z2009-06-22T16:04:54ZIt 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/…</a>http://stackoverflow.com/questions/976639/thinking-in-appengine/977509#977509Comment by Julien Chastang on Thinking in AppEngineJulien Chastang2009-06-11T19:52:11Z2009-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 "filling" 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#977509Comment by Julien Chastang on Thinking in AppEngineJulien Chastang2009-06-11T16:06:31Z2009-06-11T16:06:31Z@Nick Unfortunately, you cannot batch. See <a href="http://is.gd/YWPj" rel="nofollow">is.gd/YWPj</a> "To save multiple objects...", 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#970048Comment by Julien Chastang on Java Primitive Data TypesJulien Chastang2009-06-09T16:17:57Z2009-06-09T16:17:57ZAlthough the Java Language Specification does not mention it, I believe "void" is also a primitive type.http://stackoverflow.com/questions/954252/javascript-closures-and-memory-leaks/954379#954379Comment by Julien Chastang on JavaScript Closures and Memory LeaksJulien Chastang2009-06-05T05:47:49Z2009-06-05T05:47:49ZWas 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-differeComment by Julien Chastang on If Java didn't have to care about backwards compatibility how would it be different?Julien Chastang2009-06-03T23:05:55Z2009-06-03T23:05:55ZUnfortunately, 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-weakreferenceComment by Julien Chastang on ThreadLocal Resource Leak and WeakReferenceJulien Chastang2009-06-02T16:58:21Z2009-06-02T16:58:21ZUpdated. Please see "resource leak issues" link above.http://stackoverflow.com/questions/890276/groovy-gotchas-when-integrating-groovy-code-in-pre-exsting-java-project/890913#890913Comment by Julien Chastang on Groovy gotchas when integrating Groovy code in pre-exsting Java project.Julien Chastang2009-05-21T03:49:58Z2009-05-21T03:49:58ZThanks 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#864821Comment by Julien Chastang on Resource for learning Java generics?Julien Chastang2009-05-14T19:28:53Z2009-05-14T19:28:53Z+1 Naftalin & 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#848659Comment by Julien Chastang on Javascript graphing library to draw a regionJulien Chastang2009-05-11T16:40:34Z2009-05-11T16:40:34ZYou 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#831817Comment by Julien Chastang on Is there a definitive solution to javascript floating-point errors?Julien Chastang2009-05-06T23:02:25Z2009-05-06T23:02:25ZConvert 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#803133Comment by Julien Chastang on Java multi-threading & Safe PublicationJulien Chastang2009-05-05T20:08:10Z2009-05-05T20:08:10ZI believe that is incorrect. See Chapter 3.4 from JCiP. Properly constructed "Immutable object are always thread-safe."http://stackoverflow.com/questions/817856/when-and-how-should-i-use-a-threadlocal-variable/817926#817926Comment by Julien Chastang on When and how should I use a ThreadLocal variable?Julien Chastang2009-05-04T03:39:13Z2009-05-04T03:39:13ZAnother 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.