User Brandon DuRette - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T18:58:54Z http://stackoverflow.com/feeds/user/17834 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1443189/how-to-set-up-tomcat-ldap-authentication-without-member-of-check/1610175#1610175 0 Answer by Brandon DuRette for how to set up tomcat ldap authentication without member of check Brandon DuRette 2009-10-22T21:48:09Z 2009-10-22T21:48:09Z <p>Realm subclasses deriving from <code>org.apache.catalina.realm.RealmBase</code> have a configuration parameter, <code>allRolesMode</code> that controls the behavior when a role attribute (<code>userRoleName</code>) or entry (<code>roleSearch</code>, etc.) is not provided. This is left out of their configuration docs, but does appear in the <a href="http://tomcat.apache.org/tomcat-6.0-doc/api/org/apache/catalina/realm/RealmBase.AllRolesMode.html" rel="nofollow">Javadoc</a>. You probably want <code>allRolesMode="strictAuthOnly"</code>.</p> http://stackoverflow.com/questions/379240/is-there-a-windows-command-shell-that-will-display-unicode-characters 9 Is there a Windows command shell that will display Unicode characters? Brandon DuRette 2008-12-18T20:56:46Z 2009-09-19T04:12:59Z <p>Assuming I have fonts installed which have the appropriate glyphs in them, is there a command shell for Windows XP that will display Unicode characters? At a minimum, two things that should display Unicode correctly:</p> <ul> <li>Directory listings. I don't care what I have to type (dir, ls, get-childitem, etc.), so long as files with Unicode characters in their names appear with the right glyphs, not the unprintable character box.</li> <li>Text file content listings. Again, doesn't matter to me if it's 'less', 'more', 'cat', 'dog', etc., so long as the characters are printed. I recognize that this is more complicated because of character encoding of the file, so if I have to specify that on the command line that's fine with me.</li> </ul> <p>Here's what I've tried so far:</p> <ul> <li>cmd.exe</li> <li>Windows PowerShell; including the multilingual version.</li> <li>Cygwin bash</li> </ul> <p>No luck. I even tried installing <a href="http://blogs.msdn.com/powershell/archive/2006/10/16/Windows-PowerShell-Font-Customization.aspx" rel="nofollow">custom fonts for cmd/PowerShell</a>. PowerShell and cmd.exe seem to be Unicode-aware in the sense that I can copy/paste the non-printable box out of there and it will paste into other apps with the correct characters. Cygwin (?) seems to convert to the ? character and that comes through in the copy/paste.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/936829/where-can-i-get-dsquery-and-other-tools-useful-for-debugging-active-directory-iss 0 Where can I get dsquery and other tools useful for debugging Active Directory issues? Brandon DuRette 2009-06-01T21:16:28Z 2009-06-01T22:22:04Z <p>The <code>dsquery</code> command line tool is mentioned in the solution to several questions about Active Directory. However, my workstation does not have this command line tool. Where do I get it?</p> http://stackoverflow.com/questions/936829/where-can-i-get-dsquery-and-other-tools-useful-for-debugging-active-directory-iss/936832#936832 1 Answer by Brandon DuRette for Where can I get dsquery and other tools useful for debugging Active Directory issues? Brandon DuRette 2009-06-01T21:17:58Z 2009-06-01T21:17:58Z <p>The <code>dsquery</code> tool, and other command line tools for Active Directory are available in the <a href="http://www.microsoft.com/downloads/details.aspx?familyid=C16AE515-C8F4-47EF-A1E4-A8DCBACFF8E3" rel="nofollow">Windows Server 2003 Administration Tools Pack</a>.</p> http://stackoverflow.com/questions/808083/can-junit-ant-task-report-ignored-tests 0 Can JUnit Ant task report ignored tests? Brandon DuRette 2009-04-30T17:19:02Z 2009-04-30T18:11:25Z <p>We're currently using JUnit 4.4 and Ant 1.7.1 for our builds. I have some test cases that are <code>@Ignore</code>d. When I run them in Eclipse, the JUnit test runner reports them as ignored. I would like to see them listed in the XML output from Ant (so I can report on them), but they do not seem to be there. </p> <p>Does anyone have this working? Is there a switch to turn them on? An upgrade I need to do? </p> http://stackoverflow.com/questions/712004/does-java-have-methods-to-get-the-various-byte-order-marks 2 Does Java have methods to get the various byte order marks? Brandon DuRette 2009-04-02T23:20:53Z 2009-04-21T20:03:23Z <p>I am looking for a utility method or constant in Java that will return me the bytes that correspond to the appropriate byte order mark for an encoding, but I can't seem to find one. Is there one? I really would like to do something like:</p> <pre><code>byte[] bom = Charset.forName( CharEncoding.UTF8 ).getByteOrderMark(); </code></pre> <p>Where <code>CharEncoding</code> comes from Apache Commons.</p> http://stackoverflow.com/questions/617489/whats-your-favorite-windows-text-editor/617503#617503 2 Answer by Brandon DuRette for What's your favorite Windows text editor? Brandon DuRette 2009-03-06T02:04:53Z 2009-03-06T02:04:53Z <p><a href="http://www.jedit.org" rel="nofollow">jEdit</a> or <a href="http://www.ultraedit.com/" rel="nofollow">UltraEdit</a></p> http://stackoverflow.com/questions/544430/how-to-psyche-yourself-to-just-program-the-damn-thing/544814#544814 0 Answer by Brandon DuRette for How to psyche yourself to just program the damn thing Brandon DuRette 2009-02-13T05:16:29Z 2009-02-13T05:16:29Z <p>Meditation works for me. It calms your mind and clearing out the clutter that is causing you anxiety. Then, you can focus on enjoying the process of writing the code, without focusing on the end result. </p> <p>I recommend the book "Mental Resilience" as a good, pragmatic introduction to meditation that mostly skips over any of the metaphysical/mystical aspects of meditation that has the potential to turn people off.</p> http://stackoverflow.com/questions/516399/create-exe-for-java-program/516623#516623 0 Answer by Brandon DuRette for Create .exe for Java program Brandon DuRette 2009-02-05T16:22:10Z 2009-02-05T16:22:10Z <p>You could try <a href="http://www.ej-technologies.com/products/exe4j/overview.html" rel="nofollow">exe4j</a>. This is effectively what we use through its cousin <a href="http://www.ej-technologies.com/products/install4j/overview.html" rel="nofollow">install4j</a>.</p> http://stackoverflow.com/questions/481209/beautiful-charting-graphing-scientific-plotting/482420#482420 0 Answer by Brandon DuRette for Beautiful charting/graphing/scientific plotting Brandon DuRette 2009-01-27T05:47:33Z 2009-01-27T05:47:33Z <p><a href="http://code.enthought.com/chaco/" rel="nofollow">Chaco</a></p> http://stackoverflow.com/questions/431175/what-was-your-first-computer-game-that-got-you-interested-in-computers/474654#474654 1 Answer by Brandon DuRette for What was your first computer game that got you interested in computers? Brandon DuRette 2009-01-23T21:31:13Z 2009-01-23T21:31:13Z <p>Asteroids on Atari 2600</p> http://stackoverflow.com/questions/471013/java-easier-way-to-guarantee-integer-input-through-scanner/471117#471117 0 Answer by Brandon DuRette for Java - Easier way to guarantee integer input through Scanner? Brandon DuRette 2009-01-22T22:33:04Z 2009-01-22T22:33:04Z <p>Apache Commons is your friend. See <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/math/NumberUtils.html#toInt(java.lang.String,%20int)" rel="nofollow">NumberUtils.toInt(String, int)</a></p> http://stackoverflow.com/questions/379551/java-split-a-list-into-two-sub-lists/379628#379628 3 Answer by Brandon DuRette for Java: split a List into two sub-Lists? Brandon DuRette 2008-12-18T23:01:08Z 2008-12-19T01:17:10Z <p>Riffing on <a href="http://stackoverflow.com/questions/379551/java-split-a-list-into-two-sub-lists#379584">Marc's solution</a>, this solution uses a <code>for</code> loop that saves some calls to <code>list.size()</code>:</p> <pre><code>&lt;T&gt; List&lt;T&gt; split(List&lt;T&gt; list, int i) { List&lt;T&gt; x = new ArrayList&lt;T&gt;(list.subList(i, list.size())); // Remove items from end of original list for (int j=list.size()-1; j&gt;i; --j) list.remove(j); return x; } </code></pre> http://stackoverflow.com/questions/377133/how-to-kindly-ask-your-users-to-upgrade-from-ie6/379656#379656 -1 Answer by Brandon DuRette for How to (kindly) ask your users to upgrade from IE6? Brandon DuRette 2008-12-18T23:11:29Z 2008-12-18T23:11:29Z <p>Forward them a <a href="http://news.google.com/news?client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;channel=s&amp;hl=en&amp;tab=wn&amp;ie=UTF-8&amp;ncl=1280059446" rel="nofollow">link to the news about the latest IE vulnerabilities</a>, choosing the site that has the most credibility with them. Include a link to <a href="http://www.getfirefox.com" rel="nofollow">Firefox</a>.</p> http://stackoverflow.com/questions/332079/in-java-how-do-i-convert-a-byte-array-to-a-string-of-hex-digits-while-keeping-le/332433#332433 3 Answer by Brandon DuRette for In Java, how do I convert a byte array to a string of hex digits while keeping leading zeros? Brandon DuRette 2008-12-01T22:12:58Z 2008-12-01T22:12:58Z <p>Check out Apache Commons Codec <a href="http://tinyurl.com/6lb2cj" rel="nofollow">Hex.encodeHex</a>. Return type is <code>char[]</code> which can trivially be converted to <code>String</code>. So:</p> <pre><code> String hexString = new String(Hex.encodeHex(messageDigest)); </code></pre> http://stackoverflow.com/questions/310010/are-there-specific-technical-debts-that-are-not-worth-incurring 4 Are there specific "technical debts" that are not worth incurring? Brandon DuRette 2008-11-21T20:05:00Z 2008-11-29T22:49:01Z <p>There are (at least) two ways that technical debts make their way into projects. The first is by conscious decision. Some problems just are not worth tackling up front, so they are consciously allowed to accumulate as technical debt. The second is by ignorance. The people working on the project don't know or don't realize that they are incurring a technical debt. This question deals with the second. Are there technical debts that you let into your project that would have been trivial to keep out ("If I had only known...") but once they were embedded in the project, they became dramatically more costly? </p> http://stackoverflow.com/questions/310010/are-there-specific-technical-debts-that-are-not-worth-incurring/310116#310116 6 Answer by Brandon DuRette for Are there specific "technical debts" that are not worth incurring? Brandon DuRette 2008-11-21T20:37:26Z 2008-11-21T20:37:26Z <p>Storing dates in a database in local timezone. At some point, your application will be migrated to another timezone and you'll be in trouble. If you ever end up with mixed dates, you'll never be able to untangle them. Just store them in UTC.</p> http://stackoverflow.com/questions/310010/are-there-specific-technical-debts-that-are-not-worth-incurring/310019#310019 5 Answer by Brandon DuRette for Are there specific "technical debts" that are not worth incurring? Brandon DuRette 2008-11-21T20:10:40Z 2008-11-21T20:10:40Z <p>One example of this is running a database in a mode that does not support Unicode. It works right up until the time that you are forced to support Unicode strings in your database. The migration path is non-trivial, depending on your database. </p> <p>For example, SQL Server has a fixed maximum row length in bytes, so when you convert your columns to Unicode strings (NCHAR, NVARCHAR, etc.) there may not be enough room in the table to hold the data that you already have. Now, your migration code must make a decision about truncation or you must change your table layout entirely. Either way, it's much more work than just starting with all Unicode strings.</p> http://stackoverflow.com/questions/89327/best-manual-editing-software/242130#242130 1 Answer by Brandon DuRette for Best Manual Editing Software Brandon DuRette 2008-10-28T03:13:20Z 2008-10-28T03:13:20Z <p>We use <a href="http://www.ec-software.com/" rel="nofollow">Help and Manual</a>. It's got some quirks, but it's pretty good overall; especially now that it saves in a non-binary format that can be merged. Your manual is in version control, right?</p> http://stackoverflow.com/questions/240468/worst-muscle-memory-keyboard-shortcut/242126#242126 1 Answer by Brandon DuRette for Worst "muscle memory" keyboard shortcut? Brandon DuRette 2008-10-28T03:09:56Z 2008-10-28T03:09:56Z <p>CAPS + (anything)</p> <p>I have the Caps Lock key on my keyboards mapped to Ctrl, so every time I'm on someone else's machine I end up spraying random capital letters into whatever I'm editing.</p> http://stackoverflow.com/questions/242079/is-there-an-expandable-list-of-object-references-in-java/242117#242117 0 Answer by Brandon DuRette for Is there an expandable list of object references in Java? Brandon DuRette 2008-10-28T03:04:03Z 2008-10-28T03:04:03Z <p>It's not very efficient, but if you're just appending to an array, you can use <a href="http://tinyurl.com/5jvhod" rel="nofollow">Apache Commons ArrayUtils.add()</a>. It returns a copy of the original array with the additional element in it.</p> http://stackoverflow.com/questions/233628/should-java-raw-types-be-deprected/233725#233725 2 Answer by Brandon DuRette for Should Java Raw Types be Deprected? Brandon DuRette 2008-10-24T14:19:09Z 2008-10-24T14:19:09Z <p>In Eclipse, you can instruct the compiler on how to handle raw types. By default, they are a Warning. But they can easily be set to Error. To change the settings:</p> <p>Window > Preferences > Java > Compiler > Errors/Warnings > Generic Types</p> <p>If you're working on an entirely new code base, you probably want to set that to Error in your project specific settings. Then check in your project files into your SCM so everyone gets the same project rules.</p> http://stackoverflow.com/questions/213757/why-do-people-use-java/214318#214318 0 Answer by Brandon DuRette for Why do people use Java? Brandon DuRette 2008-10-18T01:05:26Z 2008-10-18T01:05:26Z <p>Others have mentioned lack of magic, but let me expand on that. One of the virtues of Java is that it's easy to reason about what any piece of code is doing &mdash; for people and tools . Any given piece of code has only obvious external influences. Interestingly, these are some of the same things that make Java more verbose:</p> <ul> <li>No macros that you have to track through multiple header files.</li> <li>No operator overloading.</li> <li>No implicit casts.</li> <li>Single inheritance with interfaces.</li> </ul> <p>I believe that this makes Java easier to learn, easier to read, and easier to write good tools. I'm not saying good tools can't be done for other languages, but the tooling in most other languages lags behind the current Java tools.</p> http://stackoverflow.com/questions/199670/most-influential-cs-class-youve-taken/200040#200040 0 Answer by Brandon DuRette for Most Influential CS Class You've Taken Brandon DuRette 2008-10-14T04:49:27Z 2008-10-14T04:49:27Z <p>6.001 (how to think like a computer scientist)<br> 6.170 (how to think like a software engineer)</p> http://stackoverflow.com/questions/197891/is-there-a-text-wrap-function-in-the-java-standard-library/198151#198151 6 Answer by Brandon DuRette for Is there a text wrap function in the java standard library? Brandon DuRette 2008-10-13T16:17:05Z 2008-10-13T16:17:05Z <p>There is not in the standard Java library, but there is in Apache Commons:</p> <p><a href="http://commons.apache.org/lang/apidocs/org/apache/commons/lang/WordUtils.html#wrap(java.lang.String,%20int)" rel="nofollow">WordUtils.wrap</a></p> http://stackoverflow.com/questions/189094/how-to-scan-a-folder-in-java/189319#189319 4 Answer by Brandon DuRette for How to scan a folder in Java? Brandon DuRette 2008-10-09T21:39:38Z 2008-10-09T21:39:38Z <p>Check out Apache Commons FileUtils (listFiles, iterateFiles, etc.). Nice convenience methods for doing what you want and also applying filters.</p> <p><a href="http://commons.apache.org/io/api-1.4/org/apache/commons/io/FileUtils.html" rel="nofollow">http://commons.apache.org/io/api-1.4/org/apache/commons/io/FileUtils.html</a></p> http://stackoverflow.com/questions/11368/what-is-the-best-interview-question/180686#180686 2 Answer by Brandon DuRette for What is the best interview question? Brandon DuRette 2008-10-07T22:22:51Z 2008-10-07T22:22:51Z <p>"Tell me about a project you have worked on that was a failure and what did you learn from it?"</p> <p>After the technical questions that are a requirement for the people that I usually interview, I like to ask candidates about a project that they have worked on that was a failure. I'm looking for someone who is circumspect enough to recognize failure and learn something from it. At some level, everyone has been a part of a failure. People who dodge the question ("I can't think of one.") indicate to me that they have not been paying enough attention, have an ego problem, or are not interested in passing the interview. People who just want to cast nonspecific blame ("The project manager sucked.") are excuse-makers and will do it again when things get tough. </p> <p>I'm looking for reasons not excuses. Be specific. Be constructive. Convince me that you have done something to resolve that failure mode permanently or could recognize and remedy the problem should it arise again.</p> http://stackoverflow.com/questions/160104/how-do-you-add-all-untracked-files-in-svn-something-like-git-add-i/160177#160177 2 Answer by Brandon DuRette for How do you add all untracked files in svn? Something like git add -i? Brandon DuRette 2008-10-01T23:08:12Z 2008-10-01T23:08:12Z <p>I use a generalization of the command line that you run, called <code>svnapply.sh</code>. I did not write it, but I don't remember where I found it. Hopefully, the original author will forgive me for reposting it here:</p> <pre><code>#!/bin/bash # # Applies arbitrary commands to any svn status. e.g. # # Delete all non-svn files (escape the ? from the shell): # svnapply \? rm # # List all conflicted files: # svnapply C ls -l APPLY=$1 shift svn st | egrep "^\\${APPLY}[ ]+" | \ sed -e "s|^\\${APPLY}[ ]*||" | \ sed -e "s|\\\\|/|g" | \ xargs -i "$@" '{}' </code></pre> <p>Per the comments, the script allows you to run arbitrary commands against all files with the same status.</p> <p>Update: </p> <p>It would not be too difficult to write a script that takes a file path as an argument and prompts the user for add/delete and then does the appropriate thing for that file. Chaining that together with the above script would get you what you want.</p> http://stackoverflow.com/questions/154864/function-chaining-how-many-is-too-many/154909#154909 1 Answer by Brandon DuRette for Function Chaining - How many is too many? Brandon DuRette 2008-09-30T20:28:47Z 2008-09-30T20:28:47Z <p>I think more than two is stretching it. The reason is, if any of the methods happen to return <code>null</code> and a <code>NullPointerException</code> (or equivalent) is thrown, the stack trace does not point you straight to the bug. </p> <p>I suppose I could make exceptions for cases when the methods are documented to never return <code>null</code>, honor that contract, and can be proven to honor that contract. In general, fewer is better, IMHO.</p> http://stackoverflow.com/questions/154248/how-to-add-an-attribute-to-an-xml-node-in-java-1-4/154370#154370 0 Answer by Brandon DuRette for How to add an attribute to an XML node in Java 1.4 Brandon DuRette 2008-09-30T18:36:58Z 2008-09-30T19:24:06Z <p>As already noted, the <code>ClassCastException</code> is probably not being thrown in <code>setAttribute</code>. Check the line number in the stack. My guess is that <code>getFirstChild()</code> is returning a <code>DocumentType</code>, not an <code>Element</code>.</p> <p>Try this:</p> <pre><code>DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); Document doc = db.parse(f); Element e = (Element) doc.getDocumentElement().getFirstChild(); e.setAttribute("objectId", "OBJ123"); </code></pre> <p>Update: </p> <p>It seems like you are confusing <code>Node</code> and <code>Element</code>. <code>Element</code> is an implementation of <code>Node</code>, but certainly not the only one. So, not all <code>Node</code>'s are castable to <code>Element</code>. If the cast is working on one machine and not on another, it's because you're getting something else back from <code>getMapNode()</code> because the parsers are behaving differently. The XML parser is pluggable in Java 1.4, so you could be getting an entirely different implementation, from a different vendor, with different bugs even. </p> <p>Since you're not posting <code>getMapNode()</code> we cannot see what it's doing, but you should be explicit about what node you want it to return (using <code>getElementsByTagName</code> or otherwise). </p> http://stackoverflow.com/questions/808083/can-junit-ant-task-report-ignored-tests/808146#808146 Comment by Brandon DuRette on Can JUnit Ant task report ignored tests? Brandon DuRette 2009-04-30T18:40:01Z 2009-04-30T18:40:01Z As lame as it is, this is the answer. Worse, it's a known issue that they don't see fit to fix because it &quot;seems to work well enough&quot; without it. http://stackoverflow.com/questions/712004/does-java-have-methods-to-get-the-various-byte-order-marks/713255#713255 Comment by Brandon DuRette on Does Java have methods to get the various byte order marks? Brandon DuRette 2009-04-03T13:27:28Z 2009-04-03T13:27:28Z My specific case is writing a CSV file that is UTF-8. As far as I can tell, the UTF-8 BOM is the only way to convince Excel to not attempt to read the file in the default character encoding. http://stackoverflow.com/questions/577943/how-accurate-are-the-technical-arguments-in-jwzs-ten-year-old-java-sucks-artic/589689#589689 Comment by Brandon DuRette on How accurate are the technical arguments in JWZ's ten-year-old "java sucks" article with today's Java? Brandon DuRette 2009-03-04T14:31:41Z 2009-03-04T14:31:41Z RE: Switch on enums. The Eclipse compiler has that warning, which (like all warnings in Eclipse) can be made a compiler error. http://stackoverflow.com/questions/69430/is-there-a-way-to-make-text-unselectable-on-an-html-page/69486#69486 Comment by Brandon DuRette on Is there a way to make text unselectable on an html page? Brandon DuRette 2009-02-23T16:29:07Z 2009-02-23T16:29:07Z Likewise in Safari/Chrome/etc. -khtml-user-select:none; http://stackoverflow.com/questions/469445/last-words-of-a-programmer/469475#469475 Comment by Brandon DuRette on Last words of a ??? programmer Brandon DuRette 2009-01-27T00:08:36Z 2009-01-27T00:08:36Z I think you missed one. :) http://stackoverflow.com/questions/205153/how-would-you-implement-salted-passwords-in-tomcat-5-5/288224#288224 Comment by Brandon DuRette on How would you implement salted passwords in Tomcat 5.5 Brandon DuRette 2009-01-19T21:50:53Z 2009-01-19T21:50:53Z +1 for finding my patch and posting a link. :) http://stackoverflow.com/questions/445049/java-awt-headlessexception-applet-not-displayed/458301#458301 Comment by Brandon DuRette on java.awt.HeadlessException - Applet not displayed Brandon DuRette 2009-01-19T21:49:12Z 2009-01-19T21:49:12Z +1 because this seems to be the answer that Vicky acknowledges solved the issue. http://stackoverflow.com/questions/449127/what-java-technologies-should-college-grad-should-focus-on/449132#449132 Comment by Brandon DuRette on What Java Technologies Should College Grad Should Focus On? Brandon DuRette 2009-01-16T03:03:16Z 2009-01-16T03:03:16Z I agree with this sentiment. You will be better off if you figure out what it is that you want to do, then use the relevant technologies in a personal project. Hands on learning, plus you get to see if it's really what you want to do. &quot;Best value&quot; is figuring out what will make you happy, not money. http://stackoverflow.com/questions/379240/is-there-a-windows-command-shell-that-will-display-unicode-characters/421740#421740 Comment by Brandon DuRette on Is there a Windows command shell that will display Unicode characters? Brandon DuRette 2009-01-08T21:21:31Z 2009-01-08T21:21:31Z On your suggestion, I tried it and it doesn't seem to solve my problem. Running 'dir' in a directory with files that have names that include Korean characters results in ?'s. This behavior is the same as cmd.exe. http://stackoverflow.com/questions/379551/java-split-a-list-into-two-sub-lists/379846#379846 Comment by Brandon DuRette on Java: split a List into two sub-Lists? Brandon DuRette 2008-12-19T06:59:39Z 2008-12-19T06:59:39Z I think this solution fails in the case where elements that are .equals() appear in both partitions. http://stackoverflow.com/questions/379240/is-there-a-windows-command-shell-that-will-display-unicode-characters/379298#379298 Comment by Brandon DuRette on Is there a Windows command shell that will display Unicode characters? Brandon DuRette 2008-12-18T21:44:10Z 2008-12-18T21:44:10Z Upvoted for suggesting a working solution to the problem. I would accept it, except I'm holding out hope for something better. As &quot;early alpha&quot;, it has a long way to go to be a truly usable shell. http://stackoverflow.com/questions/310010/are-there-specific-technical-debts-that-are-not-worth-incurring Comment by Brandon DuRette on Are there specific "technical debts" that are not worth incurring? Brandon DuRette 2008-11-21T20:12:32Z 2008-11-21T20:12:32Z The question is intentionally broad, because I hope the answers will include things that I am ignorant of... and therefore would not be capable of asking a specific question about. http://stackoverflow.com/questions/238177/worst-ui-youve-ever-used/238191#238191 Comment by Brandon DuRette on Worst UI You've Ever Used Brandon DuRette 2008-10-28T03:25:07Z 2008-10-28T03:25:07Z My only wish is that I could upvote this more than once. http://stackoverflow.com/questions/241602/what-non-technical-items-do-you-keep-on-your-desk/241732#241732 Comment by Brandon DuRette on What non-technical items do you keep on your desk? Brandon DuRette 2008-10-28T03:22:00Z 2008-10-28T03:22:00Z I definitely need this! http://stackoverflow.com/questions/240758/how-do-you-encourage-someone-to-learn-to-use-the-debugger/240901#240901 Comment by Brandon DuRette on How do you encourage someone to learn to use the debugger? Brandon DuRette 2008-10-28T03:19:50Z 2008-10-28T03:19:50Z I absolutely agree with this. Let him see the value for himself. Just make sure the problem that you're trying to solve is sufficiently complex that a debugger clearly beats printf debugging. Otherwise, you will simply annoy him.