User duffymo - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T06:57:13Zhttp://stackoverflow.com/feeds/user/37213http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1814421/is-there-a-use-case-for-creating-threads-without-synchronization-and-locks/1814445#18144454Answer by duffymo for Is there a use case for creating threads without synchronization and locks?duffymo2009-11-29T02:26:29Z2009-11-29T02:26:29Z<p>If there's no shared data, there's no need for synchronization or locks. </p>
http://stackoverflow.com/questions/1814329/hibernate-and-flyweight/1814349#18143490Answer by duffymo for Hibernate and Flyweightduffymo2009-11-29T01:28:21Z2009-11-29T01:28:21Z<p>If your objects implement equality by identity, Hibernate will only have the single instance associated with that primary key. I don't believe it's exactly the same idea as Flyweight, but the point is that you won't have many instances of the same Hibernate object. </p>
http://stackoverflow.com/questions/1814208/mysql-forbids-me-to-make-my-colleague-look-like-a-moron-or-how-mysql-forgets-ta/1814230#18142305Answer by duffymo for MySQL forbids me to make my colleague look like a moron - or how MySQL forgets table names in an order by statement in a select unionduffymo2009-11-29T00:13:37Z2009-11-29T00:13:37Z<p>My recommendation would to be remain professional. Anyone can make a mistake. You may live to regret making someone suffer such a public humiliation. If I were in the audience, I think it might reflect as badly on you as it does your colleague.</p>
<p>You can make a technical point without making someone suffer. I'd advise that you do so. You might make a mistake someday.</p>
http://stackoverflow.com/questions/1814163/ant-junit4-classdefnotfoundexception/1814220#18142200Answer by duffymo for Ant + JUnit4 ClassDefNotFoundExceptionduffymo2009-11-29T00:09:35Z2009-11-29T00:09:35Z<p>Try adding the JUnit 4 JAR to your Ant /lib directory.</p>
http://stackoverflow.com/questions/1813992/accessing-spring-bean-not-by-dependency-injection/1813998#18139981Answer by duffymo for Accessing Spring bean *not* by dependency injectionduffymo2009-11-28T22:41:34Z2009-11-28T22:41:34Z<p>You'd have to give them a reference to the ApplicationContext or BeanFactory so they could get the Spring-managed beans.</p>
http://stackoverflow.com/questions/1813483/averaging-angles-again/1813534#18135341Answer by duffymo for Averaging angles... Againduffymo2009-11-28T19:33:31Z2009-11-28T19:33:31Z<p>This is incorrect on every level.</p>
<p>Vectors add according to the rules of vector addition. The "intuitive, expected" answer might not be that intuitive.</p>
<p>Take the following example. If I have one unit vector (1, 0), with origin at (0,0) that points in the +x-direction and another (-1, 0) that also has its origin at (0,0) that points in the -x-direction, what should the "average" angle be?</p>
<p>If I simply add the angles and divide by two, I can argue that the "average" is either +90 or -90. Which one do you think it should be?</p>
<p>If I add the vectors according to the rules of vector addition (component by component), I get the following: </p>
<blockquote>
<p>(1, 0) + (-1, 0) = (0, 0)</p>
</blockquote>
<p>In polar coordinates, that's a vector with zero magnitude and angle zero. </p>
<p>So what should the "average" angle be? I've got three different answers here for a simple case. </p>
<p>I think the answer is that vectors don't obey the same intuition that numbers do, because they have both magnitude and direction. Maybe you should describe what problem you're solving a bit better.</p>
<p>Whatever solution you decide on, I'd advise you to base it on vectors. It'll always be correct that way.</p>
http://stackoverflow.com/questions/1813379/book-recommendations-for-christmas/1813395#18133952Answer by duffymo for Book Recommendations for Christmasduffymo2009-11-28T18:54:54Z2009-11-28T18:54:54Z<p>I give Peter Seibel's <a href="http://www.codersatwork.com/" rel="nofollow">Coders At Work</a> my highest recommendation. It's brilliant stuff.</p>
http://stackoverflow.com/questions/1813343/java-servlet-context-root/1813378#18133780Answer by duffymo for JAVA servlet context rootduffymo2009-11-28T18:50:54Z2009-11-28T18:50:54Z<blockquote>
<p>E.g. all Sun examples use a single "/catalog" or similar as the context root, but can it be
"/catalog/furniture" as well?</p>
</blockquote>
<p>In your web.xml, are you suggesting that you'd map "catalog/<em>" and "catalog/furniture/</em>" to the same servlet? What would be the point? I think the servlet engine will route both of these requests to the same servlet. </p>
<p>If you're suggesting that you've got two WAR files, one named catalog.war and another named something else, and both need to route all requests to the same servlet, either you'll have to have the .class file for that servlet in both WAR files, or the root servlet for the something else context will have to be written so it redirects all requests to the catalog.war root servlet.</p>
<p>Can you be a bit clearer as to what exactly you have in mind? I think what you'd like to accomplish is a little confusing.</p>
http://stackoverflow.com/questions/1813150/math-sqrt-5-force-exception-in-jsp/1813182#18131820Answer by duffymo for Math.sqrt(-5) -> Force Exception in JSP?duffymo2009-11-28T17:41:36Z2009-11-28T18:19:52Z<p>I would ask why you're using scriptlets in JSPs. </p>
<p>If your app really is just three pages (index.jsp and sqrtcalculator.jsp and error.jsp), then <em>maybe</em> it's justifiable. </p>
<p>But my general recommendation would be to stay away from scriptlet code in JSPs and prefer JSTL. Have those calculations done in a server-side component, using a Model-2 MVC arrangement.</p>
<p>If your app really consists of only three pages, re-architecting it to use Model-2 MVC would not be difficult to do. You might find that it's far more extensible that way. If you're unfamiliar with Model-2 MVC you can read about it <a href="http://java.sun.com/developer/technicalArticles/javaserverpages/servlets%5Fjsp/" rel="nofollow">here</a>. If you're familiar with it, this might be a self-contained problem that's small enough to let you see where it could provide some value in future projects.</p>
<p>Another thought would be to add complex numbers to your calculator, because the square root of negative numbers is indeed a valid concept. It just requires imaginary numbers. Maybe your calculator needs to be extended to maximize usefulness.</p>
http://stackoverflow.com/questions/1812990/incrementing-in-c-when-to-use-x-or-x/1813008#181300810Answer by duffymo for Incrementing in C++ - When to use x++ or ++x?duffymo2009-11-28T16:49:50Z2009-11-28T17:08:21Z<p><a href="http://www.idinews.com/peeves/prefixIncr.html" rel="nofollow">Scott Meyers</a> tells you to prefer prefix except on those occasions where logic would dictate that postfix is appropriate. </p>
<p><a href="http://rads.stackoverflow.com/amzn/click/020163371X" rel="nofollow">"More Effective C++" item #6</a> - that's sufficient authority for me.</p>
<p>For those who don't own the book, here are the pertinent quotes. From page 32:</p>
<blockquote>
<p>From your days as a C programmer, you may recall that the prefix form of the increment operator is sometimes called "increment and fetch", while the postfix form is often known as "fetch and increment." The two phrases are important to remember, because they all but act as formal specifications...</p>
</blockquote>
<p>And on page 34:</p>
<blockquote>
<p>If you're the kind who worries about efficiency, you probably broke into a sweat when you first saw the postfix increment function. That function has to create a temporary object for its return value and the implementation above also creates an explicit temporary object that has to be constructed and destructed. The prefix increment function has no such temporaries...</p>
</blockquote>
http://stackoverflow.com/questions/1812572/how-to-handle-java-jobs-synchronously/1812610#18126100Answer by duffymo for How to handle Java "jobs" synchronously?duffymo2009-11-28T14:22:23Z2009-11-28T14:22:23Z<p>Have a look at <a href="http://static.springsource.org/spring-batch/" rel="nofollow">Spring Batch</a>. I think it can help you.</p>
http://stackoverflow.com/questions/1806466/did-you-have-ego-problems-with-reading-books-of-headfirst-series/1806495#18064954Answer by duffymo for Did you have ego problems with reading books of `Headfirst` series?duffymo2009-11-27T02:27:55Z2009-11-27T02:27:55Z<p>I think Head First is a great series. Kathy Sierra is a serious person who has put a lot of thought into how to make learning more effective, and she's incorporated those findings into her books. </p>
http://stackoverflow.com/questions/1806198/detect-months-with-31-days/1806426#18064262Answer by duffymo for Detect months with 31 daysduffymo2009-11-27T01:41:01Z2009-11-27T02:24:22Z<p>I think your code will be more self-documenting if you use the static constants built into Calendar (e.g., Calendar.JANUARY, etc.)</p>
<p>If you do this often - more than once - I'd recommend writing a method named has31Days() or isReportMonth() to do the check in one place.</p>
<p>UPDATE:</p>
<p>The important thing isn't the months that have 31 days - it's the business rule that tells you something about reports for those months.</p>
<p>I might write it like this (hope I got the months with 31 days right):</p>
<pre><code>public class ReportEngine
{
public boolean isReportRequired(int month)
{
if ((month < Calendar.JANUARY) || (month > Calendar.DECEMBER))
throw new IllegalArgumentException("Invalid month: " + month);
// Reports are required for months with 31 days.
return ((month == Calendar.JANUARY) ||
(month == Calendar.MARCH) ||
(month == Calendar.MAY) ||
(month == Calendar.JULY) ||
(month == Calendar.AUGUST) ||
(month == Calendar.OCTOBER) ||
(month == Calendar.DECEMBER));
}
}
</code></pre>
http://stackoverflow.com/questions/1806437/does-using-a-framework-prevent-me-from-mastering-javascript/1806479#18064790Answer by duffymo for Does using a framework prevent me from mastering JavaScript?duffymo2009-11-27T02:17:34Z2009-11-27T02:17:34Z<p>Personally, I think that something like jQuery can raise your game as a JavaScript programmer if you look at it as an opportunity to study how John Resig thought about design and implementation.</p>
<p>His unobtrusive JavaScript style is worth emulating.</p>
<p>By all means, use jQuery. But also read it, study it, emulate it.</p>
http://stackoverflow.com/questions/1803369/using-a-returned-string-to-call-a-method/1803387#18033870Answer by duffymo for Using a returned string to call a method?duffymo2009-11-26T12:22:28Z2009-11-26T12:22:28Z<p>Or maybe polymorphism and a factory method would be a better idea. You'd have to circumscribe the methods you'll be able to call, but that wouldn't be a bad idea.</p>
<p>If you want the full Monty, and you're using Java 6, maybe you can create a JavaScript function object and invoke it with Rhino.</p>
http://stackoverflow.com/questions/1800774/how-to-optimize-activemq/1800799#18007990Answer by duffymo for How to optimize activemqduffymo2009-11-26T00:02:56Z2009-11-26T00:02:56Z<p>It could have to do with the configuration of the listener thread pool. It could be that up to a certain threshold number of requests per second the listener is able to keep up and process the incoming requests in a timely way, but above that rate it starts to fall behind. it depends on the work done for each incoming request, the incoming request rate, the memory and CPU available to each listener, and the number of listeners allocated.</p>
<p>If this is true, you should be able to watch the queue and see when the number of incoming messages start to back up. That's the point at which you need to increase the resources and number of listeners to process efficiently.</p>
http://stackoverflow.com/questions/1796199/web-xml-url-pattern-matching-question-for-tomcat/1796220#17962200Answer by duffymo for web.xml URL pattern matching question for Tomcatduffymo2009-11-25T11:07:26Z2009-11-25T11:07:26Z<p>Easily done with a GET parameter: </p>
<pre><code>http://localhost:8080/rooms?city=vancouver
</code></pre>
http://stackoverflow.com/questions/1796100/what-is-faster-many-ifs-or-else-if/1796139#179613911Answer by duffymo for what is faster many ifs or else ifduffymo2009-11-25T10:52:10Z2009-11-25T11:05:30Z<p>I doubt that a micro optimization like this will make a measurable difference in your code.</p>
<p>Your sorting algorithm is more likely to be the source of a performance problem. Which sorting algorithm you choose will be critical, not many "ifs" versus "else if".</p>
<p>UPDATE: </p>
<p>The points made by others about "else if" being a better choice, due to its early exit and exclusive logic characteristics, suggest that it should be preferred over "if" in this case.</p>
<p>But the point about algorithm choice still stands - unless your data set is very small.</p>
<p>It's obvious that O(log n) would be better than O(n^2), but size of dataset matters as well. If you have only a few elements, you might not notice the difference. In that case, coding an inefficient method in the cleanest, most readable, most easily understandable at a glance could be your best bet.</p>
http://stackoverflow.com/questions/1794597/effective-java-for-c/1796186#17961861Answer by duffymo for Effective Java for C#duffymo2009-11-25T11:00:42Z2009-11-25T11:00:42Z<p>It's amazing to see how many people get to write books in the same vein as Scott Meyers' "Effective C++" and "More Effective C++". Here's an algorithm for becoming a published author: </p>
<ol>
<li>Learn new language X.</li>
<li>Publish "Effective X" and "More Effective X".</li>
<li>Bank tsunami of currency that rolls in.</li>
</ol>
<p>"Effective Haskell", anyone?</p>
<p>I don't mean this to denigrate anyone who does this. It's more of an homage to Scott Meyers - as good a computer scientist and writer as there is.</p>
http://stackoverflow.com/questions/1795547/should-i-use-acls-if-i-want-to-limit-access-to-files-on-a-per-group-basis-if-so/1796143#17961430Answer by duffymo for Should I use ACLs if I want to limit access to files on a per-group basis? If so - what's a good Java library?duffymo2009-11-25T10:53:49Z2009-11-25T10:53:49Z<p>See if <a href="http://static.springsource.org/spring-security/site/" rel="nofollow">Spring Security</a> can help you.</p>
http://stackoverflow.com/questions/1795992/overriding-the-jsp-servlet-filter-jsp-to-wrap-in-an-authentication-model/1796119#17961192Answer by duffymo for Overriding the JSP servlet (filter "*.jsp") to wrap in an authentication modelduffymo2009-11-25T10:48:31Z2009-11-25T10:48:31Z<p>If basic auth isn't sufficient, maybe <a href="http://static.springsource.org/spring-security/site/" rel="nofollow">Spring Security</a> would be better. It's a natural, especially if you're already using Spring. One big advantage is that it's declarative, so you can easily protect URLs just by adding them to security configuration. </p>
<p>Doing this via inheritance would be brittle and require code changes every time you modified your security. Best to have security as a cross-cutting concern.</p>
http://stackoverflow.com/questions/1795997/generate-math-equations-on-windows/1796107#17961070Answer by duffymo for generate math equations on windowsduffymo2009-11-25T10:46:48Z2009-11-25T10:46:48Z<p>You can use <a href="http://www.math.union.edu/~dpvc/jsMath/" rel="nofollow">jsMath</a>, a JavaScript library that uses TeX.</p>
http://stackoverflow.com/questions/1794232/big-tables-and-analysis-in-mysql/1794309#17943090Answer by duffymo for Big tables and analysis in MySqlduffymo2009-11-25T02:33:53Z2009-11-25T02:33:53Z<p>Try running 'EXPLAIN PLAN' on your query and look to see if there are any table scans. </p>
<p>Should this be a LEFT JOIN? </p>
<p>Maybe <a href="http://www.mysqlperformanceblog.com/" rel="nofollow">this site</a> can help.</p>
http://stackoverflow.com/questions/1794274/business-objects-containers-or-functional/1794291#17942913Answer by duffymo for Business Objects - Containers or functional?duffymo2009-11-25T02:28:00Z2009-11-25T02:28:00Z<p>Objects are state and behavior together. If an object has sensible behavior (e.g., calculating age for a Person from their birth date, or a total tax for an Invoice), by all means add it. Business objects that are nothing more than DTOs are termed an "anemic domain model." I don't think it's a design requirement.</p>
<p>Persistence is a special kind of behavior. What I'm calling "sensible" is business behavior. A business object need not know that it's persistent. I'd say that a DAO can keep persistence separate from business behavior. I don't put "save" in the "sensible" category.</p>
http://stackoverflow.com/questions/1794192/newtons-third-law-two-bodies/1794225#17942253Answer by duffymo for Newton's Third law, two bodiesduffymo2009-11-25T02:07:27Z2009-11-25T02:07:27Z<p>Yes, the law still holds even if one of the bodies is not a solid wall. I'm not sure how that answer increases your understanding.</p>
<p>Your particular case of two cars moving towards each other and colliding head on also need to apply laws of conservation of momentum and energy as well. </p>
<p>Before the cars collide, each will have their own momentum, which is a vector quantity.</p>
<p>After they hit, you'll have to make some assumptions about what happens (e.g., if they stick together, the motion of the center of mass for each, etc.) </p>
<p>Like all models, the complexity increases depending on what you assume and what features you decide are important.</p>
<p>For example, if you're an engineer studying the way the cabin crumples on impact, you'll want to include the large deformation, large strain effects of the body, plastic deformation of the metal, etc.</p>
<p>If you just want to know how the combined cars move after they hit, you can treat both as a rigid body and just apply conservation of momentum to see where the center of mass ends up.</p>
<p>It's not a simple question.</p>
http://stackoverflow.com/questions/1242412/how-to-balance-dry-principle-with-minimizing-dependencies4How to balance DRY principle with minimizing dependencies?duffymo2009-08-07T01:19:40Z2009-11-24T18:50:44Z
<p>I'm having a problem with the DRY principle (Don't Repeat Yourself) and minimizing dependencies that revolves around Rete rules engines.</p>
<p>Rules engines in large IT organizations tend to be Enterprise (note the capital "E" - that's serious business). All rules must be expressed once, nice and DRY, and centralized in an expensive rules engine. A group maintains the rules engine and are the keepers of the rules sets.</p>
<p>When that IT organization is part of an American insurance company, there tend to be lots of rules. There are rules that apply to all states and products, but each state tends to evolve its own laws for different products, so the rules need to reflect these quirks. The categories are many: actuarial, underwriting, even for ordering credit and motor vehicle reports from 3rd party bureaus. </p>
<p>The problem that I have from a design standpoint is that centralizing rules and processing is certainly nice and DRY, but there are costs: </p>
<ol>
<li>Additional network hops to access the centrally located rules service and return results; </li>
<li>Additional complexity if the rules engine is exposed as a SOAP web service - consumers have to package up SOAP requests and OXM the response back to their own domain;</li>
<li>Additional interfaces between the enterprise group that maintains the rules engine, the business that sets and maintains the rules, and the developers that consume them;</li>
<li>Additional complexity - sometimes a data-driven solution might be enough.</li>
<li>Additional dependencies - components who don't have control of their own rules have to worry about external dependencies on the rules engine for testing, deployment, releases, etc.</li>
</ol>
<p>These problems crop up with lots of other Enterprise technologies (e.g., B2B gateways, ESBs, etc.)</p>
<p>The same Enterprise groups also tout SOA as a foundational principle. But my understanding of proper service design is that they should tile the business space and be idempotent, independent, and isolated. How can a service be independent and isolated if its rules are maintained somewhere else?</p>
<p>I'd like to err on the side of simplicity, arguing that eliminating dependencies should take precedence over centralization if the rules can be shown to apply only in isolated circumstances. I'm not sure the argument will win the day.</p>
<p>So my questions are:</p>
<ol>
<li>Where do you fall on the centralization versus independence argument? </li>
<li>What's your experience with Enterprise tools like rules engines? </li>
<li>How can I make the argument for isolation stronger?</li>
<li>If my view is incorrect, what argument would you make in favor of centralization? </li>
</ol>
http://stackoverflow.com/questions/1784786/mathml-and-java/1789311#17893110Answer by duffymo for MathML and Javaduffymo2009-11-24T10:56:47Z2009-11-24T10:56:47Z<p>It depends on having a browser that will render MathML, of course.</p>
<p>An alternative would be to try <a href="http://www.math.union.edu/~dpvc/jsMath/" rel="nofollow">jsMath</a>, a JavaScript library that uses TeX to render equations. </p>
http://stackoverflow.com/questions/1780677/get-list-of-all-table-names-from-spring-simplejdbctemplate/1780712#17807121Answer by duffymo for Get list of all table names from spring SimpleJdbcTemplateduffymo2009-11-23T01:37:31Z2009-11-23T01:37:31Z<p>You're always free to get java.sql.DatabaseMetaData using the Connection. There aren't any methods in SimpleJdbcTemplate to help you, but frankly there's no need. Just follow <a href="http://www.exampledepot.com/egs/java.sql/GetTables.html" rel="nofollow">this recipe</a>. </p>
http://stackoverflow.com/questions/1780259/new-browser-window-with-information-generated-by-java-applet/1780287#17802871Answer by duffymo for New browser window with information generated by Java appletduffymo2009-11-22T22:40:01Z2009-11-22T22:40:01Z<blockquote>
<p>Preferred way is to use javascript if needed, but not involving some server side handling.</p>
</blockquote>
<p>If you really must not have any server side interaction, it'll have to be a jQuery hide/show situation.</p>
<p>If you can bear some server side work, do it with an applet collaborating with servlet. The applet won't do the calculation; the servlet will. After it's complete, the servlet adds the result to the output page and redirects the output stream to it.</p>
http://stackoverflow.com/questions/1779169/spring-vs-ejb-can-spring-replace-ejb/1779306#17793064Answer by duffymo for Spring vs EJB. Can Spring replace EJB?duffymo2009-11-22T17:13:33Z2009-11-22T17:13:33Z<p>Spring was developed as an alternative to EJB right from its inception, so the answer is of course you can use Spring in place of EJBs.</p>
<p>If there's an "advantage" to using EJBs, I'd say that it would depend on the skills of your team. If you have no Spring expertise, and lots of EJB experience, then maybe sticking with EJB 3.0 is a good move.</p>
<p>App servers written to support the EJB standard can, in theory, be ported from one compliant Java EE app server to another. But that means staying away from any and all vendor-specific extensions that lock you in to one vendor.</p>
<p>Spring ports easily between app servers (e.g., WebLogic, Tomcat, JBOSS, etc.) because it doesn't depend on them.</p>
<p>However, you are locked into Spring.</p>
<p>Spring encourages good OO design practices (e.g., interfaces, layers, separation of concerns) that benefit any problem they touch, even if you decide to switch to Guice or another DI framework. </p>
http://stackoverflow.com/questions/1814208/mysql-forbids-me-to-make-my-colleague-look-like-a-moron-or-how-mysql-forgets-ta/1814230#1814230Comment by duffymo on MySQL forbids me to make my colleague look like a moron - or how MySQL forgets table names in an order by statement in a select unionduffymo2009-11-29T02:24:34Z2009-11-29T02:24:34ZYour call, then. I'm not sure why you came here then if you're so certain that this is the correct and moral course. Is approval so crucial to you? You live with the consequences, good or ill.http://stackoverflow.com/questions/1814208/mysql-forbids-me-to-make-my-colleague-look-like-a-moron-or-how-mysql-forgets-ta/1814277#1814277Comment by duffymo on MySQL forbids me to make my colleague look like a moron - or how MySQL forgets table names in an order by statement in a select unionduffymo2009-11-29T00:43:48Z2009-11-29T00:43:48Z+1 just for that last paragraph. That's exactly right, in my opinion.http://stackoverflow.com/questions/1813992/accessing-spring-bean-not-by-dependency-injection/1813998#1813998Comment by duffymo on Accessing Spring bean *not* by dependency injectionduffymo2009-11-28T23:21:50Z2009-11-28T23:21:50ZI'd recommend looking at WebApplicationContextUtils: <a href="http://static.springsource.org/spring/docs/3.0.0.RC1/javadoc-api/" rel="nofollow">static.springsource.org/spring/docs/…</a>. I think it's more common to let Spring manage the beans. Only local beans inside a method call context would be created using "new".
http://stackoverflow.com/questions/1813483/averaging-angles-again/1813534#1813534Comment by duffymo on Averaging angles... Againduffymo2009-11-28T21:57:22Z2009-11-28T21:57:22Z"pathological"? I don't see why that answer isn't defined. If I take a vector view of things it most certainly is defined. What's your basis for saying this, besides "I said so"? A mathematical citation would be helpful.
http://stackoverflow.com/questions/1813483/averaging-angles-again/1813534#1813534Comment by duffymo on Averaging angles... Againduffymo2009-11-28T21:54:27Z2009-11-28T21:54:27ZWhat is definition about besides correctness? Gotta take the mod nature into account. I'd also advise a 0 to 360 or 0 to 2&pi; scale if you must go this way.http://stackoverflow.com/questions/1813313/string-array-in-java/1813337#1813337Comment by duffymo on string array in javaduffymo2009-11-28T21:52:41Z2009-11-28T21:52:41ZTrue enough. Good points, both.http://stackoverflow.com/questions/1813483/averaging-angles-again/1813534#1813534Comment by duffymo on Averaging angles... Againduffymo2009-11-28T19:41:48Z2009-11-28T19:41:48ZI say the only thing that makes sense is vector arithmetic, not dealing directly with angles at all. Do you agree? http://stackoverflow.com/questions/1813343/java-servlet-context-root/1813378#1813378Comment by duffymo on JAVA servlet context rootduffymo2009-11-28T19:05:26Z2009-11-28T19:05:26ZAgreed, "/catalog" would be the default context if you have a catalog.war deployed. It seems like "catalog/furniture" would be redundant. It's almost as if the OP wants to have different categories in a catalog ("catalog/furniture" would be routed to the furniture.jsp, etc.)
http://stackoverflow.com/questions/1813379/book-recommendations-for-christmas/1813396#1813396Comment by duffymo on Book Recommendations for Christmasduffymo2009-11-28T18:55:30Z2009-11-28T18:55:30Z+1 - great answer.http://stackoverflow.com/questions/1813150/math-sqrt-5-force-exception-in-jsp/1813182#1813182Comment by duffymo on Math.sqrt(-5) -> Force Exception in JSP?duffymo2009-11-28T18:35:09Z2009-11-28T18:35:09ZAnd to you as well.http://stackoverflow.com/questions/1813150/math-sqrt-5-force-exception-in-jsp/1813182#1813182Comment by duffymo on Math.sqrt(-5) -> Force Exception in JSP?duffymo2009-11-28T18:28:38Z2009-11-28T18:28:38ZIf you re-read my "inference", you'll see that at no time did I question your use of iptables. It's a generic comment, not about your specific choice of technology.
http://stackoverflow.com/questions/1813150/math-sqrt-5-force-exception-in-jsp/1813182#1813182Comment by duffymo on Math.sqrt(-5) -> Force Exception in JSP?duffymo2009-11-28T18:27:12Z2009-11-28T18:27:12ZClearly, but that's not what I was saying. My point had nothing to do with iptables and everything to do with getting five people telling me the same thing. None of this is personal - you seem to be the one that is making it so. At no time did I use any words like "How on Earth is this helpful?", and I only see the word "ass" in your most recent answer. I'm handling your criticism just fine, thanks.http://stackoverflow.com/questions/1813150/math-sqrt-5-force-exception-in-jsp/1813182#1813182Comment by duffymo on Math.sqrt(-5) -> Force Exception in JSP?duffymo2009-11-28T18:13:42Z2009-11-28T18:13:42ZI tend not to be tough on things that I don't know well. If I have five people telling me that my approach was less than optimal, I might start questioning myself instead of worrying about being "wrong". In any case, we're all looking forward to taking instruction from you. http://stackoverflow.com/questions/1813150/math-sqrt-5-force-exception-in-jsp/1813182#1813182Comment by duffymo on Math.sqrt(-5) -> Force Exception in JSP?duffymo2009-11-28T17:54:35Z2009-11-28T17:54:35ZHey, sometimes it might be just the thing that someone needs to hear. There was nothing in the original question to suggest that the questioner even knew what a complex number was. And scriptlets? Please. By your own admission, you haven't written much Java or JSPs. Why are you being so tough on advice in an area that you don't have much expertise in?
http://stackoverflow.com/questions/1813150/math-sqrt-5-force-exception-in-jsp/1813182#1813182Comment by duffymo on Math.sqrt(-5) -> Force Exception in JSP?duffymo2009-11-28T17:49:15Z2009-11-28T17:49:15ZI don't think the answers given here always have to be narrowly focused on the person who asks the question. If somebody doesn't appreciate that scriptlet code is 1998 style of doing things, or that complex numbers are indeed useful, it's worth having it pointed out. It's not about my preference, because I honestly don't care how this person decides to approach it. It's about educating someone about another possibility, that's all.