User grayger - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T09:26:04Z http://stackoverflow.com/feeds/user/60039 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/837351/how-do-i-save-the-heap-dump-to-a-file-in-eclipse/838207#838207 0 Answer by grayger for How do I Save the Heap (Dump to a File) in Eclipse? grayger 2009-05-08T04:15:19Z 2009-05-08T04:15:19Z <p>You can monitor memory usages with JConsole. </p> <p>The <a href="http://java.sun.com/j2se/1.5.0/docs/tooldocs/share/jstat.html" rel="nofollow">jstat</a> also will help.</p> http://stackoverflow.com/questions/829953/how-can-i-get-around-this-classloader-hierarchy-problem/830015#830015 2 Answer by grayger for How can I get around this classloader hierarchy problem? grayger 2009-05-06T14:55:43Z 2009-05-06T14:55:43Z <p>Take a look at <a href="http://www.slf4j.org" rel="nofollow">SLF4J</a>. </p> <p>Additionally, <a href="http://www.qos.ch/logging/classloader.jsp" rel="nofollow">http://www.qos.ch/logging/classloader.jsp </a> will help.</p> http://stackoverflow.com/questions/829615/measuring-javascript-performance-in-ie/829949#829949 1 Answer by grayger for Measuring Javascript performance in IE grayger 2009-05-06T14:42:25Z 2009-05-06T14:42:25Z <p>Take a look at <a href="http://developer.yahoo.com/yui/profiler/" rel="nofollow">YUI Profiler</a>.</p> http://stackoverflow.com/questions/825928/application-area-of-lock-striping 0 Application area of lock-striping grayger 2009-05-05T17:07:29Z 2009-05-05T17:12:35Z <p>The ConcurrentHashMap of JDK uses a lock-striping technique. It is a nice idea to minimize locking overhead. Are there any other libraries or tools that take advantage of it? For example, does database engine use it? </p> <p>If the technique is not so much useful in other areas, what is the limitation of it?</p> http://stackoverflow.com/questions/824754/distribution-of-user-accounts-to-n-tables 0 Distribution of user accounts to N tables grayger 2009-05-05T13:03:39Z 2009-05-05T14:35:24Z <p>There are millions of user accounts, and I want to distribute their data into N tables(user_1, user_2,..., user_N) of a database. User accounts are comprised of 3~8 characters. So, I want a function that returns table suffix like </p> <pre><code> int getTableSuffix(String userAccount); </code></pre> <p>The result is a uniform distribution from 1 to N. </p> <p>Do you know any cheap hash algorithm for this job?</p> http://stackoverflow.com/questions/816931/what-non-free-tools-are-popular-amongst-java-developers/817077#817077 0 Answer by grayger for What non-free tools are popular amongst Java developers grayger 2009-05-03T13:40:41Z 2009-05-03T13:40:41Z <p>JUnit Max for continuous testing in Eclipse.</p> http://stackoverflow.com/questions/803625/oauth-alternative 0 OAuth alternative? grayger 2009-04-29T18:27:03Z 2009-04-30T03:56:40Z <p>Hi, I have been investigating OAuth to share resources in my site to other sites. But, hole of OAuth specification was reported several days ago. <a href="http://oauth.net/advisories/2009-1" rel="nofollow">http://oauth.net/advisories/2009-1</a></p> <p>Many sites decided to stop OAuth until fixed version is released.</p> <p>Currently, can we have any alternative to OAuth? I want an open-standard and secure authorization protocol.</p> http://stackoverflow.com/questions/802455/load-testing-tool-that-can-send-put-delete-methods 0 Load testing tool that can send PUT/DELETE methods grayger 2009-04-29T13:52:00Z 2009-04-29T17:27:05Z <p>Hi, I am finding load testing tool that can send PUT/DELETE requests. Neither ApacheBench nor JMeter supports these methods.</p> <p>After several hours' googling, I found www.soapui.org that looks good. </p> <p>Do you have any other recommendation? Command line tool like ApacheBench will be better for me.</p> <p>Thanks</p> http://stackoverflow.com/questions/653469/enclosing-calls-to-debug-in-if-isdebugenabled-a-good-policy/653500#653500 0 Answer by grayger for Enclosing calls to debug() in if isDebugEnabled(): a good policy? grayger 2009-03-17T09:22:06Z 2009-03-17T09:22:06Z <p>If "model" is already known, just logging it is not so expensive. But, if the "model" should be fetched just for logging as below, simplicity can be compromised. </p> <pre><code>LOGGER.debug("model[" + proxy.getModel() + "]"); </code></pre> http://stackoverflow.com/questions/645464/which-do-you-prefer-java-web-start-or-java-applets/649240#649240 3 Answer by grayger for Which do you prefer: Java Web Start, or Java Applets? grayger 2009-03-16T04:10:58Z 2009-03-16T04:10:58Z <p>From my experience, customers don't want their programs to be running inside a browser. But, from Java6 update 10, applets can be running outside of the browser in a separate process. This appealing feature might fill the gap between the applet and JWS.</p> http://stackoverflow.com/questions/633299/anyone-know-of-a-java-util-map-implementation-optimized-for-low-memory-use/633364#633364 1 Answer by grayger for Anyone know of a java.util.Map implementation optimized for low memory use? grayger 2009-03-11T04:45:30Z 2009-03-11T04:45:30Z <p>Simply, I recommend to use one of HashMap, Hashtable and ConcurrentHashMap of JDK depending on synchronization or concurrency requirements. If you decide to use them, setting initialCapacity and loadFactor appropriately in the constructor may help.</p> <p>Google collections and apache commons collections provide more features: LRUMap, ReferenceMap, MultikeyMap and so on. But I don't think there are not for just small size.</p> http://stackoverflow.com/questions/618844/how-to-properly-handle-error-logs/619023#619023 1 Answer by grayger for How to properly handle error logs? grayger 2009-03-06T14:27:19Z 2009-03-06T14:27:19Z <p>If multiple servers are running and each server leaves log messages on itself, it is really difficult to trace them. So,somebody or a tool should gather and sort them in time order. It is a good way to have a central point where all messages are sent.</p> http://stackoverflow.com/questions/614666/logging-java-web-applications/615491#615491 0 Answer by grayger for Logging Java web applications? grayger 2009-03-05T16:19:09Z 2009-03-06T00:56:04Z <p>I recommend to call log API (log4j) via slf4j. Even if you use log4j, web container or depending modules may use different log API such as Java.util.logging or Jakarta commons logging. Slf4j provides bridge modules that redirect them to slf4j API. As a result, all log messages are written by log4j in that case. </p> http://stackoverflow.com/questions/615614/at-what-point-does-refactoring-become-not-worth-it/615764#615764 -1 Answer by grayger for At what point does refactoring become not worth it? grayger 2009-03-05T17:31:13Z 2009-03-05T17:31:13Z <p>No document, no original writer, no test case, and a bunch of remaining bugs.</p> http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/595376#595376 5 Answer by grayger for Hidden features of Eclipse grayger 2009-02-27T16:07:18Z 2009-02-27T16:07:18Z <p>Absolutely, Ctrl+Q to go to last edit location. It is very useful just after being interrupted by phone, boss or others.</p> http://stackoverflow.com/questions/383833/question-about-the-java-garbage-collector-nulls-and-memory-leaking/594233#594233 3 Answer by grayger for Question about the Java Garbage Collector, nulls and memory leaking. grayger 2009-02-27T10:32:03Z 2009-02-27T10:32:03Z <p>Yes, GC works in that case. But elements between head and tail may survive and then enter old generation space and then they will be collected during full GC. As you know, full GC is expensive. As far as performance is concerned, nulling them is better.</p> <p>You can see how clear() method of java.util.LinkedList is implemented.</p> <pre><code>public void clear() { Entry&lt;E&gt; e = header.next; while (e != header) { Entry&lt;E&gt; next = e.next; e.next = e.previous = null; e.element = null; e = next; } header.next = header.previous = header; size = 0; modCount++; } </code></pre> <p><a href="http://tech.puredanger.com/2009/02/11/linkedblockingqueue-garbagecollection/" rel="nofollow">http://tech.puredanger.com/2009/02/11/linkedblockingqueue-garbagecollection/</a> touches the issue.</p> http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/586641#586641 0 Answer by grayger for What are the things Java got right? grayger 2009-02-25T16:03:54Z 2009-02-25T16:03:54Z <p>Good harmony with IDE tools such as Eclipse, NetBeans, or IntelliJ.</p> http://stackoverflow.com/questions/434989/hashmap-intialization-parameters-load-initialcapacity/584465#584465 0 Answer by grayger for HashMap intialization parameters (load / initialcapacity) grayger 2009-02-25T02:02:08Z 2009-02-25T02:02:08Z <p>Referring to HashMap source code will help.</p> <p>If the number of entries reaches threshold(capacity * load factor), rehashing is done automatically. That means too small load factor can incur frequent rehashing as entries grow.</p> http://stackoverflow.com/questions/529757/are-there-any-famous-one-man-army-programmers/569840#569840 1 Answer by grayger for Are there any famous one-man-army programmers? grayger 2009-02-20T14:58:16Z 2009-02-20T14:58:16Z <p>Rod Johnson, creator of Spring framework</p> http://stackoverflow.com/questions/469445/last-words-of-a-programmer/568961#568961 2 Answer by grayger for Last words of a ??? programmer grayger 2009-02-20T09:56:44Z 2009-02-20T09:56:44Z <p>Eclipse:</p> <blockquote> <pre><code> // TODO Auto-generated catch block </code></pre> </blockquote> http://stackoverflow.com/questions/490420/favorite-clever-defensive-programming-best-practices/568350#568350 0 Answer by grayger for Favorite (Clever) Defensive Programming Best Practices grayger 2009-02-20T05:05:39Z 2009-02-20T05:18:52Z <p>JavaScript:</p> <p>We should use "==" and "===" appropriately.</p> <blockquote> <p>== : type-converting equality comparison</p> <p>=== : strict equality comparison</p> </blockquote> <p>For example, '1'==1 is true, but '1'===1 is false.</p> <p>Many people use "==" instead of "===" unconsciously.</p> http://stackoverflow.com/questions/528664/simple-way-to-do-xml-in-java/528745#528745 10 Answer by grayger for Simple way to do Xml in Java grayger 2009-02-09T16:00:27Z 2009-02-09T16:00:27Z <p>I recommend <a href="http://www.xom.nu/" rel="nofollow">XOM</a>. Its API is clear and intuitive.</p> http://stackoverflow.com/questions/130095/most-useful-free-java-libraries/492690#492690 -2 Answer by grayger for Most useful free Java libraries? grayger 2009-01-29T17:55:12Z 2009-01-29T17:55:12Z <p>Here are my choices.</p> <ol> <li>JUnit </li> <li>Log4J</li> <li>Apache Commons Configuration</li> <li>FindBugs (it is a tool rather than a library)</li> </ol> http://stackoverflow.com/questions/15496/hidden-features-of-java/492663#492663 0 Answer by grayger for Hidden Features of Java grayger 2009-01-29T17:44:43Z 2009-01-29T17:44:43Z <p>I enjoyed</p> <ol> <li><a href="http://java.sun.com/javase/6/docs/technotes/guides/javadoc/" rel="nofollow">javadoc</a>'s taglet and doclet that enable us to customize javadoc output.</li> <li><a href="http://java.sun.com/javase/6/docs/technotes/tools/" rel="nofollow">JDK tools</a>: jstat, jstack etc.</li> </ol> http://stackoverflow.com/questions/461896/what-is-the-most-frequent-concurrency-problem-youve-encountered-in-java/490290#490290 2 Answer by grayger for What is the most frequent concurrency problem you've encountered in Java? grayger 2009-01-29T02:23:48Z 2009-01-29T02:23:48Z <p>Starting a thread within the constructor of a class is problematic. If the class is extended, the thread can be started before subclass' constructor is executed. </p> http://stackoverflow.com/questions/858250/java-memory-explained-sun-jvm/858650#858650 Comment by grayger on Java Memory explained (SUN JVM) grayger 2009-05-13T16:20:48Z 2009-05-13T16:20:48Z +1 for good collections http://stackoverflow.com/questions/824754/distribution-of-user-accounts-to-n-tables Comment by grayger on Distribution of user accounts to N tables grayger 2009-05-05T15:57:46Z 2009-05-05T15:57:46Z @lassevk: I worry that a big table may suffer from table locking under situations when using MyISAM of MySQL. http://stackoverflow.com/questions/803625/oauth-alternative/803631#803631 Comment by grayger on OAuth alternative? grayger 2009-04-29T18:32:31Z 2009-04-29T18:32:31Z OpenId is not for authorization but for authentication. http://stackoverflow.com/questions/617916/are-certifications-useful-for-java-programmers-who-wish-to-advance-their-career/618834#618834 Comment by grayger on Are certifications useful for Java programmers who wish to advance their career? grayger 2009-03-06T13:53:45Z 2009-03-06T13:53:45Z Is (3) really valid? I am surprised! http://stackoverflow.com/questions/448320/how-do-i-append-a-newline-character-for-all-lines-except-the-last-one/448347#448347 Comment by grayger on How do I append a newline character for all lines except the last one? grayger 2009-03-06T03:49:04Z 2009-03-06T03:49:04Z Which operation is cheaper among assignment(Joel's) and condition(Jon's) that are done in every iteration? http://stackoverflow.com/questions/449549/how-to-leverage-clearcases-features/449619#449619 Comment by grayger on How to Leverage Clearcase's features grayger 2009-03-04T14:36:36Z 2009-03-04T14:36:36Z @wcoenen: configspec provides much more than SVN's switch command. It enables to have different versions for each element. http://stackoverflow.com/questions/442564/avoid-synchronizedthis-in-java/442638#442638 Comment by grayger on Avoid synchronized(this) in Java? grayger 2009-03-03T04:53:06Z 2009-03-03T04:53:06Z +1 Your example provides fine grained locks. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/282618#282618 Comment by grayger on What are five things you hate about your favorite language? grayger 2009-02-25T15:40:21Z 2009-02-25T15:40:21Z I agree with #3. http://stackoverflow.com/questions/282329/what-are-five-things-you-hate-about-your-favorite-language/314589#314589 Comment by grayger on What are five things you hate about your favorite language? grayger 2009-02-25T15:36:30Z 2009-02-25T15:36:30Z Do you have any idea to make Java's NPE contain information about what is null? http://stackoverflow.com/questions/377593/javafx-is-now-out-are-applets-and-java-desktop-officially-dead-dying/382072#382072 Comment by grayger on JavaFX is now out: Are Applets and Java Desktop officially dead/dying? grayger 2009-02-23T17:19:04Z 2009-02-23T17:19:04Z You are right. Applet can't die as long as JavaFX is alive. http://stackoverflow.com/questions/529757/are-there-any-famous-one-man-army-programmers/537954#537954 Comment by grayger on Are there any famous one-man-army programmers? grayger 2009-02-20T10:03:34Z 2009-02-20T10:03:34Z +1 I like his works. http://stackoverflow.com/questions/469445/last-words-of-a-programmer/469654#469654 Comment by grayger on Last words of a ??? programmer grayger 2009-02-20T09:45:00Z 2009-02-20T09:45:00Z Hahaha! Tomorrow he will say &quot;80% done&quot;.