User landon9720 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T08:03:34Zhttp://stackoverflow.com/feeds/user/1785http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1931160/monitor-tomcat-executor0monitor tomcat executor?landon97202009-12-18T22:57:58Z2009-12-19T03:08:00Z
<p>How do I get a reference to the Tomcat Executor instances running within the web app? I need this so I can query basic information, such as thread pool size and utilization.</p>
http://stackoverflow.com/questions/1078065/most-readable-programming-language-to-simulate-10-000-chutes-and-ladders-game-pla3most readable programming language to simulate 10,000 chutes and ladders game plays?landon97202009-07-03T06:55:13Z2009-12-01T18:10:25Z
<p>I'm wondering what language would be most suitable to simulate the game Chutes and Ladders (Snakes and Ladders in some countries). I'm looking to collect basic stats, like average and standard deviation of game length (in turns), probability of winning based on turn order (who plays first, second, etc.), and anything else of interest you can think of. Specifically, I'm looking for the implementation that is most readable, maintainable, and modifiable. It also needs to be very brief.</p>
<p>If you're a grown-up and don't spend much time around young kids then you probably don't remember the game that well. I'll remind you:</p>
<ul>
<li>There are 100 squares on the board.</li>
<li>Each player takes turn spinning a random number from 1-6 (or throwing a dice).</li>
<li>The player then advances that many squares.</li>
<li>Some squares are at the base of a ladder; landing on one of these squares means the player gets to climb the ladder, advancing the player's position to a predetermined square.</li>
<li>Some squares are at the top of a slide (chute or snake); landing on one of these squares means the player must slide down, moving the player's position back to a predetermined square.</li>
<li>Whichever player gets to position 100 first is the winner.</li>
</ul>
http://stackoverflow.com/questions/1724474/joda-time-to-be-included-in-java-72Joda Time to be included in Java 7?landon97202009-11-12T18:47:32Z2009-11-13T09:15:21Z
<p>I've read rumors that Joda Time is slated to be included in Java 7, but am having trouble locating a difinitive source for this information. Will Joda Time be included in a future JDK? Please site your source.</p>
http://stackoverflow.com/questions/1127781/is-there-ever-a-good-reason-to-store-time-not-in-utc1Is there ever a good reason to store time not in UTC?landon97202009-07-14T20:21:46Z2009-11-10T00:22:14Z
<p>I am wondering if there are any good reasons to ever store time information in anything other that UTC (GMT)? I believe that this is a solid rule for all software engineering. The conversion to local time is merely a translation that happens at the UI layer for display purposes. I have also seen cases where the translatation is needed in order to implement an algorithm correctly (for handling midnight date changes, etc.).</p>
http://stackoverflow.com/questions/1651030/java-cast-collection-type-to-subtype1Java: cast collection type to subtypelandon97202009-10-30T16:50:19Z2009-10-30T17:06:58Z
<p>Suppose class <code>B</code> extends class <code>A</code>. I have a <code>List<A></code> that I happen to know <em>only</em> contains instances of <code>B</code>. Is there a way I can cast the <code>List<A></code> to a <code>List<B></code>?</p>
<p>It seems my only option is to iterate over the collection, casting one element at time, creating a new collection. This seems like an utter waste of resources given type erasure makes this completely unnecessary at run-time.</p>
http://stackoverflow.com/questions/1626901/java-enums-list-enumerated-values-from-a-class-extends-enum2Java Enums: List enumerated values from a Class<? extends Enum>landon97202009-10-26T19:38:07Z2009-10-26T20:06:46Z
<p>I've got the class object for an enum (I have a <code>Class<? extends Enum></code>) and I need to get a list of the enumerated values represented by this enum. The <code>values</code> static function has what I need, but I'm not sure how to get access to it from the class object.</p>
http://stackoverflow.com/questions/1602640/spring-set-property-of-one-bean-by-reading-the-property-of-another-bean1spring: set property of one bean by reading the property of another bean?landon97202009-10-21T18:20:32Z2009-10-21T18:45:15Z
<p>Is it possible to set the property of one bean by reading the property of another bean? For instance, suppose I had:</p>
<pre><code>class A {
void setList(List list);
}
class B {
List getList();
}
</code></pre>
<p>I would like Spring to instantiate both classes, and call A's setList method, passing in the result of calling B's getList method. The Spring configuration might look something like:</p>
<pre><code><bean id="b" class="B"/>
<bean id"a" class="A">
<property name="list" ref="b" ref-property="list"/>
</bean>
</code></pre>
<p>Alas, this made-up XML does not work.</p>
<p>Why not just inject B into A? Because I do not want to introduce the extra dependency. A is only dependent List, not on B.</p>
http://stackoverflow.com/questions/1528333/parser-combinator-how-to-terminate-repetition-on-keyword1parser combinator: how to terminate repetition on keywordlandon97202009-10-06T22:00:37Z2009-10-07T15:59:36Z
<p>I'm trying to figure out how to terminate a repetition of words using a keyword. An example:</p>
<pre><code>class CAQueryLanguage extends JavaTokenParsers {
def expression = ("START" ~ words ~ "END") ^^ { x =>
println("expression: " + x);
x
}
def words = rep(word) ^^ { x =>
println("words: " + x)
x
}
def word = """\w+""".r
}
</code></pre>
<p>When I execute</p>
<pre><code>val caql = new CAQueryLanguage
caql.parseAll(caql.expression, "START one two END")
</code></pre>
<p>It prints <code>words: List(one, two, END)</code>, indicating the <code>words</code> parser has consumed the <code>END</code> keyword in my input, leaving the expression parser unable to match. I would like <code>END</code> to not be matched by <code>words</code>, which will allow <code>expression</code> to successfully parse.</p>
http://stackoverflow.com/questions/1155678/javascript-string-newline-character0JavaScript string newline character?landon97202009-07-20T20:08:52Z2009-09-11T14:53:14Z
<p>Is <code>\n</code> the universal newline character sequence in Javascript for all platforms? If not, how do I determine the character for the current environment?</p>
<p>I'm not asking about the HTML newline element (<code><BR/></code>). I'm asking about the newline character sequence used within JavaScript strings.</p>
http://stackoverflow.com/questions/1175671/understanding-the-role-of-the-species-known-as-pm3Understanding the role of the species known as "PM"landon97202009-07-24T03:53:14Z2009-08-16T21:14:22Z
<p>As a professional programmer I work daily with a species known as the "PM". While they usually go by that common acronym, it seems there are actually several discrete varieties: product managers, project managers, and program managers. There may be other species yet undiscovered. Through years of close observation and study, the subtleties of their differentiation elude me. I have only been able to determine their common responsibly: to communicate to me, the programmer, in the vaguest possible terms, what it is they think they want built. I then tell them, in the vaguest possible terms, when I think it will be delivered, and they go away.</p>
<p>So my question for the stackoverflow crowdsourcing juggernaut is this: please explain the differences between the product managers, project managers, and program managers. Please do so with out waving your hands, as I can not see them, and it doesn't help anyway.</p>
http://stackoverflow.com/questions/1143498/javascript-difference-between-an-object-and-a-hash3Javascript: Difference between an object, and a hash?landon97202009-07-17T14:05:12Z2009-07-23T19:17:06Z
<p>In Javascript, what is the difference between an object and a hash? How do you create one vs the other, and why would you care? Is there a difference between the following code examples?</p>
<pre><code>var kid = {
name: "juni",
age: 1
}
</code></pre>
<p>And:</p>
<pre><code>var kid = new Object();
kid.name = "juni";
kid.age = 1;
</code></pre>
<p>And:</p>
<pre><code>var kid = new Object();
kid["name"] = "juni";
kid["age"] = 1;
</code></pre>
<p>Can you think of any other code example I should illustrate?</p>
<p>The <em>core question here</em> is <em>what is the difference between an object and a hash?</em></p>
http://stackoverflow.com/questions/1131495/in-xml-is-order-important2In XML, is order important?landon97202009-07-15T13:46:07Z2009-07-15T14:09:51Z
<p>Is the order that elements of a common parent appear in XML a meaningful piece of data captured by the XML document, or is order not specified as being meaningful? For example, consider the two XML documents:</p>
<pre><code><people>
<person name="sam"/>
<person name="juni"/>
</people>
</code></pre>
<p>and</p>
<pre><code><people>
<person name="juni"/>
<person name="sam"/>
</people>
</code></pre>
<p>Are these documents considered to represent <strong>identical</strong> data, or is the difference in order captured?</p>
http://stackoverflow.com/questions/596902/mongrel-vs-webrick4Mongrel vs. WEBricklandon97202009-02-27T22:21:26Z2009-07-11T17:46:29Z
<p>What is the difference between Mongrel and WEBrick?</p>
<p>Which one should I use?</p>
<p>Why does Rails ship with both?</p>
http://stackoverflow.com/questions/1107042/java-web-development-environment-to-minimize-build-deploy-test-cycle-time4Java web development environment to minimize build-deploy-test cycle time?landon97202009-07-09T23:59:39Z2009-07-10T08:48:14Z
<p>What Java web development environment is the best for absolutely minimizing the build-deploy-test cycle time?</p>
<p><strong>Web development environment:</strong> JBOSS, Tomcat, Jetty? Deploy WAR exploded? Copy WAR or use symbolic links? There are factors here I don't know about.</p>
<p><strong>Build-deploy-test cycle?</strong> The amount of time it takes to test a change in the browser after making a change to the source code or other resources (including Java source, HTML, JSP, JS, images, etc.).</p>
<p>I am looking to speed up my development by reducing the amount of time I spend watching Ant builds and J2EE containers start. I want the Ruby on Rails experience --- or as close as I can get.</p>
<p>I'd prefer a solution that is web framework agnostic, however if a particular framework is particularly advantageous, then I'd like to hear about it.</p>
<p>Assume all the standard tools are in use: Hibernate, Spring, JMS, etc. If stubbing/mocking support infrastructure is required to make this work, I'm OK with that. In fact, I'm OK with having a development environment that is very different from our production environment if it saves me enough time.</p>
http://stackoverflow.com/questions/1106101/resolving-relative-resources-in-ajax-content1Resolving relative resources in AJAX contentlandon97202009-07-09T19:52:50Z2009-07-09T20:22:26Z
<p>I'm trying to figure out how to resolve relatively referenced resources inside dynamically loaded content. For example, suppose I had the following page downloaded from <code>/index.html</code>:</p>
<pre><code><html><body>
<div id="insert-here" />
<script>
$(function(){
$("#insert-here").load("x/ajax-content.html");
});
</script>
</body></html>
</code></pre>
<p>And <code>ajax-content.html</code> contains:</p>
<pre><code><img href="foo.png"/>
</code></pre>
<p>Then <code>foo.png</code> will be downloaded from <code>/foo.png</code>, which is not what I want. I need the <code>foo.png</code> to be downloaded relative to the HTML that referenced it, so I need it downloaded from <code>/x/foo.png</code>. I'm wondering if there is a way to do this (aside from using an absolute path in <code>ajax-content.html</code>)?</p>
<p>(Why would I want to do this? I am developing an AJAX-based plug-in architecture that allows blocks of page content to be developed and deployed independent of the application.)</p>
http://stackoverflow.com/questions/1095329/scala-constructor-overload5Scala constructor overload?landon97202009-07-07T23:15:11Z2009-07-09T00:44:30Z
<p>How do you provide overloaded constructors in Scala?</p>
http://stackoverflow.com/questions/1095329/scala-constructor-overload/1095333#10953335Answer by landon9720 for Scala constructor overload?landon97202009-07-07T23:16:54Z2009-07-07T23:16:54Z<pre><code> class Foo(x: Int, y: Int) {
def this(x: Int) = this(x, 0) // default y parameter to 0
}
</code></pre>
http://stackoverflow.com/questions/1090521/the-value-of-high-level-unit-tests-and-mock-objects17The value of high level unit tests and mock objectslandon97202009-07-07T05:33:48Z2009-07-07T13:49:31Z
<p>I am beginning to believe that unit testing high level, well-written code, which requires extensive use of mock objects, has little to no value. I am wondering if this assertion is correct, or am I missing something?</p>
<p><em>What do I mean by high level?</em> These are the classes and functions near the top of the food chain. Their input and output tends to be user input, and user interface. Most of their work consists of taking user input and making a series of calls to lower-level entities. They often have little or no meaningful return values.</p>
<p><em>What do I mean by well-written?</em> In this case, I am referring to code that is decoupled from its dependencies (using interfaces and dependency injection), and line by line is at a consistent level of abstraction. There's no tricky algorithms, and few conditionals.</p>
<p>I <strong>hate</strong> writing unit tests for this kind of code. The unit tests consist almost entirely of mock object setup. Line by line, the unit test read almost like a mirror image of the implementation. In fact, I write the unit tests by looking at the implementation. "First I assert this mock method is called, then I assert this mock method is called...", etc. <strong>I should be testing the behavior of the method, not that it's calling the right sequence of methods</strong>. Another thing: I have found that these tests are <strong>extremely fragile to refactoring</strong>. If a test is so brittle it utterly shatters and must be rewritten when the code under test is refactored, then hasn't one of the major benefits of unit testing been lost?</p>
<p>I don't want this post to be flagged as argumentative, or not a question. So I'll state my question directly: What is the correct way to unit test the kind of code I have described, or is it understood that <strong>not everything needs a unit test</strong>?</p>
http://stackoverflow.com/questions/1090579/desktop-application-longevity/1090583#10905830Answer by landon9720 for Desktop Application Longevitylandon97202009-07-07T05:52:43Z2009-07-07T05:52:43Z<p>Much of .NET runs on top of Win32. It's been around a long time, and will likely be supported well into the future.</p>
http://stackoverflow.com/questions/1090556/java-how-to-convert-hashmapstring-object-to-array/1090564#10905648Answer by landon9720 for Java: how to convert HashMap<String, Object> to arraylandon97202009-07-07T05:47:14Z2009-07-07T05:47:14Z<pre><code> hashMap.keySet().toArray(); // returns an array of keys
hashMap.values().toArray(); // returns an array of values
</code></pre>
http://stackoverflow.com/questions/1088000/is-it-possible-to-hash-a-password-and-authenticate-a-user-client-side/1088052#10880521Answer by landon9720 for Is it possible to hash a password and authenticate a user client-side?landon97202009-07-06T16:54:39Z2009-07-06T16:54:39Z<p>You can implement your hashing algorithm client side (in javascript) and send only the user name and hash result over the wire. Note that in order for this to be secure <strong><em>the hash must be salted with a string provided by the server, and the string must be unique for every request</em></strong>. The sever still needs to check whether the hash is correct or not and authenticate the session.</p>
http://stackoverflow.com/questions/1088016/html-email-with-javascript/1088028#108802810Answer by landon9720 for HTML email with Javascriptlandon97202009-07-06T16:50:41Z2009-07-06T16:50:41Z<p>Do not depend on this. Any good mail client will not support executable code within an email. Any knowledgeable user will not use a client that does.</p>
http://stackoverflow.com/questions/1083080/what-are-the-java-equivalents-to-linq-and-entity-framework/1083095#10830951Answer by landon9720 for What are the Java equivalents to Linq and Entity Frameworklandon97202009-07-04T22:37:26Z2009-07-04T22:37:26Z<p>Java does not have a Linq equivalent. However Scala, a functional language that compiles to Java byte code, has something closes: an extended for loop syntax.</p>
http://stackoverflow.com/questions/1031867/what-is-best-book-for-learning-rest/1082430#10824300Answer by landon9720 for What is best book for learning rest ?landon97202009-07-04T15:38:46Z2009-07-04T15:38:46Z<ol>
<li><p>Read RESTful Web Services.</p></li>
<li><p>Depending on your needs, not using a framework, or rolling your own, might be sufficient. REST is remarkably simple and needs little infrastructure to support a robust implementation.</p></li>
</ol>
http://stackoverflow.com/questions/1082214/how-to-gain-java-web-programming-experience/1082223#10822236Answer by landon9720 for How to gain Java web programming experience?landon97202009-07-04T13:34:12Z2009-07-04T15:36:25Z<p>Perhaps you could find an open source project you are interested in contributing to. Take the time to really learn the code base and the technologies used (the web framework, Spring, Hibernate, etc.). Actually contribute fixes and features. Become strongly conversant in the project goals, design, and implementation, and your meaningful contributions to the project.</p>
http://stackoverflow.com/questions/1082397/format-date-in-hql-query/1082411#10824110Answer by landon9720 for Format date in hql querylandon97202009-07-04T15:30:00Z2009-07-04T15:30:00Z<p>The date data will be returned to your application at instances of the Date class. Using the DateFormat classes you can format the date into any format you want.</p>
<p>It's not the database's job to prepare your data for presentation.</p>
http://stackoverflow.com/questions/1081573/escaping-double-quotes-in-javascript-onclick-event-handler/1081581#10815811Answer by landon9720 for Escaping double quotes in JavaScript onClick event handlerlandon97202009-07-04T05:29:19Z2009-07-04T05:29:19Z<p>Did you try</p>
<p>\x22</p>
<p>in place of</p>
<p>\"</p>
<p>?</p>
http://stackoverflow.com/questions/1081541/how-much-a-programmer-should-know-about-system-admin/1081575#10815751Answer by landon9720 for How much a Programmer should Know about System Admin?landon97202009-07-04T05:23:12Z2009-07-04T05:23:12Z<p>Know enough that you can solve problems and get stuff done at your Software Engineering job. Don't know so much that people confuse you for a sys admin and start calling you for routine system maintenance tasks. A few suggestions on what you should know:</p>
<ul>
<li>How to log into the deployment system</li>
<li>Access logs</li>
<li>Install/restart your application on the deployment system</li>
<li>Understand your production deployment topology and be able to install an approximation on your development machine(s)</li>
<li>Install and deploy your database and other infrastructure services (such as JMS), as well as basic monitoring and troubleshooting</li>
</ul>
<p>Obviously I'm taking a web-app point of view here. Maybe others can make more general suggestions?</p>
http://stackoverflow.com/questions/1081546/what-is-the-quickest-programming-language-and-why/1081566#10815660Answer by landon9720 for What is the "Quickest" Programming Language (and why)?landon97202009-07-04T05:15:33Z2009-07-04T05:15:33Z<p>Pick a language and GUI framework you like, then master them. (The second step will take several years.)</p>
<p>Once you get there, you'll be well equipped to handle the situation described.</p>
http://stackoverflow.com/questions/1075676/scala-match-and-parse-an-integer-string3Scala: match and parse an integer string?landon97202009-07-02T17:28:21Z2009-07-02T20:29:11Z
<p>I'm looking for a way to matching a string that may contain an integer value. If so, parse it. I'd like to write code similar to the following:</p>
<pre><code> def getValue(s: String): Int = s match {
case "inf" => Integer.MAX_VALUE
case Int(x) => x
case _ => throw ...
}
</code></pre>
<p>The goal is that if the string equals "inf", return Integer.MAX_VALUE. If the string is a parsable integer, return the integer value. Otherwise throw.</p>
http://stackoverflow.com/questions/471416/how-do-you-write-a-migration-to-rename-a-model-and-its-table-in-railsComment by landon9720 on How do you write a migration to rename a Model and its table in Rails?landon97202009-11-03T23:04:04Z2009-11-03T23:04:04ZI suggested adding "ActiveRecord" to this question to improve search engine matches. I've been looking for this using "ActiveRecord rename table".http://stackoverflow.com/questions/1651030/java-cast-collection-type-to-subtypeComment by landon9720 on Java: cast collection type to subtypelandon97202009-10-30T17:52:39Z2009-10-30T17:52:39ZThank you everybody for the good answers. Casting to a List is the most appropriate solution in this case. I am willing to sacrifice type safety for performance in this case.http://stackoverflow.com/questions/1602640/spring-set-property-of-one-bean-by-reading-the-property-of-another-bean/1602749#1602749Comment by landon9720 on spring: set property of one bean by reading the property of another bean?landon97202009-10-21T20:53:15Z2009-10-21T20:53:15Zsweet, that's cool. wish i was using spring 3.http://stackoverflow.com/questions/1528333/parser-combinator-how-to-terminate-repetition-on-keyword/1528929#1528929Comment by landon9720 on parser combinator: how to terminate repetition on keywordlandon97202009-10-07T16:24:37Z2009-10-07T16:24:37ZThank you. You have used the intertubes wisely.http://stackoverflow.com/questions/86105/how-can-i-supress-the-browsers-authentication-dialogComment by landon9720 on How can I supress the browser's authentication dialog?landon97202009-09-18T19:13:47Z2009-09-18T19:13:47Zhave you found an answer to this question? i am facing the exact same issue.http://stackoverflow.com/questions/426834/can-i-suppress-the-browsers-login-prompt-on-401-response-when-using-xmlhttpreque/426989#426989Comment by landon9720 on Can I suppress the browser’s login prompt on 401 response when using XmlHttpRequest with Twitterlandon97202009-09-18T19:04:33Z2009-09-18T19:04:33Ztwitter has moved their documentation. please include the gist of the solution in the stackoverflow answer.http://stackoverflow.com/questions/361467/is-there-any-way-to-suppress-the-browsers-login-prompt-on-401-response-when-usin/361564#361564Comment by landon9720 on Is there ANY way to suppress the browser's login prompt on 401 response when using XmlHttpRequestlandon97202009-09-18T19:01:14Z2009-09-18T19:01:14Zi don't quite get it. you're doing something at the server to turn your 401s into 200s? that doesn't help if you're not using the microsoft stack or you don't have access to the server. i need a browser-only solution.http://stackoverflow.com/questions/1155678/javascript-string-newline-characterComment by landon9720 on JavaScript string newline character?landon97202009-07-20T20:41:41Z2009-07-20T20:41:41ZI have a multiline input control where the user is expected to enter a newline separated list. I need to parse the list by first splitting the string on newlines.http://stackoverflow.com/questions/1143498/javascript-difference-between-an-object-and-a-hashComment by landon9720 on Javascript: Difference between an object, and a hash?landon97202009-07-17T14:15:23Z2009-07-17T14:15:23ZPerhaps it is the Prototype Hash class that has me confused: <a href="http://www.prototypejs.org/api/hash" rel="nofollow">prototypejs.org/api/hash</a>http://stackoverflow.com/questions/1143498/javascript-difference-between-an-object-and-a-hashComment by landon9720 on Javascript: Difference between an object, and a hash?landon97202009-07-17T14:12:48Z2009-07-17T14:12:48Zgood point... but isn't Hash an actual Javascript type?http://stackoverflow.com/questions/1131495/in-xml-is-order-important/1131518#1131518Comment by landon9720 on In XML, is order important?landon97202009-07-15T13:53:13Z2009-07-15T13:53:13ZYeah I am aware that many APIs preserve the order. But I wonder if this behavior is required by the XML specification.http://stackoverflow.com/questions/1131495/in-xml-is-order-important/1131528#1131528Comment by landon9720 on In XML, is order important?landon97202009-07-15T13:52:17Z2009-07-15T13:52:17ZYeah I knew XHTML would come up. I'm not sure that's a good example, because isn't XHTML not fully XML compliant?http://stackoverflow.com/questions/1127781/is-there-ever-a-good-reason-to-store-time-not-in-utc/1127814#1127814Comment by landon9720 on Is there ever a good reason to store time not in UTC?landon97202009-07-14T20:50:58Z2009-07-14T20:50:58ZOr if the time zone can be changed. A local times would have to be updated.http://stackoverflow.com/questions/1095329/scala-constructor-overload/1096534#1096534Comment by landon9720 on Scala constructor overload?landon97202009-07-08T15:16:14Z2009-07-08T15:16:14ZAdd the code sample to your answer, and I'll mark it correct.http://stackoverflow.com/questions/1095329/scala-constructor-overload/1095333#1095333Comment by landon9720 on Scala constructor overload?landon97202009-07-07T23:21:43Z2009-07-07T23:21:43Z1. I wanted to see if SO could answer the question faster than I could look it up (no, it can't).
2. I wanted to contribute a little somethin' somethin'