User Arne Evertsson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T05:14:06Z http://stackoverflow.com/feeds/user/16686 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/362223/best-mysql-performance-tuning-tool 10 Best MySQL performance tuning tool? Arne Evertsson 2008-12-12T08:40:43Z 2009-12-16T08:29:28Z <p>Which is the best, user-friendliest performance tool for MySQL? I'd like help with pinpointing the bottle neck of my setup. Is the problem in the SQL statements, the settings variables, or something else?</p> http://stackoverflow.com/questions/1859340/why-is-exception-getcause-exception 2 Why is exception.getCause() == exception? Arne Evertsson 2009-12-07T11:07:02Z 2009-12-11T10:44:48Z <p>I made a mistake when asking this question by thinking that the value of the member variable <code>cause</code> would be returned as the result of a call to <code>getCause()</code> in <code>org.apache.catalina.connector.ClientAbortException</code>. That obviously isn't the case. The real cause is returned.</p> <p>Looking at the source of Throwable I can see that it sets <code>cause = this</code> to indicate that the cause has yet to be set. This was a bad question but I did learn something from asking it.</p> <p>Original question below:</p> <p>Sometimes when you catch exceptions, the getCause() will return the exception object itself, making it recursive. Why doesn't getCause() return null?</p> http://stackoverflow.com/questions/1873490/what-are-some-common-socketexceptions-and-what-is-causing-them 0 What are some common SocketExceptions and what is causing them? Arne Evertsson 2009-12-09T12:05:41Z 2009-12-09T15:38:56Z <p>I've been caught catching SocketExceptions belonging to subspecies like for example <strong>Broken pipe</strong> or <strong>Connection reset</strong>. The question is what to do with the slippery bastards once they're caught.</p> <p>Which ones may I happily ignore and which need further attention? I'm looking for a list of different SocketExceptions and their causes.</p> http://stackoverflow.com/questions/1858412/download-a-non-html-file-with-htmlunit 0 Download a non html file with HtmlUnit Arne Evertsson 2009-12-07T07:33:52Z 2009-12-07T07:58:08Z <p>I'm writing a JUnit test that involves the downloading of a file from the web app. How do I do that with HtmlUnit?</p> http://stackoverflow.com/questions/1857995/how-to-set-the-mouse-wheel-scrolling-speed-in-intellij 0 How to set the mouse wheel scrolling speed in IntelliJ? Arne Evertsson 2009-12-07T05:27:32Z 2009-12-07T05:33:07Z <p>Is there a way to set the mouse wheel scrolling speed for an editor window? I think it's too fast. I'm running IntelliJ IDEA 8.1.4 on Mac OS 10.6.2.</p> http://stackoverflow.com/questions/1846565/how-to-create-two-editor-windows-for-the-same-file 0 How to create two editor windows for the same file? Arne Evertsson 2009-12-04T12:07:21Z 2009-12-04T12:25:58Z <p>I usually have a vertical split with two editor windows next to each other. Is there a way to have the same file in both of these windows? I run version 8.1.4 of IntelliJ.</p> http://stackoverflow.com/questions/1729049/how-to-tell-why-a-file-deletion-fails-in-java 2 How to tell why a file deletion fails in Java? Arne Evertsson 2009-11-13T12:50:59Z 2009-11-13T14:51:51Z <pre><code>File file = new File(path); if (!file.delete()) { throw new IOException( "Failed to delete the file because: " + getReasonForFileDeletionFailureInPlainEnglish(file)); } </code></pre> <p>Is there a good implementation of <code>getReasonForFileDeletionFailureInPlainEnglish(file)</code> already out there? Or else I'll just have to write it myself.</p> http://stackoverflow.com/questions/1727922/how-to-clear-the-intellij-project-index 1 How to clear the IntelliJ project index? Arne Evertsson 2009-11-13T08:37:19Z 2009-11-13T10:19:48Z <p>I've run into trouble that makes me suspect there is a bad index file that needs to be cleared. The symptoms are:</p> <ul> <li>Cmd+N will only find a subset of classes in the project</li> <li>Trying to run JUnit test on a package won't find the test classes in that package.</li> </ul> <p>Before suspecting a bad index I reinstalled IntelliJ 8.1.3, then I removed and re-checked out the source code. It didn't help. Only after checking out the code into a different folder did IntelliJ start working correctly again, but only for the new project folder. The old project folder is still <em>infected</em>.</p> <p>So where is that index and how do I clear it? </p> http://stackoverflow.com/questions/1315844/url-format-for-internationalized-web-app 7 Url format for internationalized web app? Arne Evertsson 2009-08-22T12:05:11Z 2009-11-12T16:54:45Z <p>Scenario</p> <p>The web server gets a request for <code>http://domain.com/folder/page</code>. The <em>Accept-Language</em> header tells us the user prefers Greek, with the language code <code>el</code>. That's good, since we have a Greek version of <code>page</code>.</p> <p>Now we could do one of the following with the URL:</p> <ol> <li>Return a Greek version keeping the current URL: <code>http://domain.com/folder/page</code></li> <li>Redirect to <code>http://domain.com/folder/page/el</code></li> <li>Redirect to <code>http://domain.com/el/folder/page</code></li> <li>Redirect to <code>http://el.domain.com/folder/page</code></li> <li>Redirect to <code>http://domain.com/folder/page?hl=el</code></li> <li>...other alternatives?</li> </ol> <p>Which one is best? Pros, cons from a user perspective? developer perspective?</p> http://stackoverflow.com/questions/1439779/how-to-compare-two-dates-without-the-time-portion 0 How to compare two Dates without the time portion? Arne Evertsson 2009-09-17T16:02:56Z 2009-11-11T02:59:36Z <p>I would like to have a compareTo method that ignores the time portion of a java.util.Date. I guess there are a number of ways to solve this. What's the simplest way?</p> http://stackoverflow.com/questions/1315844/url-format-for-internationalized-web-app/1682525#1682525 2 Answer by Arne Evertsson for Url format for internationalized web app? Arne Evertsson 2009-11-05T18:18:04Z 2009-11-06T11:21:53Z <p>My own choice is #3: <code>http://domain.com/el/folder/page</code>. It seems to be the most popular out there on the web. All the other alternatives have problems:</p> <ol> <li><code>http://domain.com/folder/page</code> --- Bad for SEO?</li> <li><code>http://domain.com/folder/page/el</code> --- Doesn't work for pages with parameters. This looks weird: ...page?par1=x&amp;par2=y/el</li> <li><code>http://domain.com/el/folder/page</code> --- Looks good!</li> <li><code>http://el.domain.com/folder/page</code> --- More work needed to deploy since it requires adding subdomains.</li> <li><code>http://domain.com/folder/page?hl=el</code> --- Bad for SEO?</li> </ol> http://stackoverflow.com/questions/1577003/uploading-files-using-html-file-input-on-iphone/1682880#1682880 0 Answer by Arne Evertsson for Uploading files using HTML file input on iphone Arne Evertsson 2009-11-05T19:12:40Z 2009-11-05T19:22:08Z <p>Apple doesn't allow it. It may however be possible to write an iPhone app that does this. See <a href="http://stackoverflow.com/questions/125306/how-can-i-upload-a-photo-to-a-server-with-the-iphone">this question</a> or google it.</p> http://stackoverflow.com/questions/1304776/getting-the-actual-jsp-line-number-from-a-stack-trace-line-number 6 Getting the actual jsp line number from a stack trace line number? Arne Evertsson 2009-08-20T08:30:06Z 2009-09-07T09:14:34Z <p>Here is the stacktrace:</p> <pre><code>... org.apache.jsp.showcustomer_jsp._jspService(showcustomer_jsp.java:128) org.apache.jasper.runtime.HttpJspBase.service(Unknown Source) </code></pre> <p>This is what I do:</p> <ol> <li>Get the line number from the stacktrace, in this case 128.</li> <li>Find the <code>showcustomer_jsp.java</code> file (and it isn't exactly obvious to look in <code>/var/run/tomcat-6/Catalina/localhost/_/org/apache/jsp</code>).</li> <li>Open it and go to line 128.</li> <li>Now, search the <code>.jsp</code> file for the whatever you found on line 128 in the <code>_jsp.java</code> file.</li> <li>Boom! You're done!</li> </ol> <p>Please, is there a simpler way to do this?</p> http://stackoverflow.com/questions/1264568/how-does-unit-testing-improve-productivity/1286830#1286830 1 Answer by Arne Evertsson for How does unit testing improve productivity? Arne Evertsson 2009-08-17T08:45:59Z 2009-08-18T12:05:47Z <p>If you by short term mean a month or two I think the answer is yes. How? When I need to make changes to my own code that I haven't touched for perhaps just a few weeks, or to code that somebody else in the team wrote, I feel a lot more confident if there are unit tests and the code coverage is good. If there were no tests I would be more inclined to patch, work-around and generally avoid touching the main algorithm. Do that a couple of times and the code becomes incomprehensible.</p> <blockquote> <p><strong>Scenario: Project meeting</strong></p> <p>Product owner: "We need to make a change to X and add the Y feature. Is it doable?".</p> <p>Team: "It would be better to wait for Joe to come back. He wrote that code."</p> <p>A few weeks later..</p> <p>Joe: "Sure, it can be done but considering all the testing that went into that module it's not a quick fix".</p> <p>Product owner: "Oh. So.. let's postpone that change for while..."</p> </blockquote> <p>I'm not sure whether I'm answering your question. It really depends on how short the short term is. ;-)</p> http://stackoverflow.com/questions/135386/what-is-the-best-reason-for-unit-testing/1286979#1286979 0 Answer by Arne Evertsson for What is the best reason for unit testing? Arne Evertsson 2009-08-17T09:23:53Z 2009-08-17T09:23:53Z <p>To be able to say yes with a smile on your face when the product owner asks "Can we add this new great feature?".</p> http://stackoverflow.com/questions/1264568/how-does-unit-testing-improve-productivity/1286884#1286884 1 Answer by Arne Evertsson for How does unit testing improve productivity? Arne Evertsson 2009-08-17T08:59:16Z 2009-08-17T08:59:16Z <p>Unit testing improves short term productivity in the following sense: It makes it more likely that your code solves the right problem earlier. Spending neuron cycles on creating tests will make the programmer think about the different use cases and the user interface (or API) of that code.</p> <p>The opposite scenario would be to code away for a couple of weeks and only then realize that the code solves half of the problem. Now you have to patch your code, or perhaps even throw it away and start over.</p> http://stackoverflow.com/questions/1103899/what-happens-when-there-is-no-matching-method-for-an-objective-c-message 4 What happens when there is no matching method for an Objective-C message? Arne Evertsson 2009-07-09T13:29:02Z 2009-07-09T18:30:05Z <p>I'm a bit puzzled:</p> <ul> <li><p>From <em>Cocoa Programming For Mac OS X</em> (page 63, 3rd edition, Aaron Hillegass): "If it reaches the top of the [inheritance] tree without finding a method, the function throws an exception".</p></li> <li><p>From the <a href="http://en.wikipedia.org/wiki/Objective-c#Messages" rel="nofollow">Wikipedia article on Objective-C</a>: "the object to which the message is directed (referred to as the receiver) is not inherently guaranteed to respond to a message, and if it doesn't it simply ignores it and returns a null pointer."</p></li> </ul> <p>Which one is it?</p> http://stackoverflow.com/questions/1000707/objective-c-equivalent-of-java-packages 1 Objective-C equivalent of Java packages? Arne Evertsson 2009-06-16T10:35:32Z 2009-06-18T17:52:55Z <p>What is the Objective-C equivalent of Java packages? How do you group and organize your classes in Objective-C?</p> http://stackoverflow.com/questions/990360/differences-between-java-interfaces-and-objective-c-protocols 4 Differences between Java interfaces and Objective-C protocols? Arne Evertsson 2009-06-13T09:07:45Z 2009-06-16T18:22:13Z <p>I know Java, and now I'm learning Objective-C. What exactly are the differences between Java interfaces and Objective-C protocols?</p> http://stackoverflow.com/questions/105544/most-important-problem-solved-by-ejb-3 14 Most important problem solved by EJB 3? Arne Evertsson 2008-09-19T20:54:26Z 2009-05-29T10:17:37Z <p>The scenario</p> <ul> <li>You have developed a webapp using EJBs version 3.</li> <li>The system is deployed, delivered and is used by the customer.</li> </ul> <p>If you would have to rewrite the system from scratch, would you use EJBs again?</p> <p><strong>No</strong>: Don't answer this question, answer <a href="http://stackoverflow.com/questions/161349/top-reason-not-to-use-ejb-30-again">this one</a> instead.</p> <p><strong>Yes</strong>: Provide one important, real problem that EJBs solved, based on your personal experience.</p> <p>Let the answer contain just <strong>one</strong> problem. This will let other readers vote up the best feature of EJBs.</p> http://stackoverflow.com/questions/177576/whats-the-single-most-important-piece-of-documentation 16 What's the single most important piece of documentation? Arne Evertsson 2008-10-07T08:20:56Z 2008-11-29T14:14:11Z <p>You are joining a project to maintain an existing system. There is no written documentation at all, but the previous team offers to write <em>one</em> piece of documentation. And they are going to let you decide what it should cover: What is the single most important piece of documentation?</p> <p>This is a poll: give only one document type per answer and let other readers vote.</p> http://stackoverflow.com/questions/198352/assembla-do-you-like-trac-tickets-or-assembla-tickets-and-why/203985#203985 1 Answer by Arne Evertsson for Assembla: Do you like Trac tickets or Assembla tickets and why? Arne Evertsson 2008-10-15T08:05:31Z 2008-10-15T08:05:31Z <p>I've only used the Trac tickets since I'm using also the Trac wiki and the Trac subversion repository. It makes sense to be able to link back and forth between tickets, wiki pages and source code.</p> <p>However the ticket user interface is very web 1.0 style: Lots of page reloading and navigation. The ticket editing page is also too long. I would certainly prefer tadalist style editing.</p> <p>Perhaps a Google Spreadsheet is the way to go. It's easy to edit and sort, and you can have a Skype conference while editing the ticket list together.</p> http://stackoverflow.com/questions/188437/programmer-vs-architect/188571#188571 -1 Answer by Arne Evertsson for Programmer vs Architect? Arne Evertsson 2008-10-09T18:29:35Z 2008-10-09T18:29:35Z <p>"There is no spoon"</p> http://stackoverflow.com/questions/187068/what-is-the-single-task-in-your-development-activity-you-would-like-to-see-automa/187162#187162 4 Answer by Arne Evertsson for What is the single task in your development activity you would like to see automated? Arne Evertsson 2008-10-09T13:05:25Z 2008-10-09T13:20:28Z <p><strong>Setting up the development environment</strong></p> <p>This may seem as a one time thing to do, but actually it isn't. Somebody adds a new dependency, e.g. to a JMS queue: it need to be set up and configured. Somebody makes changes in the db: you probably have to update your db manually. There is a change in the Maven pom-files: the IDE project files need to be recreated which probably erases some of your settings.</p> <p>If you have more than one computer you develop on, all of this needs to be done for each computer.</p> <p>If I could press a button that made sure everything was up-to-date it would be wonderful.</p> http://stackoverflow.com/questions/182105/how-do-you-advance-beyond-being-an-advanced-programmer/184400#184400 0 Answer by Arne Evertsson for How do you advance beyond being an 'advanced' programmer? Arne Evertsson 2008-10-08T19:14:27Z 2008-10-08T19:14:27Z <p>How about putting all that knowledge to work and create the next Google? That would certainly be an experience to learn from.</p> http://stackoverflow.com/questions/176913/how-can-i-run-all-junit-unit-tests-except-those-ending-in-integrationtest-in-my/179707#179707 1 Answer by Arne Evertsson for How can I run all JUnit unit tests except those ending in "IntegrationTest" in my IntelliJ IDEA project using the integrated test runner? Arne Evertsson 2008-10-07T18:15:46Z 2008-10-07T18:15:46Z <p>How about putting each major group of junit tests into their own root package. I use this package structure in my project:</p> <pre><code>test. quick. com.acme slow. com.acme </code></pre> <p>Without any coding, you can set up IntelliJ to run all tests, just the quick ones or just the slow ones.</p> http://stackoverflow.com/questions/177576/whats-the-single-most-important-piece-of-documentation/177603#177603 29 Answer by Arne Evertsson for What's the single most important piece of documentation? Arne Evertsson 2008-10-07T08:29:47Z 2008-10-07T08:29:47Z <p><strong>How to set up the development environment</strong>: A step-by-step instruction which gives you a complete environment in which to check-in/check-out code, build, debug, deploy, test, run and perform all your daily tasks.</p> http://stackoverflow.com/questions/161349/top-reason-not-to-use-ejb-3-0-again 2 Top reason not to use EJB 3.0 again? Arne Evertsson 2008-10-02T08:30:00Z 2008-10-03T20:35:46Z <p>The scenario</p> <ul> <li>You have developed a webapp using EJBs version 3.</li> <li>The system is deployed, delivered and is used by the customer.</li> </ul> <p>If you would have to rewrite the system from scratch, would you use EJBs again?</p> <p><strong>Yes</strong>: Don't answer this question, answer <a href="http://stackoverflow.com/questions/105544/most-important-problem-solved-by-ejb-3">this one</a> instead.</p> <p><strong>No</strong>: Provide the top reason for not using EJBs again, based on your personal experience.</p> <p>Let the answer contain just <strong>one</strong> reason. This will let other readers vote up the number one reason to stay away from EJB 3.</p> http://stackoverflow.com/questions/35760/best-scrum-tools/168195#168195 0 Answer by Arne Evertsson for Best Scrum tools Arne Evertsson 2008-10-03T18:22:39Z 2008-10-03T18:22:39Z <p>We've used a Google Spreadsheet for a taskboard - but, I guess, only if you have a distributed team. You get the burndown chart automatically if you set it up right.</p> http://stackoverflow.com/questions/161590/how-do-you-track-your-time/161616#161616 2 Answer by Arne Evertsson for How do you track your time? Arne Evertsson 2008-10-02T10:09:04Z 2008-10-02T10:09:04Z <p>I use a Google Spredsheet which lets me add start and end time. It then sums up per project. I need to know how much I work on each project, so it is as simple as possible.</p> http://stackoverflow.com/questions/1859340/why-is-exception-getcause-exception/1859398#1859398 Comment by Arne Evertsson on Why is exception.getCause() == exception? Arne Evertsson 2009-12-07T13:40:54Z 2009-12-07T13:40:54Z Yup. Bad question. I've edited it, but can't delete it. http://stackoverflow.com/questions/1859340/why-is-exception-getcause-exception/1859398#1859398 Comment by Arne Evertsson on Why is exception.getCause() == exception? Arne Evertsson 2009-12-07T13:30:33Z 2009-12-07T13:30:33Z See comment on Skeet's answer. http://stackoverflow.com/questions/1859340/why-is-exception-getcause-exception/1859402#1859402 Comment by Arne Evertsson on Why is exception.getCause() == exception? Arne Evertsson 2009-12-07T13:29:55Z 2009-12-07T13:29:55Z See comment on Skeet's answer. http://stackoverflow.com/questions/1859340/why-is-exception-getcause-exception/1859396#1859396 Comment by Arne Evertsson on Why is exception.getCause() == exception? Arne Evertsson 2009-12-07T13:28:34Z 2009-12-07T13:28:34Z Ah, when debugging I noted that the cause member variable was recursive. However, the getCause() method worked fine. I was catching a org.apache.catalina.connector.ClientAbortException. http://stackoverflow.com/questions/309424/in-java-how-do-a-read-an-input-stream-in-to-a-string/309718#309718 Comment by Arne Evertsson on In Java how do a read an input stream in to a string? Arne Evertsson 2009-12-07T08:16:29Z 2009-12-07T08:16:29Z Missing curly brackets before 'while'. http://stackoverflow.com/questions/1846565/how-to-create-two-editor-windows-for-the-same-file/1846611#1846611 Comment by Arne Evertsson on How to create two editor windows for the same file? Arne Evertsson 2009-12-04T12:27:11Z 2009-12-04T12:27:11Z That kind of works, almost. Since I already have a vertical split, I'd certainly prefer not to open a third pane. http://stackoverflow.com/questions/1846565/how-to-create-two-editor-windows-for-the-same-file Comment by Arne Evertsson on How to create two editor windows for the same file? Arne Evertsson 2009-12-04T12:25:35Z 2009-12-04T12:25:35Z Go To / Class will just focus on the already open tab that contains the file. http://stackoverflow.com/questions/808443/how-do-i-search-and-replace-structurally-in-intellij/819041#819041 Comment by Arne Evertsson on How do I search and replace structurally in Intellij Arne Evertsson 2009-11-15T20:34:57Z 2009-11-15T20:34:57Z Did this answer solve the problem? http://stackoverflow.com/questions/1727922/how-to-clear-the-intellij-project-index/1727968#1727968 Comment by Arne Evertsson on How to clear the IntelliJ project index? Arne Evertsson 2009-11-13T09:28:07Z 2009-11-13T09:28:07Z Corresponding path under OS X? http://stackoverflow.com/questions/294167/what-are-the-most-useful-intellij-idea-keyboard-shortcuts/336842#336842 Comment by Arne Evertsson on What are the most useful Intellij IDEA keyboard shortcuts? Arne Evertsson 2009-11-13T09:16:07Z 2009-11-13T09:16:07Z Great one! Suddenly I have a command line interface into IntelliJ! http://stackoverflow.com/questions/322561/how-do-i-make-intellij-idea-run-all-the-tests-in-a-package-including-sub-packages Comment by Arne Evertsson on How do I make IntelliJ IDEA run all the tests in a package including sub packages Arne Evertsson 2009-11-12T20:53:47Z 2009-11-12T20:53:47Z Did you find a solution? I have the same problem. On the package level IntelliJ finds only testcases in classes that extend TestCase. Annotated test methods are not found. http://stackoverflow.com/questions/1315844/url-format-for-internationalized-web-app/1315962#1315962 Comment by Arne Evertsson on Url format for internationalized web app? Arne Evertsson 2009-11-11T21:06:14Z 2009-11-11T21:06:14Z I guess it could work technically. But then why wouldn't I add another parameter instead of a weird ending slash and a folder name? http://stackoverflow.com/questions/609860/convert-from-enum-ordinal-to-enum-type/609879#609879 Comment by Arne Evertsson on Convert from enum ordinal to enum type Arne Evertsson 2009-11-11T15:06:54Z 2009-11-11T15:06:54Z What if you change the name of the enum (but keep the ordering)? http://stackoverflow.com/questions/1315844/url-format-for-internationalized-web-app/1714860#1714860 Comment by Arne Evertsson on Url format for internationalized web app? Arne Evertsson 2009-11-11T14:37:10Z 2009-11-11T14:37:10Z I wouldn't expect a user to remember them since I would redirect from domain.com to the language specific url. http://stackoverflow.com/questions/1315844/url-format-for-internationalized-web-app/1315962#1315962 Comment by Arne Evertsson on Url format for internationalized web app? Arne Evertsson 2009-11-11T14:35:16Z 2009-11-11T14:35:16Z About number 2, wouldn't this be a strange url: <b>.../folder/page?par1=x&amp;par2=y/el</b>. Would it even work?