User kenj0418 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T01:22:35Zhttp://stackoverflow.com/feeds/user/47181http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/926266/performance-optimization-strategies-of-last-resort/928357#92835714Answer by kenj0418 for Performance optimization strategies of last resort?kenj04182009-05-29T22:01:10Z2009-09-13T15:37:49Z<p>When you can't improve the performance any more - see if you can improve the <strong>perceived</strong> performance instead.</p>
<p>You may not be able to make your fooCalc algorithm faster, but often there are ways to make your application seem more responsive to the user. </p>
<p>A few examples:</p>
<ul>
<li>anticipating what the user is going
to request and start working on that
before then</li>
<li>displaying results as
they come in, instead of all at once
at the end</li>
<li><em>Accurate</em> progress meter</li>
</ul>
<p>These won't make your program faster, but it might make your users happier with the speed you have.</p>
http://stackoverflow.com/questions/953153/is-it-possible-to-put-java-1-4-on-64-bit-ubuntu/953217#9532170Answer by kenj0418 for Is it possible to put java 1.4 on 64 bit Ubuntu?kenj04182009-06-04T21:29:14Z2009-06-04T21:29:14Z<p>SAP is paying extra to get just such a setup <a href="http://www.theregister.co.uk/2009/01/16/sap%5Fsun%5Fjava%5Fnetweaver%5Fsupport/" rel="nofollow">supported</a>, so I assume that there is no technical limitation preventing it. However, there may be licensing restrictions preventing it.</p>
<p>However, I'd recommend running it on a later JDK if possible. Just because the code was compiled for an earlier version doesn't mean it won't run on the more recent JRE.</p>
http://stackoverflow.com/questions/817232/what-do-you-wish-was-automatic-in-your-favorite-programming-language/905557#9055570Answer by kenj0418 for What do you wish was automatic in your favorite programming language?kenj04182009-05-25T06:18:24Z2009-05-25T06:18:24Z<p>Coffee. I mean the language is call Java - so it should be able to make my coffee! I hate getting up from programming, going to the coffee pot, and finding out someone from marketing has taken the last cup and not made another pot.</p>
http://stackoverflow.com/questions/905500/fastest-way-to-delete-a-tree-of-empty-directories-in-batch-file/905511#9055114Answer by kenj0418 for Fastest way to delete a tree of empty directories in batch filekenj04182009-05-25T06:00:32Z2009-05-25T06:00:32Z<pre><code>rd yourdirname /s/q
</code></pre>
<p>Will do the job regardless of whether they are empty or not.</p>
http://stackoverflow.com/questions/886509/array-list-questions/890299#8902990Answer by kenj0418 for Array/list questionskenj04182009-05-20T21:17:00Z2009-05-20T21:17:00Z<p>Instead of using arrays, I would use ArrayList (or more generally Collection) and then filter based on a predicate. see <a href="http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection">Java: What is the best way to filter a Collection</a></p>
http://stackoverflow.com/questions/875867/how-can-i-use-credit-card-numbers-containing-spaces/875896#87589611Answer by kenj0418 for How can I use credit card numbers containing spaces?kenj04182009-05-18T01:08:50Z2009-05-18T01:08:50Z<p>Websites that force you to enter credit card numbers (and similar things) in a specific format - seriously annoy me.</p>
<p>Those people are inconveniencing their customers simply because they (the developers) are lazy. There is no reason not to except things like credit card numbers, phone numbers, etc in whatever format they are provided. The only limitation is what is REQUIRED to understand how to interpret the value.</p>
<p>You shouldn't care whether I enter 5555-4444-3333-2222 or 5555444433332222, just strip the dashes out if you don't like them - same with spaces. And with phone numbers, unless you are going to be auto-dialing the number, you probably don't even care what format its in so don't annoy your users unless you have to.</p>
http://stackoverflow.com/questions/864316/how-to-pipe-list-of-files-returned-by-find-command-to-cat-to-view-all-the-files/864386#8643863Answer by kenj0418 for How to pipe list of files returned by find command to cat to view all the fileskenj04182009-05-14T16:30:15Z2009-05-14T16:30:15Z<p>1) Piping to another process (Although this WON'T accomplish what you said you are trying to do):</p>
<pre><code>command1 | command2
</code></pre>
<p>This will send the output of command1 as the input of command2</p>
<p>2) Exec on a find (This will do what you are wanting to do -- but is specific to find)</p>
<pre><code>find -name '*.foo' -exec cat {} \;
</code></pre>
<p>(everything between find and -exec are the find predicates you were already using. {} will substitute the particular file you found into the command (cat {} in this case) the \; is to end the exec command</p>
<p>3) send output of one process as command line arguments to another process</p>
<pre><code>command2 `command1`
</code></pre>
<p>for example:</p>
<pre><code>cat `find -name '*.foo' -print`
</code></pre>
<p>(Note these are BACK-QUOTES not regular quotes (under the tilde ~ on my keyboard))
this will send the output of command1 into command2 as command line arguments.</p>
http://stackoverflow.com/questions/820030/how-do-i-test-the-quality-of-an-encryption-algorithm/820076#8200766Answer by kenj0418 for How do I test the quality of an encryption algorithm?kenj04182009-05-04T13:24:05Z2009-05-04T13:24:05Z<p>If you have to ask - that's a pretty good indication that you shouldn't write your own.</p>
<p>If you are just wanting to write one as a learning exercise, then the Encryption Torture Test that Kirtan suggested is probably good. However, if you are planning to really use this encryption for some purpose where security is truly needed, that tool is not going to be any substitute for the years of expert analysis published algorithms have gone through.</p>
<p>Even if your algorithm generates output that looks random, that does NOT mean that it is necessarily secure.</p>
http://stackoverflow.com/questions/816379/do-containsall-and-retainall-in-the-collection-interface-address-cardinality/816500#8165001Answer by kenj0418 for Do containsAll() and retainAll() in the Collection interface address cardinality?kenj04182009-05-03T07:06:45Z2009-05-03T07:06:45Z<p>The javadocs for containsAll (in Collection) say:</p>
<blockquote>
<p>Returns: true if this collection
contains all of the elements in the
specified collection</p>
</blockquote>
<p>and for retainAll (in Collection):</p>
<blockquote>
<p>Retains only the elements in this
collection that are contained in the
specified collection (optional
operation). In other words, removes
from this collection all of its
elements that are not contained in the
specified collection.</p>
</blockquote>
<p>I read containsAll's contract to mean that calling a.containsAll(b) will return true, if and only if, calling a.contains(bElem) for each element bElem in b would return true. I would also take it to imply that a.containsAll(someEmptyCollection) would also return true. As you state the javadocs for AbstractCollection more explicitly state this:</p>
<blockquote>
<p>This implementation iterates over the
specified collection, checking each
element returned by the iterator in
turn to see if it's contained in this
collection. If all elements are so
contained true is returned, otherwise
false.</p>
</blockquote>
<p>I agree that the contact for Collection for containsAll sould be more explicit to avoid any possiblity for confusion. (And that the reading of the javadocs for AbstractCollection should NOT have been necessary to confirm ones understanding of Collection)</p>
<p>I would not have made an assumption with regard to number of duplicate elements after a call to retainAll. The stated contract in Collection (by my reading) doesn't imply either way how duplicates in either collection would be handled. Based on my reading of retainAll in collection multiple possible results of a.retainAll(b) are all reasonable:</p>
<ol>
<li>result contains 1 of each element that has at least one copy in both a and b</li>
<li>result contains each element (including duplicates) that was in a, except those that are not in b</li>
<li>or even, result contains somewhere between 1 and the number of copies found in a of each element in a, except those not in b.
I would have expected either #1 or #2, but would assume any of the the three to be legal based on the contract.</li>
</ol>
<p>The javadocs for AbstractCollection confirm that it uses #2:</p>
<blockquote>
<p>This implementation iterates over this
collection, checking each element
returned by the iterator in turn to
see if it's contained in the specified
collection. If it's not so contained,
it's removed from this collection with
the iterator's remove method</p>
</blockquote>
<p>Although since this isn't in my reading of the original Collection interface's contract, I wouldn't necessarily assume the behavior of Collection to generally be this way.</p>
<p>Perhaps you should consider submitting suggested updates to the JavaDoc once you're done.</p>
<p>As to 'why the Collection interface was left so ambiguous' - I seriously doubt it was intentionally done - probably just something that wasn't given its due priority when that part of the API's were being written.</p>
http://stackoverflow.com/questions/726685/yeah-i-know-im-a-simpleton-so-whats-a-singleton/726847#7268471Answer by kenj0418 for Yeah.. I know.. I'm a simpleton.. So what's a Singleton?kenj04182009-04-07T17:41:43Z2009-04-27T14:52:20Z<p>A singleton is a class, that can only have a single instance created.</p>
<p>This is often implemented by having a private constructor, which is assigned to a static variable, and then accessible through a public method.</p>
<p>There are some problems with using singletons, including:</p>
<ul>
<li>They make testing difficult</li>
<li>They cannot be sub-classed</li>
<li>Once instantiated, the instance will live forever</li>
</ul>
<p>See here for a further description of singleton, and another pattern 'Monostate' that might be useful instead: <a href="http://www.objectmentor.com/resources/articles/SingletonAndMonostate.pdf" rel="nofollow">http://www.objectmentor.com/resources/articles/SingletonAndMonostate.pdf</a></p>
http://stackoverflow.com/questions/763832/programming-riddle-counting-down-without-subtracting/769526#7695269Answer by kenj0418 for Programming Riddle: Counting down without subtracting.kenj04182009-04-20T18:31:17Z2009-04-20T18:31:17Z<p>Here's a method you missed, trial and error:</p>
<pre><code>import java.util.Random;
public class CountDown
{
public static void main(String[] args)
{
Random rand = new Random();
int currentNum = Integer.parseInt(args[0]);
while (currentNum != 0)
{
System.out.print(currentNum + " ");
int nextNum = 0;
while (nextNum + 1 != currentNum) {
nextNum = rand.nextInt(currentNum);
}
currentNum = nextNum;
}
}
}
</code></pre>
http://stackoverflow.com/questions/745857/do-you-find-cyclomatic-complexity-a-useful-measure/745873#7458738Answer by kenj0418 for Do you find cyclomatic complexity a useful measure?kenj04182009-04-14T00:13:56Z2009-04-14T00:13:56Z<p>We refactor mercilessly, and use Cyclomatic complexity as one of the metrics that gets code on our 'hit list'. 1-6 we don't flag for complexity (although it could get questioned for other reasons), 7-9 is questionable, and any method over 10 is assumed to be bad unless proven otherwise.</p>
<p>The worst we've seen was 87 from a monstrous if-else-if chain in some legacy code we had to take over.</p>
http://stackoverflow.com/questions/738298/log-in-vs-sign-on/738303#7383032Answer by kenj0418 for Log In vs. Sign Onkenj04182009-04-10T17:35:20Z2009-04-10T17:35:20Z<p>All of these are commonly used and should be understood by all. I'd look at the other sites your target audience uses -- and use the same conventions the majority of those use.</p>
http://stackoverflow.com/questions/738065/java-annotations/738094#7380943Answer by kenj0418 for Java annotationskenj04182009-04-10T15:58:52Z2009-04-10T15:58:52Z<p>Every object should has toString() defined. (And you can override this for each class to get a more meaningful representation).</p>
<p>So you where your "// here I don't know" comment is, you could have:</p>
<pre><code>Object value = field.get(table);
// gets the value of this field for the instance 'table'
log += "value: " + value + "\n";
// implicitly uses toString for you
// or will put 'null' if the object is null
</code></pre>
http://stackoverflow.com/questions/736370/what-is-programming/736721#7367216Answer by kenj0418 for What is programming?kenj04182009-04-10T04:41:52Z2009-04-10T04:41:52Z<p>Proving yourself worthy to be kept alive when the machine overlords eventually take over.</p>
http://stackoverflow.com/questions/736579/does-the-super-class-not-call-the-overridden-method/736658#7366580Answer by kenj0418 for Does the super class not call the overridden method?kenj04182009-04-10T03:53:31Z2009-04-10T03:53:31Z<p>You may be confused if you are coming from C# or some other language where you have to explicitly declare virtual functions and/or overriding functions.</p>
<p>In Java, all instance functions are virtual, and can be overridden -- unless they are declared as private and/or final.</p>
<p>It is not necessary to specify the new @Override annotation to do so, adding the annotation just specifies that your intent is to override, and will cause a either a warning or error if it isn't an override. (If you accidentally misspelled the method name for example).</p>
<p>Andrew's example shows how this should work.</p>
http://stackoverflow.com/questions/735230/java-reflection/735311#7353114Answer by kenj0418 for Java reflectionkenj04182009-04-09T18:08:19Z2009-04-09T18:22:06Z<p>Two issues you may be having issues with - the field might not be accessible normally (private), and its not in the class you are looking at, but somewhere up the hierarchy.</p>
<p>Something like this would work even with those issues:</p>
<pre><code>public class SomeExample {
public static void main(String[] args) throws Exception{
Object myObj = new SomeDerivedClass(1234);
Class myClass = myObj.getClass();
Field myField = getField(myClass, "value");
myField.setAccessible(true); // required if field is not normally accessible
System.out.println("value: " + myField.get(myObj));
}
private static Field getField(Class clazz, String fieldName) throws NoSuchFieldException {
try {
return clazz.getDeclaredField(fieldName);
} catch (NoSuchFieldException e) {
Class superClass = clazz.getSuperclass();
if (superClass == null) {
throw e;
} else {
return getField(superClass, fieldName);
}
}
}
}
class SomeBaseClass {
private Integer value;
SomeBaseClass(Integer value) {
this.value = value;
}
}
class SomeDerivedClass extends SomeBaseClass {
SomeDerivedClass(Integer value) {
super(value);
}
}
</code></pre>
http://stackoverflow.com/questions/733979/selecting-all-rows-untill-first-occurence-of-given-value/734027#7340277Answer by kenj0418 for Selecting all rows untill first occurence of given valuekenj04182009-04-09T12:36:43Z2009-04-09T12:36:43Z<pre><code>SELECT * FROM mytable where date > (
SELECT max(date) FROM mytable where check = 0
)
</code></pre>
http://stackoverflow.com/questions/137340/could-a-truly-random-number-be-generated-using-pings-to-psuedo-randomly-selected/727830#7278300Answer by kenj0418 for Could a truly random number be generated using pings to psuedo-randomly selected IP addresses?kenj04182009-04-07T22:21:57Z2009-04-07T22:21:57Z<p>You can use the XKCD method:</p>
<p><img src="http://imgs.xkcd.com/comics/random%5Fnumber.png" alt="Random Number Generator" /></p>
http://stackoverflow.com/questions/700344/would-you-put-an-adult-site-on-your-resume/727753#7277530Answer by kenj0418 for Would you put an adult site on your resumé?kenj04182009-04-07T21:54:50Z2009-04-07T21:54:50Z<p>Reasons to put it on the resume:</p>
<ul>
<li>It is the best example you can provide for your experience and skill set - the rest of your resume doesn't do this</li>
<li>You don't want to work for someone who's so uptight they'd reject you for having worked on this site</li>
<li>Might make your resume stand out</li>
</ul>
<p>Reasons not to put it on the resume:</p>
<ul>
<li>You are embarrassed at having worked on the site</li>
<li>You are applying to places that would likely take offense</li>
<li>You have enough other work to fill out your resume</li>
</ul>
<p>You can see which apply to you and decide. Personally I would (largely from Yes Reason #2).</p>
<p>Regardless of what you decide, you should definitely be completely honest. Be vague if you want - but don't lie.</p>
http://stackoverflow.com/questions/727196/boolean-true-positive-1-or-negative-1/727251#7272511Answer by kenj0418 for boolean true -- positive 1 or negative 1?kenj04182009-04-07T19:27:23Z2009-04-07T19:27:23Z<p>I think the C method is the way to go. 0 means false, anything else means true. If you go with another mapping for true, then you are left with the problem of having indeterminate values - that are neither true nor false.</p>
<p>If this is language that you'll be compiling for a specific instruction set that has special support for a particular representation, then I'd let that guide you. But absent any additional information, for an 'standard' internal representation, I'd go with -1 (all 1's in binary). This value extends well to whatever size boolean you want (single bit, 8-bit, 16, etc), and if you break up a "TRUE" or a "FALSE" into a smaller "TRUE" or "FALSE", its still the same. (where if you broke a 16 bit TRUE=0x0001 you'd get a FALSE=0x00 and a TRUE=0x01).</p>
http://stackoverflow.com/questions/726856/find-if-an-sqlexception-was-thrown-because-of-a-duplicate/727178#7271782Answer by kenj0418 for Find if an SQLException was thrown because of a duplicatekenj04182009-04-07T19:07:45Z2009-04-07T19:07:45Z<p>With basic JDBC, there really isn't a way to do what you are saying in a cross-database manner. As you mentioned <em>getErrorCode</em> could be used, but required vendor-specific error codes.</p>
<p>The only three ways I see to get around this is:</p>
<ol>
<li>Use some sort of framework that does all of the translating from error code to meaningful exceptions (Hibernate would probably do this, someone else mentioned that Spring does)</li>
<li>Check for the duplicate manually (with a select) prior to doing your insert. (This wouldn't be 100%, as its technically possible that someone could have done an insert after your query).</li>
<li>After you get any sql exception on the insert, try to query for that id. If you can actually find the match - you can be fairly sure that the error you received was due to a duplicate primary key. (Although its possible that there was multiple problems, and that wasn't actually the one that was thrown).</li>
</ol>
<p>My recommendation would be to write your code to avoid the problem as much as possible, and then (if absolutely necessary), use #3.</p>
http://stackoverflow.com/questions/479565/how-do-you-define-a-class-of-constants-in-java/726720#7267200Answer by kenj0418 for How do you define a class of constants in Java?kenj04182009-04-07T17:14:49Z2009-04-07T17:14:49Z<p>My suggestions (in decreasing order of preference):</p>
<p>1) <strong>Don't do it</strong>. Create the constants in the actual class where they are most relevant. Having a 'bag of constants' class/interface isn't really following OO best practices.</p>
<p>I, and everyone else, ignore #1 from time to time. If you're going to do that then:</p>
<p>2) <strong>final class with private constructor</strong> This will at least prevent anyone from abusing your 'bag of constants' by extending/implementing it to get easy access to the constants. (I know you said you wouldn't do this -- but that doesn't mean someone coming along after you won't)</p>
<p>3) <strong>interface</strong> This will work, but not my preference giving the possible abuse mention in #2.</p>
<p>In general, just because these are constants doesn't mean you should apply normal oo principles to them. If no one but on class cares about a constant - it should be private and in that class. If only tests care about a constant - it should be in a test class, not production code. If a constant is defined in multiple places (not just accidently the same) - refactor to eliminate duplication. And so on - treat them like you would a method.</p>
http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/1111858#1111858Comment by kenj0418 on How can you tell if a person is a programmer?kenj04182009-11-10T05:37:21Z2009-11-10T05:37:21ZThe cashiers get confused enough when I give them $1.07 for my $0.82 item. I think their head would exploded if I started handing over anti-pennies. (Not to mention what would happen if the anti-penny came into contact with a regular penny)http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/901453#901453Comment by kenj0418 on How can you tell if a person is a programmer?kenj04182009-11-10T05:27:48Z2009-11-10T05:27:48ZFor a single search, the optimal solution would have been to split the stack in two and have you each do a linear search. Parallelization ftw. Now if you were doing multiple searches...http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/932710#932710Comment by kenj0418 on How can you tell if a person is a programmer?kenj04182009-11-10T05:24:36Z2009-11-10T05:24:36ZI also try to use CTRL-SPACE (Code completion in my IDE) in emails and documents.http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/992632#992632Comment by kenj0418 on How can you tell if a person is a programmer?kenj04182009-11-10T05:22:53Z2009-11-10T05:22:53Z@Zarkonnen - Now if you can do it up to 2^131072, then we'd be <i>REALLY</i> impressed.http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/900532#900532Comment by kenj0418 on How can you tell if a person is a programmer?kenj04182009-11-10T05:21:06Z2009-11-10T05:21:06ZExactly Pulsehead - If the quote is a sentence I put the puctuation inside. If it isn't then I don't. And this <i>IS</i> the correct usage, regardless of how many liberal arts majors you get to tell me otherwise. :-)http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/919063#919063Comment by kenj0418 on How can you tell if a person is a programmer?kenj04182009-11-10T05:15:48Z2009-11-10T05:15:48ZOr they solve it about 5% of the way and say "There, I've reduced it to a known, solvable problem." And stop.http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/1033847#1033847Comment by kenj0418 on How can you tell if a person is a programmer?kenj04182009-11-10T05:08:12Z2009-11-10T05:08:12ZWhat, do you think I had three extra fingers surgically added to each hand for no good reason?http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/1116956#1116956Comment by kenj0418 on How can you tell if a person is a programmer?kenj04182009-11-10T05:05:06Z2009-11-10T05:05:06ZKind of like a ST:TNG episode where Data determined someone was an android because he detected the mathematical pattern to their blinking.http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895322#895322Comment by kenj0418 on How can you tell if a person is a programmer?kenj04182009-11-10T04:59:44Z2009-11-10T04:59:44Z@Brian - I think he means when he entered the corporate world and saw that it was true.http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/895398#895398Comment by kenj0418 on How can you tell if a person is a programmer?kenj04182009-11-10T04:32:52Z2009-11-10T04:32:52ZThe third one has gotten me in trouble more than once. Her:"Do you want to mow the lawn?" Me: "No." (sees angry look) "uhh, but of course, I Will"http://stackoverflow.com/questions/1044018/would-programming-an-xor-cursor-make-me-a-criminalComment by kenj0418 on Would programming an "XOR Cursor" make me a criminal?kenj04182009-07-24T04:51:54Z2009-07-24T04:51:54ZActually you can go to jail for even asking this question about it. I recommend changing your name and moving to Canada. (Or if you are already in Canada, then New Jersey)http://stackoverflow.com/questions/1040338/what-are-the-worst-software-project-failures-ever/1040646#1040646Comment by kenj0418 on What are the Worst Software Project Failures Ever?kenj04182009-07-24T04:47:29Z2009-07-24T04:47:29ZThat's no moon! -- Oh wait, nevermind, it is.http://stackoverflow.com/questions/1111296/when-s-is-false-but-equals-s-is-trueComment by kenj0418 on When "" == s is false but "".equals( s ) is truekenj04182009-07-10T20:47:53Z2009-07-10T20:47:53ZThere's also Apache Commons Lang's StringUtils, which has isBlank, isEmpty, etc. that handles the null check also.http://stackoverflow.com/questions/235848/most-astonishing-violation-of-the-principle-of-least-astonishmentComment by kenj0418 on Most Astonishing Violation of the Principle of Least Astonishmentkenj04182009-06-29T19:42:24Z2009-06-29T19:42:24ZLook like most of the answers have degenerated from 'astonishing' to 'things that annoy me'http://stackoverflow.com/questions/16935/ants-javac-tasks-throws-stackoverflowexceptionComment by kenj0418 on Ant's <javac> tasks throws StackOverflowExceptionkenj04182009-06-25T05:10:55Z2009-06-25T05:10:55ZIt throws a StackOverflowException - so you come to blame us? :-)