Re: Great SWT Program943 (12/8/2008 11:36:04 PM) comp.lang.java.programmer On Jan 31, 3:45 am, blm...@myrealbox.com wrote: > In article , > wrote: > > On Jan 10, 4:31 am, blm...@myrealbox.com wrote: > > > Even I notice that emacs starts up faster these days than it > > > used to .... Twisted
C++, macros, and job security346 (12/31/2006 9:23:40 PM) comp.lang.c++ Macros sure can be fun -- and profitable. This actually worked -- it might work for any of you guys too. The trick is to make your code look sensible, but be actually very hard to modify without introducing un... Floobar
Bogus behavior of window listeners1038 (11/20/2006 4:08:06 AM) comp.lang.java.programmer I may have discovered another bug in the 1.6.0 release candidate library implementation. I mentioned earlier that my app's "are you sure?" on-exit dialog was suddenly popping up twice. I've since found it popp... Twisted
Giving an application a window icon in a sensible way295174 (11/20/2006 1:24:57 AM) comp.lang.java.programmer Hrm. How to go about doing this? I want to give a Java application a window icon in a manner that is independent of how it is installed, etc. The trick is obtaining an Image object for myJFrame.setIconImage()... Twisted
Couple java.net questions336 (11/16/2006 11:32:22 PM) comp.lang.java.programmer I'm encountering a couple of bogosities here, both of which probably stem from not handling some corner case involving HTTP and URLs. The first of those is that some browsing has turned up URLs in links that l... Twisted
NPE in PriorityQueue.poll()3045 (11/16/2006 4:41:09 PM) comp.lang.java.programmer This is a strange one. App just recovered gracefully from: java.lang.NullPointerException at java.util.PriorityQueue.siftDownComparable(PriorityQueue.java:627) at java.util.PriorityQueue.siftDown(PriorityQue... Twisted
Bogus NullPointerExceptions7737 (11/15/2006 4:29:33 PM) comp.lang.java.programmer while (!dir.equals(baseDir) && dir.list() != null && dir.list().length == 0) { File parent = dir.getParentFile(); dir.delete(); dir = parent; } is being used to nuke some empty directories in an app of mine... Twisted
Alternative to System.runFinalizersOnExit()?2040 (11/14/2006 12:27:49 PM) comp.lang.java.programmer As I'm sure you're all aware, System.runFinalizersOnExit() is deprecated as it can cause erratic behavior or deadlocks. This trick might have an equivalent effect without the danger: * When your application i... Twisted
Bogus NullPointerExceptions7737 (11/15/2006 4:29:33 PM) comp.lang.java.programmer while (!dir.equals(baseDir) && dir.list() != null && dir.list().length == 0) { File parent = dir.getParentFile(); dir.delete(); dir = parent; } is being used to nuke some empty directories in an app of mine... twisted0n3(707)
NPE in PriorityQueue.poll()3045 (11/16/2006 4:41:09 PM) comp.lang.java.programmer This is a strange one. App just recovered gracefully from: java.lang.NullPointerException at java.util.PriorityQueue.siftDownComparable(PriorityQueue.java:627) at java.util.PriorityQueue.siftDown(PriorityQue... twisted0n3(707)
Couple java.net questions336 (11/16/2006 11:32:22 PM) comp.lang.java.programmer I'm encountering a couple of bogosities here, both of which probably stem from not handling some corner case involving HTTP and URLs. The first of those is that some browsing has turned up URLs in links that l... twisted0n3(707)
Bogus behavior of window listeners1038 (11/20/2006 4:08:06 AM) comp.lang.java.programmer I may have discovered another bug in the 1.6.0 release candidate library implementation. I mentioned earlier that my app's "are you sure?" on-exit dialog was suddenly popping up twice. I've since found it popp... twisted0n3(707)
Merging Linked Lists3336 (12/19/2006 7:38:42 PM) comp.lang.java.programmer Hi, I (will) have anythng up to 6 Linked Lists of strings. I want to merge them and remove duplicate entries at the same time. So that I end up with one Linked List with every node containing a distinct string... cormacdebarra(60)
Java and avoiding software piracy?195869 (7/11/2007 12:27:30 AM) comp.lang.java.programmer Hi,Im *hoping* to release an application that I developed in Java, and Iwant to release a free version as well as a pay version.Clearly I want to be able to avoid people cracking it, or creating keygenerators..... adamorn