User Heath Borders - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:09:05Z http://stackoverflow.com/feeds/user/9636 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1433067/adding-mapkit-annotations-with-a-button-iphone-sdk/1539810#1539810 0 Answer by Heath Borders for Adding Mapkit annotations with a button. [iPhone SDK] Heath Borders 2009-10-08T19:03:07Z 2009-10-08T19:03:07Z <p>That guy is using a custom image to imitate the detail disclosure. You can actually get the standard detail disclosure quite easily:</p> <pre><code>[UIButton buttonWithType:UIButtonTypeDetailDisclosure]; </code></pre> http://stackoverflow.com/questions/1427731/objcstartcollectorthread-implicit-declaration-warning 3 objc_startCollectorThread() implicit declaration warning Heath Borders 2009-09-15T15:01:34Z 2009-09-15T15:56:18Z <p>I'm trying to work through Apple's <a href="http://developer.apple.com/iphone/library/documentation/Cocoa/Conceptual/CoreDataUtilityTutorial/Articles/00%5Fintroduction.html#//apple%5Fref/doc/uid/TP40001800-CH202-TP1" rel="nofollow">CoreData Utility Tutorial</a>. It asks me to create a 'Foundation Tool' project in the 'Command Line Utility' section. In XCode 3.2, I only found a 'Command Line Tool' section with a 'Foundation' type in the 'New Project' wizard.</p> <p>So I created the 'Command Line Tool' 'Foundation' type project, and added the following line to enable garbage collection:</p> <pre><code>objc_startCollectorThread(); </code></pre> <p>I also changed the 'Objective-C Garbage Collection' setting in my 'Target Info' 'Build' tab to 'Required [-fobjc-gc-only]'. When I run my build, I get the following error:</p> <blockquote> <p>warning: implicit declaration of function 'objc_startCollectorThread'</p> </blockquote> <p>The target runs fine so far. All it does is print 'Hello World' to the console. I'm just concerned about this warning. I must be doing something wrong if I'm getting warnings for something as basic as garbage collection on a command line tool.</p> http://stackoverflow.com/questions/561550/when-is-the-javascript-prefix-valid-syntax 6 When is the 'javascript:' prefix valid syntax? Heath Borders 2009-02-18T15:35:44Z 2009-08-19T22:06:14Z <p>I know that you can use a javascript: pseudo protocol for URLs in an <code>&lt;a&gt;</code> tag. However, I've noticed that Firefox and IE will both allow '<code>javascript:</code>' to precede javascript code within a <code>&lt;script&gt;</code> tag. Is this valid syntax? Does it change the scoping rules?</p> <p>Examples: I've seen this many times:</p> <pre><code>&lt;a onclick="javascript:alert('hello world!');"&gt;Hello World!&lt;/a&gt; </code></pre> <p>But is this legal/valid syntax and does it do anything special:</p> <pre><code>&lt;script type="text/javascript"&gt; javascript:alert('hello world!'); &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/827283/assign-file-names-to-eval-code-in-microsoft-script-editor-or-microsoft-script-deb 0 Assign file names to eval code in Microsoft Script Editor or Microsoft Script Debugger Heath Borders 2009-05-05T22:51:46Z 2009-05-05T22:51:46Z <p>I'm debugging dojo-based javascript running in IE6 with Microsoft Script Editor. Everything works fine, but in order to find the dojo files I need, I have to open sometime 100+ 'eval code' files in Microsoft Script Editor/Debugger and manually inspect them for their 'dojo.provide' clause. Is there a way to get Microsoft Script Editor to give the eval code a name that reflects its contents? For example, I'd like the dijit._Widget.js file to appear as dijit._Widget.js in the 'Running Documents' tree rather than 'eval code'.</p> http://stackoverflow.com/questions/380846/how-do-i-disable-hotkeys-in-dojo-stackcontainer/561439#561439 0 Answer by Heath Borders for How do I disable hotkeys in Dojo StackContainer Heath Borders 2009-02-18T15:11:40Z 2009-02-18T15:11:40Z <p>I'm just coding off the cuff here, and I didn't test it out at all. I'm making this wikified, so post the correct source if there are any problems please.</p> <p>Use the following javascript within a file called com/stackoverflow/KeyPresslessTabContainer.js:</p> <p>dojo.provide("com.stackoverflow. KeyPresslessTabContainer");</p> <p>dojo.require("dijit.layout. TabContainer");</p> <p>dojo.declare("com.stackoverflow.KeyPresslessTabContainer", dijit.layout. TabContainer, { _controllerWidget: "com.stackoverflow.KeyPresslessTabController" });</p> <p>dojo.declare("com.stackoverflow.KeyPresslessTabController", dijit.layout.TabController, { /* * this is the important part. The original code was: * templateString: "" * In the template below, we remove the onkeypress listener, * and thus key presses should be ignored. */ templateString: "" });</p> http://stackoverflow.com/questions/164378/best-library-for-programatically-inspecting-java-class-files/165580#165580 0 Answer by Heath Borders for Best Library for programatically inspecting Java class files Heath Borders 2008-10-03T03:26:58Z 2008-10-03T03:26:58Z <p><a href="http://www.kpdus.com/jad.html" rel="nofollow">JAD</a></p> http://stackoverflow.com/questions/157491/is-there-a-way-to-establish-a-https-connection-with-java-1-3/160653#160653 1 Answer by Heath Borders for Is there a way to establish a HTTPS Connection with Java 1.3? Heath Borders 2008-10-02T02:39:13Z 2008-10-02T02:39:13Z <p>Check out the <a href="http://www.bouncycastle.org/java.html" rel="nofollow">BouncyCastle</a> implementation. It works all the way down to Java 1.1 and J2ME.</p> http://stackoverflow.com/questions/158121/why-do-socketchannel-writes-always-complete-for-the-full-amount-even-on-non-block/160643#160643 0 Answer by Heath Borders for Why do SocketChannel writes always complete for the full amount even on non-blocking sockets? Heath Borders 2008-10-02T02:36:16Z 2008-10-02T02:36:16Z <p>You really should look at an NIO framework like <a href="http://mina.apache.org" rel="nofollow">MINA</a> or <a href="https://grizzly.dev.java.net/" rel="nofollow">Grizzly</a>. I've used MINA with great success in an enterprise chat server. It is also used in the <a href="http://www.igniterealtime.org/projects/openfire/index.jsp" rel="nofollow">Openfire</a> chat server. Grizzly is used in Sun's JavaEE implementation.</p> http://stackoverflow.com/questions/132263/when-exactly-plugin-xml-files-from-dependencies-of-my-plugin-are-loaded/133267#133267 1 Answer by Heath Borders for When exactly plugin.xml files from dependencies of my plugin are loaded ? Heath Borders 2008-09-25T13:19:38Z 2008-09-25T13:19:38Z <p>Eclipse makes no guarantees about the order that extensions are seen. Further, there is no guaranteed lifecycle for when specific plugins are loaded. If you want a guarantee, you need to implement it manually, and that will probably require a change of plugin B.</p> http://stackoverflow.com/questions/127120/spring-vs-jsf/129237#129237 0 Answer by Heath Borders for Spring vs. JSF Heath Borders 2008-09-24T19:14:33Z 2008-09-24T19:14:33Z <p>Usually, Spring is integrated into JSF only as a bean and variable resolver.</p> <p><a href="http://jsf-spring.sourceforge.net/" rel="nofollow">http://jsf-spring.sourceforge.net/</a></p> http://stackoverflow.com/questions/127753/java-idiom-for-piping/129216#129216 1 Answer by Heath Borders for Java idiom for "piping" Heath Borders 2008-09-24T19:11:17Z 2008-09-24T19:11:17Z <p>The only optimization available is through FileChannels in the NIO API: <a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html#transferFrom(java.nio.channels.ReadableByteChannel,%20long,%20long)" rel="nofollow">Reads</a>, <a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html#transferTo(long,%20long,%20java.nio.channels.WritableByteChannel)" rel="nofollow">Writes</a>. The JVM can optimize this call to move the data from a file to a destination Channel without first having to move the data to kernel space. See <a href="http://www.ibm.com/developerworks/library/j-zerocopy/index.html" rel="nofollow">this article</a> for details.</p> http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122139#122139 5 Answer by Heath Borders for Java: What is the best way to filter a Collection? Heath Borders 2008-09-23T16:29:49Z 2008-09-23T18:21:18Z <p>Consider <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections</a> for an updated Collections framework that supports generics.</p> http://stackoverflow.com/questions/122593/throw-exception-from-a-jsp/122631#122631 4 Answer by Heath Borders for throw exception from a JSP Heath Borders 2008-09-23T17:59:23Z 2008-09-23T17:59:23Z <p>You really shouldn't be doing anything at the JSP layer that explicitly throws exceptions. The reason you don't want to use scriptlets in JSPs is because that puts application logic in your view. Throwing an exception is inherently application logic, so it doesn't belong in your JSP, scriptlet or not.</p> http://stackoverflow.com/questions/112046/how-to-deal-with-pair-programming-issues/122074#122074 1 Answer by Heath Borders for How to deal with pair programming issues? Heath Borders 2008-09-23T16:20:42Z 2008-09-23T16:20:42Z <p>Talk about pairing troubles as a group, and make sure the group is aware of different pairings that aren't working. That way, the group can help ensure that your pairs aren't avoiding each other. If you keep a disfunctional pair separate, they will always be disfunctional.</p> <p>Get the pair to open lines of communication; try to get both sides to do new things. Assuming both people are genuinely good developers, they both have much to learn from one another. Try to alter their attitude from teacher to student.</p> http://stackoverflow.com/questions/121605/how-to-reduce-javax-faces-viewstate-in-jsf/122051#122051 0 Answer by Heath Borders for How to reduce javax.faces.ViewState in JSF Heath Borders 2008-09-23T16:14:54Z 2008-09-23T16:14:54Z <p><a href="https://facelets.dev.java.net/" rel="nofollow">Facelets</a> saves less state per component than the JSF default JSP presentation.</p> http://stackoverflow.com/questions/116650/curl-equivalent-in-java/116725#116725 6 Answer by Heath Borders for cURL equivalent in JAVA Heath Borders 2008-09-22T18:48:05Z 2008-09-22T18:48:05Z <p>Exception handling omitted:</p> <pre><code>HttpURLConnection con = (HttpURLConnection) new URL("https://www.example.com").openConnection(); con.setRequestMethod("POST"); con.getOutputStream().write("LOGIN".getBytes("UTF-8")); con.getInputStream(); </code></pre> http://stackoverflow.com/questions/115766/a-more-advanced-table-spreadsheet-swt-implementation/116477#116477 1 Answer by Heath Borders for A more advanced table/spreadsheet SWT implementation Heath Borders 2008-09-22T18:08:48Z 2008-09-22T18:08:48Z <p><a href="http://sourceforge.net/projects/ktable" rel="nofollow">KTable</a> is mature and very customizable. I used it to provide a very excel-like experience for my SWT app.</p> http://stackoverflow.com/questions/112102/secure-gmail-login-on-web-browser-from-external-java-program/115112#115112 0 Answer by Heath Borders for Secure Gmail login on web browser from external Java program Heath Borders 2008-09-22T14:23:32Z 2008-09-22T14:23:32Z <p>I used google's IMAP access with the JavaMail API, and it was very simple.</p> http://stackoverflow.com/questions/112140/what-is-the-best-java-conference-to-visit/115102#115102 2 Answer by Heath Borders for What is the best java conference to visit Heath Borders 2008-09-22T14:21:30Z 2008-09-22T14:21:30Z <p>I've attended two conferences: No Fluff Just Stuff and JavaOne. NFJS was almost exclusively beginner sessions. JavaOne had lots more sessions with deep dives into technology and was a better run conference in general.</p> http://stackoverflow.com/questions/114457/consequences-of-running-a-java-class-file-on-different-jres/114557#114557 1 Answer by Heath Borders for Consequences of running a Java Class file on different JREs? Heath Borders 2008-09-22T12:30:38Z 2008-09-22T12:30:38Z <p>Java compilers specify source and target compliance levels. This way, you can compile for any JRE from any other higher-versioned JRE. You need to make sure to use these compliance levels because there are API differences between JREs. For example, JRE 1.5 introduced StringBuilder at the compiler level. This means any time you do:</p> <pre><code>String s = "string1" + "string2"; </code></pre> <p>The compiler changes it to:</p> <pre><code>String s = new StringBuilder("string1").append("string2").toString(); </code></pre> <p>Obviously, this will break with a NoClassDefFoundError when you attempt to construct the StringBuilder.</p> http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/112335#112335 0 Answer by Heath Borders for Did you ever switch from one programming language to another? Heath Borders 2008-09-21T22:18:08Z 2008-09-21T22:18:08Z <p>My progression: *BASIC *LOGO *TI-BASIC *Javascript *Java *C *Java</p> <p>My parents bought me my first machine when I was 6, and I keyed programs in from ATARI Computer Monthly. I did some more BASIC in elementary and junior high on Apple II's. Then I did math programming in LOGO at a summer camp. Next, I got a TI-83 for high school chemistry and ended up building a math suite that lasted over 7 years in my high school, just getting passed around by different students. I started actually studying programming with Javascript tutorials online, and then I bought myself a Java book because I wanted to do graphics programming with Applets. In college, we were required to study C, and then later I took optional Java courses. My first employer gave me the option to implement his system in any language I wanted, and I chose Java. Since then, all my professional development has been in Java, but its ranged all over: *high-performance HTTP client *data-input web clients *data-input wizard rich clients *high-performance messaging servers</p> http://stackoverflow.com/questions/106336/how-do-i-find-out-what-type-each-object-is-in-a-arraylistobject/109840#109840 4 Answer by Heath Borders for How do I find out what type each object is in a ArrayList<Object>? Heath Borders 2008-09-21T00:04:18Z 2008-09-21T00:04:18Z <p>You almost never want you use something like:</p> <pre><code>Object o = ... if (o.getClass().equals(Foo.class)) { ... } </code></pre> <p>because you aren't accounting for possible subclasses. You really want to use Class#isAssignableFrom:</p> <pre><code>Object o = ... if (Foo.class.isAssignableFrom(o)) { ... } </code></pre> http://stackoverflow.com/questions/106941/should-i-use-internal-or-public-visibility-by-default/106955#106955 1 Answer by Heath Borders for Should I use internal or public visibility by default? Heath Borders 2008-09-20T03:26:40Z 2008-09-20T03:26:40Z <p>It depends on how much control you have over code that consumes it. In my Java development, I make all my stuff public final by default because getters are annoying. However, I also have the luxury of being able to change anything in my codebase whenever I want. In the past, when I've had to release code to consumers, I've always used private variables and getters.</p> http://stackoverflow.com/questions/104184/is-it-safe-to-get-values-from-a-java-util-hashmap-from-multiple-threads-no-modif/104636#104636 8 Answer by Heath Borders for Is it safe to get values from a java.util.HashMap from multiple threads (no modification)? Heath Borders 2008-09-19T19:10:10Z 2008-09-19T19:10:10Z <p>The reads are safe from a synchronization standpoint but not a memory standpoint. This is something that is widely misunderstood among Java developers including here on Stackoverflow. (Observe the rating of <a href="http://stackoverflow.com/questions/84285/calling-threadstart-within-its-own-constructor#84937">this answer</a> for proof.)</p> <p>If you have other threads running, they may not see an updated copy of the HashMap if there is no memory write out of the current thread. Memory writes occur through the use of the synchronized or volatile keywords, or through uses of some java concurrency constructs.</p> <p>See <a href="http://www.ibm.com/developerworks/java/library/j-jtp03304/" rel="nofollow">Brian Goetz's article on the new Java Memory Model</a> for details. </p> http://stackoverflow.com/questions/104439/how-do-i-download-the-source-for-birt/104461#104461 1 Answer by Heath Borders for How Do I Download the Source for BIRT? Heath Borders 2008-09-19T18:47:49Z 2008-09-19T18:47:49Z <p>Go to the BIRT website and follow their <a href="http://www.eclipse.org/birt/phoenix/build/buildInstructions.php#checkout" rel="nofollow">Directions</a>.</p> http://stackoverflow.com/questions/104254/java-io-console-support-in-eclipse-ide/104412#104412 1 Answer by Heath Borders for java.io.Console support in Eclipse IDE Heath Borders 2008-09-19T18:40:06Z 2008-09-19T18:40:06Z <p>The reason this occurs is because eclipse runs your app as a background process and not as a top-level process with a system console. </p> http://stackoverflow.com/questions/102072/adversarial-naive-pairing-with-tdd-how-effective-is-it/102236#102236 1 Answer by Heath Borders for Adversarial/Naive Pairing with TDD: How effective is it? Heath Borders 2008-09-19T14:25:05Z 2008-09-19T14:25:05Z <p>I've used this approach. It doesn't work with all pairs; some people are just naturally resistant and won't give it an honest chance. However, it helps you do TDD and XP properly. You want to try and add features to your codebase slowly. You don't want to write a huge monolithic test that will take lots of code to satisfy. You want a bunch of simple tests. You also want to make sure you're passing the keyboard back and forth between your pairs regularly so that both pairs are engaged. With adversarial pairing, you're doing both. Simple tests lead to simple implementations, the code is built slowly, and both people are involved throughout the whole process.</p> http://stackoverflow.com/questions/97586/has-anyone-got-an-example-of-aerith-style-swing-mixed-with-gui-maintainability-of/102166#102166 0 Answer by Heath Borders for Has anyone got an example of aerith style swing mixed with GUI maintainability of SWT editing? Heath Borders 2008-09-19T14:16:44Z 2008-09-19T14:16:44Z <p>SWT doesn't support look &amp; feels. You can get different L&amp;F's by altering your OS native L&amp;F. The only exception is to using the eclipse forms toolkit. It still has the OS native feel, but strives for a web-browser-like look. It does this mostly by setting everything to SWT.FLAT, and using white backgrounds on everything. Occassionally, they have to manually draw outlines around controls that don't natively support it. If you're looking for custom L&amp;F's that will appear across platforms, you really want Swing.</p> http://stackoverflow.com/questions/101981/single-most-important-thing-to-impart-when-teaching-tdd/102106#102106 0 Answer by Heath Borders for Single most important thing to impart when teaching TDD Heath Borders 2008-09-19T14:09:52Z 2008-09-19T14:09:52Z <p>Emphasize different kinds of tests. Both black-box testing and white-box testing are important and have different purposes. White-box testing is not there to verify correctness because it can't test the overall system. It is there to make code smells even stinkier and therefore provide a better refactoring direction. Black-box testing is there to test correctness. Every feature should be black-box tested.</p> <p>Also, emphasize differences in test coverage. Due to combinatorial and repeatability problems, it is impossible to black-box test every code path in your application. My rule is that a feature isn't complete until it is black-box tested. You should help the students figure out their own rules. However, white-box tests should not have external class dependencies; therefore every line of every class should be white-box tested.</p> http://stackoverflow.com/questions/92475/elapsed-time-without-considering-weekends-and-bank-holidays-in-java/92757#92757 0 Answer by Heath Borders for Elapsed time without considering weekends and bank holidays in Java Heath Borders 2008-09-18T13:57:29Z 2008-09-18T13:57:29Z <p>You should take a look at <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda Time</a>. It is a much better date/time API than the one included with Java</p> http://stackoverflow.com/questions/528634/how-to-access-sql-server-from-cocoa-mac-os-x/528893#528893 Comment by Heath Borders on How to access SQL Server from Cocoa (Mac OS X)? Heath Borders 2009-09-28T14:36:14Z 2009-09-28T14:36:14Z What google search terms lead you to this? I was unsuccessful after 3 attempts. http://stackoverflow.com/questions/1427731/objcstartcollectorthread-implicit-declaration-warning Comment by Heath Borders on objc_startCollectorThread() implicit declaration warning Heath Borders 2009-09-16T02:25:05Z 2009-09-16T02:25:05Z What are good resources besides stackoverflow for objc questions? I googled for 10 minutes about this, and I would think that something this simple would be easily found on google. http://stackoverflow.com/questions/1427731/objcstartcollectorthread-implicit-declaration-warning Comment by Heath Borders on objc_startCollectorThread() implicit declaration warning Heath Borders 2009-09-16T02:21:58Z 2009-09-16T02:21:58Z I thought community wiki meant others could edit the question. http://stackoverflow.com/questions/222841/most-efficient-way-to-convert-an-htmlcollection-to-an-array/222847#222847 Comment by Heath Borders on Most efficient way to convert an HTMLCollection to an Array Heath Borders 2009-02-26T19:47:08Z 2009-02-26T19:47:08Z This fails in IE6. http://stackoverflow.com/questions/561550/when-is-the-javascript-prefix-valid-syntax/561665#561665 Comment by Heath Borders on When is the 'javascript:' prefix valid syntax? Heath Borders 2009-02-18T16:49:59Z 2009-02-18T16:49:59Z This is good information, but not an answer to my question. http://stackoverflow.com/questions/561550/when-is-the-javascript-prefix-valid-syntax/561689#561689 Comment by Heath Borders on When is the 'javascript:' prefix valid syntax? Heath Borders 2009-02-18T16:49:20Z 2009-02-18T16:49:20Z ::Whacks self on head:: Thanks! http://stackoverflow.com/questions/180646/can-anyone-recommend-an-efficient-udp-messaging-framework-for-java/180683#180683 Comment by Heath Borders on Can anyone recommend an efficient UDP messaging framework for Java? Heath Borders 2008-10-08T01:07:32Z 2008-10-08T01:07:32Z I'm using it on a chat server for high-latency, low bandwidth, jittery frameworks. http://stackoverflow.com/questions/145110/c-performance-vs-java-c/145122#145122 Comment by Heath Borders on C++ performance vs. Java/C# Heath Borders 2008-09-29T14:35:33Z 2008-09-29T14:35:33Z @Brian Actually the HotSpot JVM has optimizations to use the stack and registers for some allocations. http://stackoverflow.com/questions/146989/style-question-writing-this-before-instance-variable-and-methods-good-or-bad/147009#147009 Comment by Heath Borders on Style question: Writing "this." before instance variable and methods: good or bad idea? Heath Borders 2008-09-29T14:06:32Z 2008-09-29T14:06:32Z I try to make this the only time I use the 'this' prefix. http://stackoverflow.com/questions/148530/noclassdeffounderror-with-a-long-classname-on-tomcat-with-java-1-4-207-b05/148606#148606 Comment by Heath Borders on NoClassDefFoundError with a long classname on Tomcat with java 1.4.2_07-b05 Heath Borders 2008-09-29T14:03:29Z 2008-09-29T14:03:29Z This exact situation happened to me. http://stackoverflow.com/questions/93839/bit-manipulation-and-output-in-java/93889#93889 Comment by Heath Borders on Bit manipulation and output in Java Heath Borders 2008-09-26T18:02:18Z 2008-09-26T18:02:18Z They can be if the leading byte is a UTF8 prefix character. http://stackoverflow.com/questions/93839/bit-manipulation-and-output-in-java/93925#93925 Comment by Heath Borders on Bit manipulation and output in Java Heath Borders 2008-09-26T18:00:55Z 2008-09-26T18:00:55Z BigInteger would be better. If he's storing the bits in a file, it might be greater than 32. http://stackoverflow.com/questions/15496/hidden-features-of-java/137600#137600 Comment by Heath Borders on Hidden Features of Java Heath Borders 2008-09-26T14:40:12Z 2008-09-26T14:40:12Z It is well defined, but not generally well understood. This will technically work, but is clearly confusing. http://stackoverflow.com/questions/135892/is-there-a-library-for-linear-algebra-matrix-handling-in-java/135898#135898 Comment by Heath Borders on Is there a library for Linear algebra matrix handling in Java? Heath Borders 2008-09-26T13:43:48Z 2008-09-26T13:43:48Z I used Jama with great success in large project. http://stackoverflow.com/questions/132263/when-exactly-plugin-xml-files-from-dependencies-of-my-plugin-are-loaded Comment by Heath Borders on When exactly plugin.xml files from dependencies of my plugin are loaded ? Heath Borders 2008-09-25T13:21:13Z 2008-09-25T13:21:13Z Post another question about specific plugins, and you might get better answers