User timdisney - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T22:36:04Z http://stackoverflow.com/feeds/user/14481 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1837754/match-multiple-cases-classes-in-scala 1 Match multiple cases classes in scala timdisney 2009-12-03T05:00:02Z 2009-12-03T09:51:10Z <p>I'm doing matching against some case classes and would like to handle two of the cases in the same way. Something like this:</p> <pre><code>abstract class Foo case class A extends Foo case class B(s:String) extends Foo case class C(s:String) extends Foo def matcher(l: Foo): String = { l match { case A() =&gt; "A" case B(sb) | C(sc) =&gt; "B" case _ =&gt; "default" } } </code></pre> <p>But when I do this I get the error:</p> <pre><code>(fragment of test.scala):10: error: illegal variable in pattern alternative case B(sb) | C(sc) =&gt; "B" </code></pre> <p>I can get it working of I remove the parameters from the definition of B and C but how can I match with the params?</p> http://stackoverflow.com/questions/1210479/point-me-to-some-open-source-projects-with-unit-tests/1210517#1210517 1 Answer by timdisney for Point me to some open source projects *with* (unit) tests. timdisney 2009-07-31T03:12:03Z 2009-07-31T03:12:03Z <p>Looks like <a href="http://groovy.codehaus.org/" rel="nofollow">Groovy</a> has a bunch. You can see when they fail on their <a href="http://bamboo.ci.codehaus.org/browse/GRAILS" rel="nofollow">CI</a> server. </p> http://stackoverflow.com/questions/1162998/how-can-i-add-an-object-property-to-the-global-object-in-rhino-javascript 0 How can I add an object property to the global object in rhino javascript timdisney 2009-07-22T04:01:29Z 2009-07-22T04:33:01Z <p>I have some properties in an object that I would like to add to the global namespace. In javascript on the browser I could just add it to the <code>window</code> object like so:</p> <pre><code>var myObject = { foo : function() { alert("hi"); } // and many more properties }; for (property in myObject) { window[property] = myObject[property]; } // now I can just call foo() foo(); </code></pre> <p>But since rhino doesn't have the global window object I can't do that. Is there an equivalent object or some other way to accomplish this?</p> http://stackoverflow.com/questions/212713/subversion-what-does-target-path-does-not-exist-when-merging-mean 2 Subversion: what does "Target path does not exist" when merging mean? timdisney 2008-10-17T15:47:17Z 2009-07-10T00:08:58Z <p>Using subversion 1.5 I have branch B which was branched off of branch A. After doing work in both branches I go to merge changes from A into B (using <code>svn merge <a href="http://path/to/A" rel="nofollow">http://path/to/A</a></code> in the working directory of B) and get <code>svn: Target path does not exist</code>. What does this mean?</p> http://stackoverflow.com/questions/1036680/split-java-strings-in-rhino 0 Split java strings in Rhino timdisney 2009-06-24T06:21:06Z 2009-06-24T06:27:02Z <p>I'm trying to split a java string in a Rhino javascript program</p> <pre><code>var s = new java.lang.String("1 2 3"); s.split(); </code></pre> <p>which give me the error</p> <pre> js: Can't find method java.lang.String.split(). </pre> <p>The Rhino docs mentioned that all the javascript String.prototype methods (like match, split, etc.) are available on java string if they're not already provided by java.lang.String. Any ideas on what's going on here?</p> http://stackoverflow.com/questions/960838/what-does-some-string-mean-in-objective-c 3 What does @"some string" mean in objective-c? timdisney 2009-06-06T23:53:55Z 2009-06-07T08:26:58Z <p>I'm just starting out with iphone development and ran across some example code that used @"somestring"</p> <pre><code>someLabel.txt = @"string of text"; </code></pre> <p>Why does the string need the '@'? I'm guessing it's some kind of shortcut for creating an object?</p> http://stackoverflow.com/questions/272910/in-java-when-does-a-url-connection-close 5 In Java when does a URL connection close? timdisney 2008-11-07T17:42:17Z 2009-05-26T20:30:35Z <p>When does java let go of a connections to a URL? I don't see a close() method on either URL or URLConnection so does it free up the connection as soon as the request finishes? I'm mainly asking to see if I need to do any clean up in an exception handler.</p> <pre><code>try { URL url = new URL("http://foo.bar"); URLConnection conn = url.openConnection(); // use the connection } catch (Exception e) { // any clean up here? } </code></pre> http://stackoverflow.com/questions/585638/what-is-the-best-intellij-idea-plugin/830440#830440 0 Answer by timdisney for What is the best IntelliJ IDEA plugin? timdisney 2009-05-06T16:20:59Z 2009-05-06T16:20:59Z <p><a href="http://ideavim.sourceforge.net/" rel="nofollow">IdeaVIM</a> is amazing if you're a fan of vim.</p> http://stackoverflow.com/questions/381920/how-do-i-redirect-output-to-stderr-in-groovy 2 How do I redirect output to stderr in groovy? timdisney 2008-12-19T19:17:06Z 2009-03-14T21:14:44Z <p>I'm looking for a way to redirect output in a groovy script to stderr:</p> <pre><code>catch(Exception e) { println "Want this to go to stderr" } </code></pre> http://stackoverflow.com/questions/616752/single-file-merge-in-subversion 0 Single file merge in subversion timdisney 2009-03-05T21:42:24Z 2009-03-05T22:45:10Z <p>I'm using subversion 1.5 and have a single file in a branch that I want to merge into another branch. When I do a <code>svn merge <a href="http://path/to/file" rel="nofollow">http://path/to/file</a></code> I get a <code>Cannot replace a directory from with</code> error. Does this just mean that subversion can't do this?</p> http://stackoverflow.com/questions/568321/how-to-get-the-get-method-parameters-in-jsp/568330#568330 1 Answer by timdisney for How to get the get method parameters in jsp? timdisney 2009-02-20T04:59:36Z 2009-02-20T04:59:36Z <p>You can get it off of the request object.</p> <pre><code>request.getParameter("&lt;param name&gt;"); </code></pre> http://stackoverflow.com/questions/504337/difference-between-set-and-collection-in-hibernate 1 Difference between Set and Collection in hibernate timdisney 2009-02-02T18:36:06Z 2009-02-02T18:53:09Z <p>What is the difference between using a Set or a Collection for @OneToMany or @ManyToMany properties on my hibernate entity objects?</p> <p>Does Hibernate map things differently depending on which one you choose?</p> http://stackoverflow.com/questions/449708/is-it-possible-to-automate-the-performance-testing/449730#449730 0 Answer by timdisney for Is it possible to automate the performance testing timdisney 2009-01-16T07:05:53Z 2009-01-16T07:05:53Z <p>I've found <a href="http://jakarta.apache.org/jmeter/" rel="nofollow">jmeter</a> pretty useful for performance testing. It's somewhat complicated to figure out but pretty easy to put in an automated build using something like ant</p> http://stackoverflow.com/questions/419322/whats-the-best-practice-for-handling-system-specific-information-under-version-c/419408#419408 0 Answer by timdisney for What's the best practice for handling system-specific information under version control? timdisney 2009-01-07T06:38:53Z 2009-01-07T06:38:53Z <p>Sounds like your production code is a full on git repository and to update production you do a <code>git pull</code>? You might want to try a separate build process that checks the code out of your repository and creates a clean build (no .git folder). You could could have environment specific config files which contain your paths that are copied or created along with it.</p> http://stackoverflow.com/questions/376279/wait-until-tomcat-finishes-starting-up 1 Wait until tomcat finishes starting up timdisney 2008-12-17T22:27:48Z 2008-12-17T22:41:01Z <p>I have a script that needs to run after tomcat has finished starting up and is ready to start deploying applications. I'm using <code>$TOMCAT_HOME/bin/startup.sh</code> which returns immediately. How can I wait until tomcat has finished starting up?</p> http://stackoverflow.com/questions/306139/how-do-i-include-jars-in-a-groovy-script 2 How do I include jars in a groovy script? timdisney 2008-11-20T17:29:49Z 2008-12-01T19:54:07Z <p>I have a groovy script that needs a library in a jar. How do I add that to the classpath? I want the script to be executable so I'm using <code>#!/usr/bin/env groovy</code> at the top of my script. </p> http://stackoverflow.com/questions/285083/is-it-possible-to-get-calling-page-name-inside-a-jsp-2-0-custom-tag 0 Is it possible to get calling page name inside a jsp 2.0 custom tag? timdisney 2008-11-12T19:39:15Z 2008-11-14T05:45:55Z <p>I'm writing a custom JSP tag using the JSP 2 tag files. Inside my tag I would like to know which page called the tag in order to construct URLs. Is this possible with out passing it through an attribute?</p> http://stackoverflow.com/questions/285083/is-it-possible-to-get-calling-page-name-inside-a-jsp-2-0-custom-tag/288438#288438 0 Answer by timdisney for Is it possible to get calling page name inside a jsp 2.0 custom tag? timdisney 2008-11-13T21:42:47Z 2008-11-13T21:42:47Z <p>Turns out that the request object actually is available, but only in the EL portion of a tag. So this would work:</p> <pre><code>&lt;form action="${pageContext.request.requestURI}"&gt; </code></pre> <p>But not this:</p> <pre><code>&lt;form action="&lt;%=request.requestURI%&gt;"&gt; </code></pre> <p>Or this:</p> <pre><code>&lt;form action="&lt;%=pageContext.request.requestURI%&gt;"&gt; </code></pre> http://stackoverflow.com/questions/281624/best-way-to-modularize-a-block-of-jsp-code 5 Best way to modularize a block of JSP code timdisney 2008-11-11T17:47:10Z 2008-11-11T18:09:37Z <p>I have a block of JSP code that needs to be used in several places (basically a widget that several pages use). What's a good way to modularize this? I'd rather not put it in an object since string manipulation of HTML gets ugly. Using <code>&lt;%@ include file="foo.jsp"%&gt;</code> is problematic because we wind up having implicit global vars.</p> http://stackoverflow.com/questions/202740/is-there-a-way-to-set-timeouts-in-tomcat 2 Is there a way to set timeouts in tomcat? timdisney 2008-10-14T20:48:46Z 2008-10-23T16:22:20Z <p>Can I set timeouts for JSP pages in tomcat either on a per page or server level?</p> http://stackoverflow.com/questions/199869/what-is-the-best-way-to-deal-with-environment-specific-configuration-in-java 1 What is the best way to deal with environment specific configuration in java? timdisney 2008-10-14T02:54:46Z 2008-10-14T11:25:42Z <p>I have an application running in tomcat that has a bunch of configuration files that are different for each environment it runs in (dev, testing, and production). But not every line in a config file will be different between environments so there's invariably duplicated information that doesn't get updated if something changes. </p> <p>Is there a good framework/library that collapses the separate files into one with environment specific blocks? Or some other way of dealing with this?</p> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/125687#125687 4 Answer by timdisney for What are Code Smells? What is the best way to correct them? timdisney 2008-09-24T06:23:22Z 2008-09-24T06:23:22Z <p>Comments used to mark out unrelated or loosely related sections of code. Usually means that a file is trying to do too much and should be broken apart into separate files/classes.</p> <pre><code>//########### Code to do foo ########### // 500 lines of code... //########### Code to do bar ########### // another 500 lines of unrelated code... //########### Code to do baz ########### // ... </code></pre> http://stackoverflow.com/questions/1837754/match-multiple-cases-classes-in-scala/1838116#1838116 Comment by timdisney on Match multiple cases classes in scala timdisney 2009-12-03T07:01:21Z 2009-12-03T07:01:21Z Though my example doesn't show it I am needing those params. Looks like I'll just have to use an object. Thanks! http://stackoverflow.com/questions/1162998/how-can-i-add-an-object-property-to-the-global-object-in-rhino-javascript/1163008#1163008 Comment by timdisney on How can I add an object property to the global object in rhino javascript timdisney 2009-07-22T04:10:12Z 2009-07-22T04:10:12Z Ah, wait...here's my real problem. I want to do this programmaticaly. I don't actually know the names of the object properties before hand. http://stackoverflow.com/questions/1162998/how-can-i-add-an-object-property-to-the-global-object-in-rhino-javascript/1163008#1163008 Comment by timdisney on How can I add an object property to the global object in rhino javascript timdisney 2009-07-22T04:08:03Z 2009-07-22T04:08:03Z Hah! Too simple for me :) Thanks! http://stackoverflow.com/questions/616752/single-file-merge-in-subversion/616758#616758 Comment by timdisney on Single file merge in subversion timdisney 2009-03-05T21:50:03Z 2009-03-05T21:50:03Z Ah! Copy makes sense. And using copy won't cause any problems when I do a full merge of the branches later? http://stackoverflow.com/questions/568321/how-to-get-the-get-method-parameters-in-jsp/568357#568357 Comment by timdisney on How to get the get method parameters in jsp? timdisney 2009-02-20T05:11:18Z 2009-02-20T05:11:18Z The request object already exist on every jsp page so you don't have to declare it. Just use it. http://stackoverflow.com/questions/504337/difference-between-set-and-collection-in-hibernate Comment by timdisney on Difference between Set and Collection in hibernate timdisney 2009-02-02T19:06:35Z 2009-02-02T19:06:35Z I'm using hibernate annotations so I'll have @OneToMany private Set&lt;Foo&gt; foo; or @OneToMany private Collection&lt;Foo&gt; foo; Both seem to work but I'm trying to understand what if any difference there is. http://stackoverflow.com/questions/381920/how-do-i-redirect-output-to-stderr-in-groovy/381941#381941 Comment by timdisney on How do I redirect output to stderr in groovy? timdisney 2008-12-19T19:26:28Z 2008-12-19T19:26:28Z Yep, I was hoping for a groovyish way. http://stackoverflow.com/questions/306139/how-do-i-include-jars-in-a-groovy-script Comment by timdisney on How do I include jars in a groovy script? timdisney 2008-11-20T17:45:42Z 2008-11-20T17:45:42Z Looks like this was already asked: <a href="http://stackoverflow.com/questions/254385/how-do-i-auto-load-a-database-jar-in-groovy-without-using-the-cp-switch" rel="nofollow" title="how do i auto load a database jar in groovy without using the cp switch">stackoverflow.com/questions/254385/&hellip;</a> http://stackoverflow.com/questions/306139/how-do-i-include-jars-in-a-groovy-script/306168#306168 Comment by timdisney on How do I include jars in a groovy script? timdisney 2008-11-20T17:43:02Z 2008-11-20T17:43:02Z Heh, definitely missed the &quot;Adding things to the classpath&quot; section first time I read that. http://stackoverflow.com/questions/285083/is-it-possible-to-get-calling-page-name-inside-a-jsp-2-0-custom-tag/286199#286199 Comment by timdisney on Is it possible to get calling page name inside a jsp 2.0 custom tag? timdisney 2008-11-13T16:59:32Z 2008-11-13T16:59:32Z The request object would work if this was a regular JSP page but inside the tag file the request object is not available. http://stackoverflow.com/questions/212713/subversion-what-does-target-path-does-not-exist-when-merging-mean/213770#213770 Comment by timdisney on Subversion: what does "Target path does not exist" when merging mean? timdisney 2008-10-17T21:21:57Z 2008-10-17T21:21:57Z That makes sense. So how can you merge in cases like this?