User shemnon - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T16:44:22Z http://stackoverflow.com/feeds/user/8020 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1220557/how-do-i-prepend-history-to-a-git-repo 3 How do I prepend history to a git repo? shemnon 2009-08-03T03:23:28Z 2009-10-10T15:50:32Z <p>I have a project that has existed in two SVN repositories. The second SVN repo was created simply by adding the repos from a checkout of the old SVN repository without SCM info stripped. The content of the files are byte identical, but there is no associated SCM meta-data.</p> <p>I have taken the new SVN repo and ported it into a Git repo via git-svn. Now I would like to import the old repo and somehow get it to link the new repo so I can see the history across both. Is there a simple way to do this without hand stitching the two repos together?</p> http://stackoverflow.com/questions/1119795/solved-gridbaglayout-manager-and-resizing-controls/1462560#1462560 0 Answer by shemnon for (SOLVED) GridBagLayout manager and resizing controls shemnon 2009-09-22T20:56:36Z 2009-09-22T20:56:36Z <p>For <code>JTextField</code> (as mentioned in the contents) call <code>setColumns(int)</code> to set a preferred size on the text.</p> <p>For <code>JComboBox</code>, call <code>setPrototypeDisplayValue(Object)</code> which will cause that value to be rendered and the preferred size of the <code>JComboBox</code> will be set based on that value.</p> <p>In general, you can call <code>setPreferredSize(Dimension)</code> on any component directly to get the same behavior. General if not set the value is calculated based on some defaults on the component. What is happening with <code>JTextField</code>, <code>JComboBox</code>, and most <code>JTextComponent</code> derivatives. is that the preferred size on those components is driven by values the user is capable of changing (the text values, the combobox selection). Whereas with most other component (<code>JButton</code>, <code>JCheckBox</code>, etc) the content size doesn't really change when the user acts on it. Setting the columns and rows and the prototype display value fixes the value used to calculate the preferred size.</p> http://stackoverflow.com/questions/906605/favourite-ide-for-griffon-development/907140#907140 0 Answer by shemnon for favourite IDE for griffon development shemnon 2009-05-25T15:23:39Z 2009-05-25T15:23:39Z <p>Griffon apps have some rudimentry hooks already for IDE integration. </p> <p>First, a <code>.classpath</code> and <code>.project</code> file are generated that mark the expected source and test directories for Eclipse. Both IntelliJ and NetBeans have importers for these eclipse files (and they work, I use them regularly).</p> <p>Second, Griffon 0.1.1 adds more targets to the parallel <code>build.xml</code> so that more of the common scripts can be used as though they were ant tasks (<code>run-app</code>, <code>compile</code>, <code>debug-app</code>, etc.)</p> <p>Third, there is some better IDE support in the works form some of the IDE vendors. As mentioned in the article you linked because Griffon is grails derived it is fairly easy to re-purpose existing Grails support. <a href="http://www.jetbrains.net/jira/browse/GRVY-2118" rel="nofollow">IntelliJ</a> has the only specific tracked feature request I am aware of.</p> http://stackoverflow.com/questions/744977/how-to-show-a-second-mvc-group-as-a-dialog-box-in-griffon/752143#752143 0 Answer by shemnon for How to show a second MVC group as a dialog box in griffon shemnon 2009-04-15T15:08:20Z 2009-04-15T15:08:20Z <p>The easiest way would be to use the view panel as the root of a dialog in the parent MVC group. In the view for the group that yor code snippet is the controller of you could do something like this...</p> <pre><code>application(title:'your app', ....) { // your existing code... loginDialog = dialog(title:'Login Panel', visible:false) { panel(loginPanel) } } </code></pre> <p>And then when you need to show the dialog (in the same controller)</p> <pre><code>view.loginDialog.visible = true </code></pre> <p>Nesting a dialog inside of another window has the side effect of setting the dialog's owner to the frame or dialog of the parent. Having a dialog owned by another dialog/window is what causes the dialog to be linked with the parent and always float on top of that parent. It will also raise/lower with the parent as well.</p> http://stackoverflow.com/questions/588627/how-can-i-determine-which-menu-item-called-an-actionlistener/588947#588947 1 Answer by shemnon for How can I determine which menu item called an ActionListener? shemnon 2009-02-26T03:11:52Z 2009-02-26T03:11:52Z <p>While event.getSource() will definitely let you know which particular button the event came from it has the side effect of needing to track the generated buttons or snooping into the button. Also you may want to present a different name of the library to the user (possibly including the version information) than is used to identify the library. Using the "ActionCommand" property of the button may provide a way to separate those issues. So you will need to alter code in the generation of the checkbox menu items and in the listener.</p> <pre><code>ActionListener actionListener = ... // whatever object holds the method, possibly this String[] libraries = ... // however you get your library names JMenu parentMenu = ... // the menu you are adding them to for (String s : libraries) { // prettyName is a method to make a pretty name, perhaps trimming off // the leading path JCheckBoxMenuItem child = new JCheckBoxMenuItem(prettyName(s), true); child.setActionCommand(s); parentMenu.acc(child); } </code></pre> <p>The action handler code would be...</p> <pre><code>public void actionPerformed(ActionEvent evt) { // the 'current' selection state, i.e. what it is going to be after the event boolean selected = ((JCheckBoxMenuItem)evt.getSource()).isSelected(); String library = evt.getActionCommand(); ... process based on library and state here... } </code></pre> http://stackoverflow.com/questions/566004/java-swing-table-size-problem/587042#587042 1 Answer by shemnon for Java Swing Table size problem shemnon 2009-02-25T17:40:18Z 2009-02-25T17:40:18Z <p>@jfpoilpret is correct in that the preferredScrollableViewpoet size needs to be managed. The groovy way would be to bind it to the preferred size of the table. So if this was added inside of the outer scrollPane element it would automatically track the size:</p> <pre><code>[serviceTable, groupsTable].each { table -&gt; bind(source:table, sourceProperty:'preferredSize', target:table, targetProperty:'preferredScrollableViewportSize', converter: { ps -&gt; [ps.width + 100, (table.rowCount &gt; 20 ? 20: table.rowCount) * table.rowHeight] }) } </code></pre> <p>We can also do neat things with the binding like adding a converter that will limit the height to 20 rows (or whatever you want it to be limited to) so we still get scrollbars when the table gets too long.</p> http://stackoverflow.com/questions/59129/what-platforms-javafx-is-will-be-supported-on/75506#75506 3 Answer by shemnon for What platforms JavaFX is/will be supported on? shemnon 2008-09-16T18:34:02Z 2008-12-03T19:43:41Z <p>JavaFX has three planned distributions.</p> <ul> <li>JavaFX Desktop will run on Windows, Mac, <s>Linux, and Solaris</s> at FCS and will require Java SE. Support for Linux and Solaris will be forthcoming.</li> <li>JavaFX TV and JavaFX Mobile have no announce target platforms. Also unannounced is whether they will run on ME or SE, and if ME which profiles.</li> </ul> <p>One important platform distinction is that JavaFX Desktop will support Swing components while JavaFX Mobile will not (only scene graph for graphics). JavaFX TV the least publicly concrete of the three at this time.</p> http://stackoverflow.com/questions/295073/where-is-groovy-swing-factory-bindproxyfactory/331478#331478 1 Answer by shemnon for Where is groovy.swing.factory.BindProxyFactory? shemnon 2008-12-01T17:05:53Z 2008-12-01T17:05:53Z <p>It's in the Groovy 1.6 builds, not the 1.5.7 builds. Apparently GfxBuilder 6.1 was built against the Groovy 1.6 codebase.</p> http://stackoverflow.com/questions/271190/what-is-the-best-type-of-java-awt-image-bufferedimage 0 What is the 'best' type of java.awt.image.BufferedImage? shemnon 2008-11-07T03:49:58Z 2008-11-20T16:59:52Z <p>I am creating a buffered image that is going to be a snapshot of a JComponent (via paint()) and rendered inside an <a href="http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/ImageIcon.html" rel="nofollow">ImageIcon</a>. There are a large amount of types in the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/awt/image/BufferedImage.html#BufferedImage(int,%20int,%20int)" rel="nofollow"><code>BufferedImage(int width, int height, int imageType)</code></a> constructor, but which one should I use? </p> <p>I am sure that any of them would work, but which ones are better than the others? And Why?</p> http://stackoverflow.com/questions/75218/how-can-i-detect-when-an-exceptions-been-thrown-globally-in-java/75439#75439 12 Answer by shemnon for How can I detect when an Exception's been thrown globally in Java? shemnon 2008-09-16T18:26:45Z 2008-11-18T20:48:23Z <p>You probobly don't want to mail on any exception. There are lots of code in the JDK that actaully depend on exceptions to work normally. What I presume you are more inerested in are uncaught exceptions. If you are catching the exceptions you should handle notifications there.</p> <p>In a dektop app there are two places to worry about this, in the Event Dispatch Thread (EDT) and outside of the EDT. Globaly you can register a class implementing java.util.Thread.UncaughtExceptionHandler and register it via java.util.Thread.setDefaultUncaughtExceptionHandler. This will get called if an exception winds down to the bottom of the stack and the thread hasn't had a handler set on the current thread instance on the thread or the ThreadGroup.</p> <p>The EDT has a different hook for handling exceptions. A system property 'sun.awt.exception.handler' needs to be registerd with the Fully Qualified Class Name of a class with a zero argument constructor. This class needs an instance method handle(Throwable) that does your work. The return type doesn't matter, and since a new instance is created every time, don't count on keeping state.</p> <p>So if you don't care what thread the exception occured in a sample may look like this:</p> <pre><code>class ExceptionHandler implements Thread.UncaughtExceptionHandler { public void uncaughtException(Thread t, Throwable e) { handle(e); } public void handle(Throwable throwable) { try { // insert your e-mail code here } catch (Throwable t) { // don't let the exception get thrown out, will cause infinite looping! } } public static void registerExceptionHandler() { Thread.setDefaultUncaughtExceptionHandler(new ExceptionHandler()); System.setProperty("sun.awt.exception.handler", ExceptionHandler.class.getName()); } } </code></pre> <p>Add this class into some random package, and then call the registerExceptionHandler method and you should be ready to go.</p> http://stackoverflow.com/questions/230218/why-do-people-have-trouble-learning-recursion/285772#285772 0 Answer by shemnon for Why do people have trouble learning recursion? shemnon 2008-11-12T23:17:54Z 2008-11-12T23:17:54Z <p>People have trouble learning recursion because they don't understand recursion.</p> <p>To understand recursion you must first learn it.</p> <p>The difficult lies in finding the base case, where despite having trouble learning it you learn it anyway. You just need to go with smaller and simpler examples.</p> http://stackoverflow.com/questions/212009/do-i-have-to-explicitly-call-system-exit-in-a-webstart-application/213575#213575 4 Answer by shemnon for Do I have to explicitly call System.exit() in a Webstart application? shemnon 2008-10-17T19:36:16Z 2008-10-17T19:36:16Z <p>Because of bugs in WebStart, yes. WebStart starts up a "secure thread" for it's own purposes that interacts with the EDT. This SecureThread prevents the automatic termination of the Java process one would expect when all windows and AWT resources are disposed.</p> <p>For more information see <a href="http://www.pushing-pixels.org/?p=232" rel="nofollow">http://www.pushing-pixels.org/?p=232</a></p> http://stackoverflow.com/questions/205660/best-pattern-for-simulating-continue-in-groovy-closure/205764#205764 7 Answer by shemnon for Best pattern for simulating "continue" in Groovy closure shemnon 2008-10-15T18:00:29Z 2008-10-15T18:00:29Z <p>You can only support continue cleanly, not break. Especially with stuff like eachLine and each. The inability to support break has to do with how those methods are evaluated, there is no consideration taken for not finishing the loop that can be communicated to the method. Here's how to support continue --</p> <p>Best approach (assuming you don't need the resulting value).</p> <pre><code>revs.eachLine { line -&gt; if (line ==~ /-{28}/) { return // returns from the closure } } </code></pre> <p>If your sample really is that simple, this is good for readability.</p> <pre><code>revs.eachLine { line -&gt; if (!(line ==~ /-{28}/)) { // do what you would normally do } } </code></pre> <p>another option, simulates what a continue would normally do at a bytecode level.</p> <pre><code>revs.eachLine { line -&gt; while (true) { if (line ==~ /-{28}/) { break } // rest of normal code break } } </code></pre> <p>One possible way to support break is via exceptions:</p> <pre><code>try { revs.eachLine { line -&gt; if (line ==~ /-{28}/) { throw new Exception("Break") } } } catch (Exception e) { } // just drop the exception </code></pre> <p>You may want to use a custom exception type to avoid masking other real exceptions, especially if you have other processing going on in that class that could throw real exceptions, like NumberFormatExceptions or IOExceptions.</p> http://stackoverflow.com/questions/192432/getting-groovys-grape-going/194403#194403 2 Answer by shemnon for Getting Groovy's Grape Going!!! shemnon 2008-10-11T18:24:28Z 2008-10-11T18:24:28Z <p>There is still some kinks in working out the startup/kill switch routine. For Beta-2 do this in it's own script first:</p> <pre><code>groovy.grape.Grape.initGrape() </code></pre> <p>Another issue you will run into deals with the joys of using an unbounded upper range. Jide-oss from 2.3.0 onward has been compiling their code to Java 6 bytecodes, so you will need to either run the console in Java 6 (which is what you would want to do for Swing anyway) or set an upper limit on the ranges, like so</p> <pre><code>import com.jidesoft.swing.JideSplitButton @Grab(group='com.jidesoft', module='jide-oss', version='[2.2.1,2.3.0)') public class TestClassAnnotation { public static String testMethod () { return JideSplitButton.class.name } } new TestClassAnnotation().testMethod() </code></pre> http://stackoverflow.com/questions/128016/java-swing-how-do-i-set-the-maximum-width-of-a-jtextfield/129516#129516 0 Answer by shemnon for Java, Swing: how do I set the maximum width of a JTextField ? shemnon 2008-09-24T20:01:20Z 2008-09-24T20:01:20Z <p>Don't set any of the sizes on the text field. Instead set the column size to a non-zero value via setColumns or using the constructor with the column argument.</p> <p>What is happening is that the preferred size reported by the JTextComponent when columns is zero is the entire amount of space needed to render the text. When columns is set to a non-zero value the preferred size is the needed size to show that many standard column widths. (for a variable pitch font it is usually close to the size of the lower case 'm'). With columns set to zero the text field is requesting as much space as it can get and stretching out the whole container.</p> <p>Since you already have it in a GridBagLayout with a fill, you could probably just set the columns to 1 and let the fill stretch it out based on the other components, or some other suitably low number.</p> http://stackoverflow.com/questions/123691/use-continue-or-checked-exceptions-when-checking-and-processing-objects/123756#123756 1 Answer by shemnon for Use continue or Checked Exceptions when checking and processing objects shemnon 2008-09-23T20:47:04Z 2008-09-23T20:47:04Z <p>Use continue, especially in loops. Most Exceptions create a stack trace that can be a major performance hit in a tight loop. You need to override fillInStackTrace to avoid the hit.</p> <p>Stylistcally though, the general rule is that exception should be thrown in exceptional situations. If you are looking to see if a document exists and has certain data you should use continue unless you have a very high expectation that they all will have that data. But if the file not existing or not matching the formatting is anything but an unexpected occurrence, don't use exceptions.</p> http://stackoverflow.com/questions/123657/how-can-i-share-a-variable-or-object-between-two-or-more-servlets/123702#123702 4 Answer by shemnon for How can I share a variable or object between two or more Servlets? shemnon 2008-09-23T20:39:11Z 2008-09-23T20:39:11Z <p>Depends on the scope of the intended use of the data.</p> <p>If the data is only used on a per-user basis, like user login info, page hit count, etc. use the session object (httpServletRequest.getSession().get/setAttribute(String [,Object]))</p> <p>If it is the same data across multiple users (total web page hits, worker threads, etc) use the ServletContext attributes. servlet.getServletCongfig().getServletContext().get/setAttribute(String [,Object])). This will only work within the same war file/web applicaiton. Note that this data is not persisted across restarts either.</p> http://stackoverflow.com/questions/96922/why-use-jython-when-you-could-just-use-java/99157#99157 0 Answer by shemnon for Why use Jython when you could just use Java? shemnon 2008-09-19T03:04:43Z 2008-09-19T03:04:43Z <p>Porting existing code to a new environment may be one reason. Some of your business logic and domain functionality may exist in Python, and the group that writes that code insists on using Python. But the group that deploys and maintains it may want the managability of a J2EE cluster for the scale. You can wrap the logic in Jython in a EAR/WAR and then the deployment group is just seeing another J2EE bundle to be managed like all the other J2EE bundles.</p> <p>i.e. it is a means to deal with an impedance mismatch.</p> http://stackoverflow.com/questions/95767/how-can-i-catch-awt-thread-exceptions-in-java/97176#97176 1 Answer by shemnon for How can I catch AWT thread exceptions in Java? shemnon 2008-09-18T21:27:40Z 2008-09-18T21:27:40Z <p>There is a distinction between uncaught exceptions in the EDT and outside the EDT.</p> <p><a href="http://stackoverflow.com/questions/75218/how-can-i-detect-when-an-exceptions-been-thrown-globally-in-java#75439">Another question has a solution for both</a> but if you want just the EDT portion chewed up...</p> <pre><code>classs AWTExceptionHandler { public void handle(Throwable t) { try { // insert your exception handling code here // or do nothing to make it go away } catch (Throwable t) { // don't let the exception get thrown out, will cause infinite looping! } } public static void registerExceptionHandler() { System.setProperty('sun.awt.exception.handler', AWTExceptionHandler.class.getName()) } } </code></pre> http://stackoverflow.com/questions/73000/modal-dialogs-in-ie-gets-hidden-behind-ie-if-user-clicks-on-ie-pane/93914#93914 1 Answer by shemnon for Modal dialogs in IE gets hidden behind IE if user clicks on IE pane shemnon 2008-09-18T16:01:56Z 2008-09-18T16:01:56Z <p>What argument are you using for the parent?</p> <p>You may have better luck if you use the parent of the Applet.</p> <pre><code>javax.swing.SwingUtilities.getWindowAncestor(theApplet) </code></pre> <p>Using the getWindowAncestor will skip the applet parents (getRoot(component) will return applets). In at least some versions of Java there was a Frame that was equivalent to the IE window. YMMV.</p> http://stackoverflow.com/questions/79002/what-java-versions-does-griffon-support 2 What Java versions does Griffon support? shemnon 2008-09-17T01:39:30Z 2008-09-17T01:43:45Z <p>I want to write a Swing application in Griffon but I am not sure what versions of Java I can support.</p> http://stackoverflow.com/questions/66455/is-there-an-easy-way-to-change-the-behavior-of-a-java-swing-control-when-it-gets/75244#75244 1 Answer by shemnon for Is there an easy way to change the behavior of a Java/Swing control when it gets focus? shemnon 2008-09-16T18:09:17Z 2008-09-16T21:40:08Z <p>A separate class that attaches a FocusListener to the desired text field can be written. All the focus listener would do is call selectAll() on the text widget when it gains the focus.</p> <pre><code>public class SelectAllListener implements FocusListener { private static INSTANCE = new SelectAllListener(); public void focusLost(FocusEvent e) { } public void focusGained(FocusEvent e) { if (e.getSource() instanceof JTextComponent) { ((JTextComponent)e.getSource()).selectAll(); } }; public static void addSelectAllListener(JTextComponent tc) { tc.addFocusListener(INSTANCE); } public static void removeSelectAllListener(JTextComponent tc) { tc.removeFocusListener(INSTANCE); } } </code></pre> <p>By accepting a JTextComponent as an argument this behavior can be added to JTextArea, JPasswordField, and all of the other text editing components directly. This also allows the class to add select all to editable combo boxes and JSpinners, where your control over the text editor component may be more limited. Convenience methods can be added:</p> <pre><code>public static void addSelectAllListener(JSpinner spin) { if (spin.getEditor() instanceof JTextComponent) { addSelectAllListener((JTextComponent)spin.getEditor()); } } public static void addSelectAllListener(JComboBox combo) { JComponent editor = combo.getEditor().getEditorComponent(); if (editor instanceof JTextComponent) { addSelectAllListener((JTextComponent)editor); } } </code></pre> <p>Also, the remove listener methods are likely unneeded, since the listener contains no exterior references to any other instances, but they can be added to make code reviews go smoother.</p> http://stackoverflow.com/questions/51927/how-to-check-if-element-in-groovy-array-hash-collection-list/66753#66753 2 Answer by shemnon for How to check if element in groovy array/hash/collection/list? shemnon 2008-09-15T20:44:19Z 2008-09-15T20:44:19Z <p>.contains() is the best method for lists, but for maps you will need to use .containsKey() or .containsValue()</p> <pre><code>[a:1,b:2,c:3].containsValue(3) [a:1,b:2,c:3].containsKey('a') </code></pre> http://stackoverflow.com/questions/54567/how-do-i-get-inputverifier-to-work-with-an-editable-jcombobox/64137#64137 1 Answer by shemnon for How do I get InputVerifier to work with an editable JComboBox shemnon 2008-09-15T15:50:35Z 2008-09-15T15:50:35Z <p>I wouldn't use the term workaround. </p> <p>Based on all the swing code I've seen from a bunch of different sources that looks to be the canonical solution.</p> http://stackoverflow.com/questions/45582/how-can-i-convince-groovyshell-to-maintain-state-over-eval-calls/64063#64063 1 Answer by shemnon for How can I convince GroovyShell to maintain state over eval() calls? shemnon 2008-09-15T15:42:13Z 2008-09-15T15:42:13Z <p>I am not sure about what you mean about declared classes not existing between evals, the following two scripts work as expected when evaled one after another:</p> <pre><code>class C {{println 'hi'}} new C() </code></pre> <p>... </p> <pre><code>new C() </code></pre> <p>However methods become bound to the class that declared them, and GroovyShell creates a new class for each instance. If you do not need the return value of any of the scripts and they are truly scripts (not classes with main methods) you can attach the following to the end of every evaluated scrips.</p> <pre><code>Class klass = this.getClass() this.getMetaClass().getMethods().each { if (it.declaringClass.cachedClass == klass) { binding[it.name] = this.&amp;"$it.name" } } </code></pre> <p>If you depend on the return value you can hand-manage the evaluation and run the script as part of your parsing (warning, untested code follows, for illustrative uses only)...</p> <pre><code>String scriptText = ... Script script = shell.parse(scriptText) def returnValue = script.run() Class klass = script.getClass() script.getMetaClass().getMethods().each { if (it.declaringClass.cachedClass == klass) { shell.context[it.name] = this.&amp;"$it.name" } } // do whatever with returnValue... </code></pre> <p>There is one last caveat I am sure you are aware of. Statically typed variables are not kept between evals as they are not stored in the binding. So in the previous script the variable 'klass' will not be kept between script invocations and will disappear. To rectify that simply remove the type declarations on the first use of all variables, that means they will be read and written to the binding.</p> http://stackoverflow.com/questions/727812/storing-username-password-on-mac-using-java/727843#727843 Comment by shemnon on Storing username/password on Mac using Java shemnon 2009-10-24T21:03:13Z 2009-10-24T21:03:13Z I like this better than Kevin's answer because sometimes you won't be writing a twitter client and you want the paranoid apple password warnings. Cancel or Allow. Cancel or Allow. (vista almost had it right) http://stackoverflow.com/questions/1220557/how-do-i-prepend-history-to-a-git-repo/1547490#1547490 Comment by shemnon on How do I prepend history to a git repo? shemnon 2009-10-24T21:01:12Z 2009-10-24T21:01:12Z I gave this one the check because it included code samples. #showMeTehCodez http://stackoverflow.com/questions/1220557/how-do-i-prepend-history-to-a-git-repo/1220575#1220575 Comment by shemnon on How do I prepend history to a git repo? shemnon 2009-08-03T22:15:58Z 2009-08-03T22:15:58Z kan U plz show me the codez? (just trying to make the answers better) http://stackoverflow.com/questions/271190/what-is-the-best-type-of-java-awt-image-bufferedimage/271205#271205 Comment by shemnon on What is the 'best' type of java.awt.image.BufferedImage? shemnon 2008-11-19T23:05:49Z 2008-11-19T23:05:49Z and don't forget to fromat it properly by putting in four spaces in the front. http://stackoverflow.com/questions/271190/what-is-the-best-type-of-java-awt-image-bufferedimage/271205#271205 Comment by shemnon on What is the 'best' type of java.awt.image.BufferedImage? shemnon 2008-11-19T23:04:20Z 2008-11-19T23:04:20Z No, you code snippit is still incomplete. WTF is x? People come here for cut and paste solutions, put one in the answer. http://stackoverflow.com/questions/271190/what-is-the-best-type-of-java-awt-image-bufferedimage/271205#271205 Comment by shemnon on What is the 'best' type of java.awt.image.BufferedImage? shemnon 2008-11-07T16:42:53Z 2008-11-07T16:42:53Z yes, what is X? No check mark with such unsure code snippets. http://stackoverflow.com/questions/271190/what-is-the-best-type-of-java-awt-image-bufferedimage/271205#271205 Comment by shemnon on What is the 'best' type of java.awt.image.BufferedImage? shemnon 2008-11-07T04:01:39Z 2008-11-07T04:01:39Z If you only had a code snippet instead of a javadoc link you would so get the answer. http://stackoverflow.com/questions/205660/best-pattern-for-simulating-continue-in-groovy-closure/205764#205764 Comment by shemnon on Best pattern for simulating "continue" in Groovy closure shemnon 2008-10-17T14:03:35Z 2008-10-17T14:03:35Z Not if you override the method that generates the call stack in the exception you throw to do nothing. That's the advantage of a custom exception. http://stackoverflow.com/questions/196014/which-library-better-for-faster-java-application-swt-or-swing/196074#196074 Comment by shemnon on which library better for faster java application swt or swing? shemnon 2008-10-13T21:02:19Z 2008-10-13T21:02:19Z We'll see how long it lasts :) http://stackoverflow.com/questions/196014/which-library-better-for-faster-java-application-swt-or-swing/196074#196074 Comment by shemnon on which library better for faster java application swt or swing? shemnon 2008-10-13T19:54:13Z 2008-10-13T19:54:13Z Ok, Tom, Wikipedia has been fixed at your behest. <a href="http://en.wikipedia.org/w/index.php?title=Swing_(Java)&amp;oldid=245060801" rel="nofollow">en.wikipedia.org/w/&hellip;</a> ;) http://stackoverflow.com/questions/129695/java-serializing-a-huge-amount-of-data-to-a-single-file/129799#129799 Comment by shemnon on Java: Serializing a huge amount of data to a single file shemnon 2008-09-24T20:48:10Z 2008-09-24T20:48:10Z -1 for font abuse http://stackoverflow.com/questions/123657/how-can-i-share-a-variable-or-object-between-two-or-more-servlets/123702#123702 Comment by shemnon on How can I share a variable or object between two or more Servlets? shemnon 2008-09-24T19:46:05Z 2008-09-24T19:46:05Z Meta critque - the question is asking for functionality a backing data store should be handling via transactions anyway. Complaints about ACID should result in using an ACID data service. ServletContext and Session violate all of ACID in some way. http://stackoverflow.com/questions/95767/how-can-i-catch-awt-thread-exceptions-in-java/95823#95823 Comment by shemnon on How can I catch AWT thread exceptions in Java? shemnon 2008-09-18T21:31:25Z 2008-09-18T21:31:25Z You are also missing details about what is needed in the second option, the MyExceptionHandler class must have a handle(Throwable) instance method accessable and a no-args constructor accessable. http://stackoverflow.com/questions/95767/how-can-i-catch-awt-thread-exceptions-in-java/95823#95823 Comment by shemnon on How can I catch AWT thread exceptions in Java? shemnon 2008-09-18T21:30:11Z 2008-09-18T21:30:11Z Using Thread.UncaufhtExceptionHandler won't catch EDT exceptions. The EDT class catches all throwables and prints them out rather than letting them unwind the whole thread. http://stackoverflow.com/questions/79002/what-java-versions-does-griffon-support Comment by shemnon on What Java versions does Griffon support? shemnon 2008-09-17T02:38:30Z 2008-09-17T02:38:30Z The only reason I asked this question was to create the griffon tag. Is there a better way?