User timdisney - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T22:36:04Zhttp://stackoverflow.com/feeds/user/14481http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1837754/match-multiple-cases-classes-in-scala1Match multiple cases classes in scalatimdisney2009-12-03T05:00:02Z2009-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() => "A"
case B(sb) | C(sc) => "B"
case _ => "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) => "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#12105171Answer by timdisney for Point me to some open source projects *with* (unit) tests.timdisney2009-07-31T03:12:03Z2009-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-javascript0How can I add an object property to the global object in rhino javascripttimdisney2009-07-22T04:01:29Z2009-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-mean2Subversion: what does "Target path does not exist" when merging mean?timdisney2008-10-17T15:47:17Z2009-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-rhino0Split java strings in Rhinotimdisney2009-06-24T06:21:06Z2009-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-c3What does @"some string" mean in objective-c?timdisney2009-06-06T23:53:55Z2009-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-close5In Java when does a URL connection close?timdisney2008-11-07T17:42:17Z2009-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#8304400Answer by timdisney for What is the best IntelliJ IDEA plugin?timdisney2009-05-06T16:20:59Z2009-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-groovy2How do I redirect output to stderr in groovy?timdisney2008-12-19T19:17:06Z2009-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-subversion0Single file merge in subversiontimdisney2009-03-05T21:42:24Z2009-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#5683301Answer by timdisney for How to get the get method parameters in jsp?timdisney2009-02-20T04:59:36Z2009-02-20T04:59:36Z<p>You can get it off of the request object.</p>
<pre><code>request.getParameter("<param name>");
</code></pre>
http://stackoverflow.com/questions/504337/difference-between-set-and-collection-in-hibernate1Difference between Set and Collection in hibernatetimdisney2009-02-02T18:36:06Z2009-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#4497300Answer by timdisney for Is it possible to automate the performance testing timdisney2009-01-16T07:05:53Z2009-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#4194080Answer by timdisney for What's the best practice for handling system-specific information under version control?timdisney2009-01-07T06:38:53Z2009-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-up1Wait until tomcat finishes starting uptimdisney2008-12-17T22:27:48Z2008-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-script2How do I include jars in a groovy script?timdisney2008-11-20T17:29:49Z2008-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-tag0Is it possible to get calling page name inside a jsp 2.0 custom tag?timdisney2008-11-12T19:39:15Z2008-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#2884380Answer by timdisney for Is it possible to get calling page name inside a jsp 2.0 custom tag?timdisney2008-11-13T21:42:47Z2008-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><form action="${pageContext.request.requestURI}">
</code></pre>
<p>But not this:</p>
<pre><code><form action="<%=request.requestURI%>">
</code></pre>
<p>Or this:</p>
<pre><code><form action="<%=pageContext.request.requestURI%>">
</code></pre>
http://stackoverflow.com/questions/281624/best-way-to-modularize-a-block-of-jsp-code5Best way to modularize a block of JSP codetimdisney2008-11-11T17:47:10Z2008-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><%@ include file="foo.jsp"%></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-tomcat2Is there a way to set timeouts in tomcat?timdisney2008-10-14T20:48:46Z2008-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-java1What is the best way to deal with environment specific configuration in java?timdisney2008-10-14T02:54:46Z2008-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#1256874Answer by timdisney for What are Code Smells? What is the best way to correct them?timdisney2008-09-24T06:23:22Z2008-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#1838116Comment by timdisney on Match multiple cases classes in scalatimdisney2009-12-03T07:01:21Z2009-12-03T07:01:21ZThough 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#1163008Comment by timdisney on How can I add an object property to the global object in rhino javascripttimdisney2009-07-22T04:10:12Z2009-07-22T04:10:12ZAh, 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#1163008Comment by timdisney on How can I add an object property to the global object in rhino javascripttimdisney2009-07-22T04:08:03Z2009-07-22T04:08:03ZHah! Too simple for me :) Thanks!http://stackoverflow.com/questions/616752/single-file-merge-in-subversion/616758#616758Comment by timdisney on Single file merge in subversiontimdisney2009-03-05T21:50:03Z2009-03-05T21:50:03ZAh! 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#568357Comment by timdisney on How to get the get method parameters in jsp?timdisney2009-02-20T05:11:18Z2009-02-20T05:11:18ZThe 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-hibernateComment by timdisney on Difference between Set and Collection in hibernatetimdisney2009-02-02T19:06:35Z2009-02-02T19:06:35ZI'm using hibernate annotations so I'll have
@OneToMany private Set<Foo> foo; or @OneToMany private Collection<Foo> 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#381941Comment by timdisney on How do I redirect output to stderr in groovy?timdisney2008-12-19T19:26:28Z2008-12-19T19:26:28ZYep, I was hoping for a groovyish way.http://stackoverflow.com/questions/306139/how-do-i-include-jars-in-a-groovy-scriptComment by timdisney on How do I include jars in a groovy script?timdisney2008-11-20T17:45:42Z2008-11-20T17:45:42ZLooks 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/…</a>http://stackoverflow.com/questions/306139/how-do-i-include-jars-in-a-groovy-script/306168#306168Comment by timdisney on How do I include jars in a groovy script?timdisney2008-11-20T17:43:02Z2008-11-20T17:43:02ZHeh, definitely missed the "Adding things to the classpath" 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#286199Comment by timdisney on Is it possible to get calling page name inside a jsp 2.0 custom tag?timdisney2008-11-13T16:59:32Z2008-11-13T16:59:32ZThe 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#213770Comment by timdisney on Subversion: what does "Target path does not exist" when merging mean?timdisney2008-10-17T21:21:57Z2008-10-17T21:21:57ZThat makes sense. So how can you merge in cases like this?