User matt b - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T00:46:08Z http://stackoverflow.com/feeds/user/4249 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1801391/what-is-the-best-algorithm-for-checking-if-a-number-is-prime/1801404#1801404 1 Answer by matt b for What is the best algorithm for checking if a number is prime? matt b 2009-11-26T03:36:25Z 2009-11-26T03:36:25Z <p>According to wikipedia, <a href="http://en.wikipedia.org/wiki/Sieve%5Fof%5FEratosthenes" rel="nofollow">the Sieve of Eratosthenes</a> has <a href="http://en.wikipedia.org/wiki/Sieve%5Fof%5FEratosthenes#Algorithm%5Fcomplexity%5Fand%5Fimplementation" rel="nofollow">complexity <code>O(n * (log n) * (log log n))</code> and requires <code>O(n)</code> memory</a> - so it's a pretty good place to start if you aren't testing for especially large numbers.</p> http://stackoverflow.com/questions/1787390/how-to-pass-dummy-jquery-object-to-javascript-function/1787404#1787404 1 Answer by matt b for How to Pass Dummy jQuery Object to Javascript function matt b 2009-11-24T02:26:36Z 2009-11-24T02:26:36Z <p>In JavaScript it's fine to call a function with less arguments then it declares - but you have an error because your code in the function <em>always</em> attempts to access <code>$item</code>.</p> <p>If you rewrite the function so that you only access <code>$item</code> when you need to use it, you should be able to avoid these errors.</p> <pre><code>function handleNotes(command, $item) { var $textArea = $('#textarea_' + currentDialog); // currentDialog = global var var $notesDiv; if (command == "show" || command == "hide") { $notesDiv = $('#' + $item.attr('id') + "_notes"); } switch (command) { // ... } } </code></pre> http://stackoverflow.com/questions/1786481/java-detect-no-other-threads-are-in-an-object/1786521#1786521 0 Answer by matt b for java detect no other threads are in an object matt b 2009-11-23T22:30:37Z 2009-11-23T22:43:18Z <p>First of all, don't busy wait (spin on <code>while (counter != 0)</code>) since this will just eat up CPU cycles.</p> <p>If your requirement is that no threads can call <code>logout()</code> until all threads are done using <code>Foo</code>, then you might consider adding <code>checkout()</code> and <code>done()</code> methods so that the threads can notify your <code>Foo</code> object when they are beginning to work on <code>Foo</code> and when they are complete. Then, you can have <code>logout()</code> check to make sure that no threads have "checked out" Foo and not yet completed their work. This is a shaky design though.</p> <p>But if your requirement is just that only one thread can call <code>logout()</code> (either one at a time or one thread can ever call it), then use the <code>synchronized</code> keyword.</p> http://stackoverflow.com/questions/1781349/how-to-calculate-first-n-prime-numbers/1781374#1781374 0 Answer by matt b for How to calculate first n prime numbers? matt b 2009-11-23T06:10:42Z 2009-11-23T06:10:42Z <p>Well, what happens when n is 0 or 1?</p> <p>You have</p> <pre><code>i = 2 while i &lt; n: #is 2 less than 0 (or 1?) ... return True </code></pre> <p>If you want n of 0 or 1 to return <code>False</code>, then doesn't this suggest that you need to modify your conditional (or function itself) to account for these cases?</p> http://stackoverflow.com/questions/1781118/hibernate-ehcache-only-finding-1-element-of-a-collection/1781277#1781277 1 Answer by matt b for hibernate ehcache only finding 1 element of a collection matt b 2009-11-23T05:35:56Z 2009-11-23T05:35:56Z <p>Does your Child class <a href="https://www.hibernate.org/109.html" rel="nofollow">implement hashcode() and equals() correctly</a>? Could it be possible that Hibernate is seeing multiple Child classes that are attached to the same Parent as equivalent and thus only persisting one of them?</p> http://stackoverflow.com/questions/1768494/help-me-understand-this-pointer-vs-value-issue/1768511#1768511 2 Answer by matt b for Help me understand this pointer vs. value issue matt b 2009-11-20T05:27:04Z 2009-11-20T05:27:04Z <p>You only ever have a single instance of <code>parseable</code> in the code you posted. When you call <code>add(parseable)</code> you are adding a reference ("pointer" isn't really correct in Java) to <code>parseable</code> in your list. </p> <p>By calling it repeatedly, without changing what object <code>parseable</code> refers to, you are simply adding more references to the <em>same object</em> to your list.</p> <p>New objects are only ever created by the <code>new</code> keyword.</p> http://stackoverflow.com/questions/1763863/delete-hibernate-entity-without-attempting-to-delete-association-table-view-e/1763877#1763877 0 Answer by matt b for delete hibernate entity without (attempting to) delete association table (view) entry matt b 2009-11-19T14:59:29Z 2009-11-19T14:59:29Z <p>It sounds like you might be using the "link table" design incorrectly, if you want to model this as a ManyToMany relationship. You might want to look at breaking the extra items stored in this table into a separate table or storage. </p> http://stackoverflow.com/questions/1763370/easymock-partially-mocking-easymock-classextension-good-or-bad/1763647#1763647 0 Answer by matt b for Easymock partially mocking (EasyMock ClassExtension), good or bad? matt b 2009-11-19T14:26:06Z 2009-11-19T14:26:06Z <p>I personally am not a fan of partial mocks because it means that your test of <code>ClassA</code> then depends in some part on the behavior of <code>ClassB</code> - and the point of mocking is to be able to test <code>ClassA</code> independent of any implementation details of any of it's colloborators.</p> <p>I'm confused on what you mean by "you only want to mock a few methods". What version of EasyMock are you using? Typically you only need to supply expectations and return values for the methods that will actually be called. Or do you mean that you are writing stub versions of these classes?</p> <p>If you are concerned that your colloborator "has multiple concerns into one", you could always try to break up it's interface into several different interfaces - and the implementation class can just implement all of them. This way, you can supply different mocks in your unit test (one per interface), even if your implementation is still just a single class.</p> http://stackoverflow.com/questions/1760420/java-queue-merge-beginner/1760531#1760531 2 Answer by matt b for Java Queue Merge, Beginner matt b 2009-11-19T02:32:06Z 2009-11-19T14:13:30Z <p>You have what appears to be a bug here:</p> <pre><code>Queue new1 = new Queue(); new1.enqueu(1); new1.enqueu(3); new1.enqueu(5); Queue new2 = new Queue(); new1.enqueu(2); new1.enqueu(4); new1.enqueu(6); </code></pre> <p>You've added six elements to <code>new1</code> and zero to <code>new2</code>.</p> <p>Since your <code>merge</code> method is an instance method of the <code>Queue</code> class, you need to call it on an instance of Queue, such as</p> <pre><code>Queue q = new Queue(); Queue merged = q.merge(new1, new2); </code></pre> <p>However since merge appears to have no side-effects and does not alter any state of the Queue instance, you probably want to just make this method static so that it belongs to the Queue <em>class</em> and not an instance of Queue. For example:</p> <pre><code>static Queue merge(Queue q1, Queue q2) { ... } //in main()... Queue merged = Queue.merge(new1, new2); </code></pre> http://stackoverflow.com/questions/1760533/javascript-calender-to-accept-future-date-only/1760540#1760540 3 Answer by matt b for javascript calender to accept future date only matt b 2009-11-19T02:34:08Z 2009-11-19T02:34:08Z <p><a href="http://jqueryui.com/demos/datepicker/" rel="nofollow">http://jqueryui.com/demos/datepicker/</a></p> http://stackoverflow.com/questions/1755534/overriding-log4j-settings-at-deploy-time/1755570#1755570 2 Answer by matt b for Overriding log4j settings at deploy time matt b 2009-11-18T12:09:50Z 2009-11-18T12:09:50Z <p>Set the environment variable <code>log4j.configuration</code> to point to an external file. This way if you re-deploy, the external file is no touched or changed and therefore your configuration is not lost.</p> <p>For reference, see the <a href="http://logging.apache.org/log4j/1.2/manual.html#defaultInit" rel="nofollow">Default Initialization Procedure section</a> in the <a href="http://logging.apache.org/log4j/1.2/manual.html" rel="nofollow">log4j manual</a>.</p> http://stackoverflow.com/questions/1753615/reading-a-pdf-document-with-itext-not-working-sometimes/1753701#1753701 1 Answer by matt b for Reading a PDF document with iText not working sometimes matt b 2009-11-18T04:47:05Z 2009-11-18T04:47:05Z <p>Most Java classes/libraries expect that a method like <code>getTextFromPage(int)</code> are indexed starting at 0 - meaning that <code>getTextFromPage(0)</code> should return the text from page 1, <code>getTextFromPage(1)</code> should return the text from page 2.</p> <p>Your for loop that causes the ArrayIndexOutOfBoundsException is indexed starting with 1.</p> <p>Are you sure that iText's <code>getTextFromPage(int)</code> is indexed starting at 1 rather than the (almost) standard 0?</p> http://stackoverflow.com/questions/1751495/why-do-errors-no-longer-appear-in-eclipses-package-explorer/1751538#1751538 3 Answer by matt b for Why do errors no longer appear in Eclipse's package explorer? matt b 2009-11-17T20:27:49Z 2009-11-17T20:27:49Z <p>Did you uncheck <code>Build Automatically</code>?</p> http://stackoverflow.com/questions/1736626/how-can-be-2-1-99999/1736634#1736634 -3 Answer by matt b for How can be 2 = 1.99999....? matt b 2009-11-15T05:03:49Z 2009-11-15T05:03:49Z <p>Because <code>10 * 1.999...</code> - <code>1.999...</code> is not 18.</p> http://stackoverflow.com/questions/1727220/should-i-learn-the-google-closure-javascript-framework-or-is-it-just-a-passing/1727247#1727247 1 Answer by matt b for Should I learn the Google Closure JavaScript framework, or is it just a passing (albeit Google branded) framework? matt b 2009-11-13T05:11:47Z 2009-11-13T05:11:47Z <p>The library was released on 11/5 - a week ago from today.</p> <p>This is not enough time for anyone to make a judgment on adoption, ease of use, etc. No one can answer your question because no one knows the answer yet.</p> http://stackoverflow.com/questions/1726780/visualvm-memory-leak/1726834#1726834 1 Answer by matt b for visualVM memory leak matt b 2009-11-13T02:54:02Z 2009-11-13T02:54:02Z <p>You might find <a href="http://java.sun.com/docs/books/performance/1st%5Fedition/html/JPAppGC.fm.html" rel="nofollow">this Sun book/chapter on Garbage Collection</a> useful, in particular <a href="http://java.sun.com/docs/books/performance/1st%5Fedition/html/JPAppGC.fm.html#997428" rel="nofollow">this section</a> which lists GC root as:</p> <blockquote> <ul> <li>Temporary variables on the stack (of any thread)</li> <li>Static variables (from any class) </li> <li>Special references from JNI native code</li> </ul> </blockquote> <p>In other words, GC roots are variables that can keep another object from being GCed by virtue of the root holding a reference to it.</p> http://stackoverflow.com/questions/1724847/what-is-the-jdbc-equivalent-to-query-an-ibm-domino-data-store/1724891#1724891 5 Answer by matt b for What is the JDBC equivalent to query an IBM Domino data store? matt b 2009-11-12T19:47:38Z 2009-11-12T19:47:38Z <p>Searching Google for "java lotus notes jdbc" yields <a href="http://www-01.ibm.com/support/docview.wss?uid=swg21305841" rel="nofollow">this note from IBM</a>:</p> <blockquote> <p><strong>Question</strong><br> Is Lotus® Domino® Driver for JDBC (LDDJ) supported on current versions of IBM® Lotus Notes® and Lotus Domino? </p> <p><strong>Answer</strong><br> IBM no longer provides a Notes JDBC driver since Java developers may utilize the Notes.jar to make API calls into Notes databases. The Notes JDBC driver is no longer provided nor supported. </p> </blockquote> http://stackoverflow.com/questions/1721381/contextloaderlistener-problem-while-spring-is-loading-up/1721810#1721810 1 Answer by matt b for ContextLoaderListener problem while spring is loading up matt b 2009-11-12T12:22:01Z 2009-11-12T14:51:59Z <p>You've actually configured two different Spring bootstrap loaders - ContextConfigListener will attempt to load a context file (whose name defaults to <code>applicationContext.xml</code>), and then DispatcherServlet will be started second and attempt to load your <code>/WEB-INF/web-spring-context.xml</code> (DispatcherServlet will load this context as a child of the first).</p> <p>If you don't need two contexts to load (or to have a parent and child context), you can remove the ContextConfigListener and only use DispatcherServlet.</p> <p><strong>update</strong>: What version of Spring are you using? The line numbers in your stacktrace do not match up with the source of org.springframework.web.context.ContextLoader that I have for Spring 2.5.6. Are you sure you are using the same version of spring-core and spring-webmvc?</p> http://stackoverflow.com/questions/1717570/clear-methods-in-java/1717630#1717630 1 Answer by matt b for clear() methods in Java matt b 2009-11-11T19:52:00Z 2009-11-11T19:52:00Z <p>When it doubt, you can just take a look at the source code - it is bundled with the JDK (usually in a file named <code>rt.zip</code>).</p> <pre><code>public void clear() { removeAllElements(); } public synchronized void removeAllElements() { modCount++; // Let gc do its work for (int i = 0; i &lt; elementCount; i++) elementData[i] = null; elementCount = 0; } </code></pre> <p>The "Let gc do its work" comment is from the actual source, not mine.</p> http://stackoverflow.com/questions/1717018/spring-formbackingobject-business-object-creation-and-factories/1717400#1717400 1 Answer by matt b for Spring formBackingObject, Business Object Creation, and Factories matt b 2009-11-11T19:10:01Z 2009-11-11T19:10:01Z <p>Use a command object (a dead simple POJO) to represent the user's input to your controller. Then you can use the validation built-in to Spring MVC to make sure that all of the required fields are supplied in the command object. If the command passes validation, then you can map it to a your "Business Object" programatically (or using a bean mapping library like <a href="http://dozer.sourceforge.net/" rel="nofollow">Dozer</a>).</p> <p>This way you can handle validation, incomplete user submissions, etc., without touching or modifying any existing business logic / rules / service classes. This allows you to keep the web layer separate from these existing layers.</p> <p>For reference, see <a href="http://static.springsource.org/docs/Spring-MVC-step-by-step/" rel="nofollow">the MVC tutorial</a>, which touches on validation and command objects in <a href="http://static.springsource.org/docs/Spring-MVC-step-by-step/part4.html" rel="nofollow">Part 4</a>.</p> http://stackoverflow.com/questions/1716102/multi-module-projects-in-subversion-vs-eclipse/1716178#1716178 1 Answer by matt b for Multi-module projects in Subversion vs. Eclipse matt b 2009-11-11T16:03:53Z 2009-11-11T16:09:10Z <p>No. Eclipse thinks in terms of projects, so if you have each module as a project in Eclipse, then Eclipse will think to only synchronize at this folder in SVN.</p> <p>You could check out from <code>trunk</code> as a new project in Eclipse, and then synchronize this "trunk" project if you would like, although personally I would use an external tool such as TortoiseSVN (or svn from the command line) to prevent any sort of odd conflicts within Eclipse.</p> http://stackoverflow.com/questions/1707802/dependency-injection-how-to-maintain-multiple-configurations/1708402#1708402 0 Answer by matt b for Dependency Injection: How to maintain multiple configurations? matt b 2009-11-10T14:34:16Z 2009-11-10T14:34:16Z <p>We have this same exact use case for one of our products.</p> <p>We've created different sets of applicationContext files for each set of configurations. Our context files are already split into four different files (<code>-servlet.xml</code>, <code>-services.xml</code>, <code>-dao.xml</code>, etc.), and each file in the same "configuration suite" shares the same prefix in it's filename.</p> <p>In this product we are using Ant to build the deployment files (.war). We set up our <code>build.xml</code> so we can pass in a different parameter to the build script to control which prefix is used when packaging the files. For example, we run</p> <pre><code>ant dist -DtargetApp=app1 </code></pre> <p>to have a deployment file built with <code>app1-dao.xml</code>, <code>app1-services.xml</code>, etc., packaged.</p> <p>Within Ant, we have logic that looks something like this to set the property to use for the "configuration suite" name:</p> <pre><code>&lt;target name="set-environment"&gt; &lt;!-- If the targetApp property is not set, default to "app1" --&gt; &lt;condition property="targetApp" value="app1"&gt; &lt;not&gt; &lt;isset property="targetApp"/&gt; &lt;/not&gt; &lt;/condition&gt; &lt;echo&gt;Using targetApp: ${targetApp}&lt;/echo&gt; &lt;target&gt; </code></pre> <p>Since this product is a web application, the value of the <code>${targetApp}</code> property is then used to filter a value in the web.xml to tell Spring which application context files to load.</p> http://stackoverflow.com/questions/1708292/meaning-of-using-commas-and-underscores-with-python-assignment-operator 1 Meaning of using commas and underscores with Python assignment operator? matt b 2009-11-10T14:16:59Z 2009-11-10T14:24:29Z <p>Reading thru Peter Norvig's <a href="http://norvig.com/sudoku.html" rel="nofollow">Solving Every Sudoku Puzzle essay</a>, I've encounted a few Python idioms that I've never seen before.</p> <p>I'm aware that a function can return a tuple/list of values, in which case you can assign multiple variables to the results, such as</p> <pre><code>&gt;&gt;&gt; def f(): ... return 1,2 &gt;&gt;&gt; a, b = f() </code></pre> <p>But what is the meaning of each of the following?</p> <pre><code>d2, = values[s] ## values[s] is a string and at this point len(values[s]) is 1 </code></pre> <p>If <code>len(values[s]) == 1</code>, then how is this statement different than <code>d2 = values[s]</code>?</p> <p>Another question about using an underscore in the assignment here:</p> <pre><code>_,s = min((len(values[s]), s) for s in squares if len(values[s]) &gt; 1) </code></pre> <p>Does the underscore have the effect of basically disgarding the first value returned in the list?</p> http://stackoverflow.com/questions/1705606/floating-value-truncation-java/1705623#1705623 1 Answer by matt b for floating value truncation java matt b 2009-11-10T04:29:52Z 2009-11-10T04:29:52Z <p>Use the <a href="http://java.sun.com/javase/6/docs/api/java/text/DecimalFormat.html" rel="nofollow">DecimalFormat</a> class.</p> http://stackoverflow.com/questions/1703283/is-this-spring-training-useful/1703858#1703858 0 Answer by matt b for Is this Spring training useful? matt b 2009-11-09T21:14:31Z 2009-11-09T21:14:31Z <p>To solve the problem at hand:</p> <p>When using Spring, your beans shouldn't really go out to the <code>ApplicationContext</code> and ask for the beans they need - they should provide setters (or constructors) so that the dependencies can be injected.</p> <p>It sounds like whomever designed these classes did the opposite of dependency injection.</p> http://stackoverflow.com/questions/1702255/something-disturbing-about-pydev-content-assist/1702526#1702526 2 Answer by matt b for Something disturbing about PyDev content assist matt b 2009-11-09T17:31:17Z 2009-11-09T17:31:17Z <p>Not sure if anyone outside of the PyDev development team can really help you here, as this basically boils down to a feature question/request.</p> <p>I'd suggest creating an item on their <a href="http://sourceforge.net/tracker/?group%5Fid=85796&amp;atid=577332" rel="nofollow">Feature Request tracker</a> or their <a href="http://sourceforge.net/tracker/?group%5Fid=85796&amp;atid=577329" rel="nofollow">bug tracker</a>.</p> http://stackoverflow.com/questions/1701447/java-library-size/1701535#1701535 7 Answer by matt b for Java Library Size matt b 2009-11-09T14:55:49Z 2009-11-09T14:55:49Z <p>The short answer is that classes are loaded whenever they are first needed. Note that "needed" also means "referenced by any other class that is being loaded".</p> <p>So if you have a whole pile of classes that are never touched by any active code, it will not be loaded.</p> <p>If you would like to see exactly which classes the JVM is loading and when, you can invoke the java command/process with the <a href="http://java.sun.com/javase/6/webnotes/trouble/TSG-VM/html/clopts.html#gbmtm" rel="nofollow"><code>-verbose:class</code></a> option.</p> http://stackoverflow.com/questions/1701199/is-there-an-analogue-to-java-illegalstateexception-in-python/1701317#1701317 2 Answer by matt b for Is there an analogue to Java IllegalStateException in Python? matt b 2009-11-09T14:31:27Z 2009-11-09T14:31:27Z <p><a href="http://docs.python.org/library/exceptions.html?highlight=valueerror#exceptions.ValueError" rel="nofollow">ValueError</a> sounds appropriate to me: </p> <blockquote> <p>Raised when a built-in operation or function receives an argument that has the right type but an inappropriate value, and the situation is not described by a more precise exception such as <a href="http://docs.python.org/library/exceptions.html?highlight=valueerror#exceptions.IndexError" rel="nofollow">IndexError</a>.</p> </blockquote> http://stackoverflow.com/questions/1698585/testing-servicelocator-using-junit/1698771#1698771 1 Answer by matt b for Testing ServiceLocator using JUnit matt b 2009-11-09T02:08:41Z 2009-11-09T02:08:41Z <p>Well, is <code>com.iplanet.ias.admin.common.ASException</code> on the classpath when you invoke your tests?</p> <p>Are you relying on the app server to have the JDBC driver's libraries in it's classpath, or are you deploying it yourself?</p> http://stackoverflow.com/questions/1696655/monitoring-mysql-for-changes/1696752#1696752 0 Answer by matt b for monitoring mysql for changes matt b 2009-11-08T14:46:03Z 2009-11-08T15:20:08Z <p>Instead of caching the database contents within the memory space of the Java app, you could use an external cache like <a href="http://memcached.org/" rel="nofollow">memcached</a> or <a href="http://ehcache.org/" rel="nofollow">Ehcache</a>. When either process updates (or reads) from the database, have it update memcached as well.</p> <p>This way whenever either process updates the DB, its updates will be in the cache that the other process reads from.</p> http://stackoverflow.com/questions/1797996/generating-class-file-for-jvm Comment by matt b on Generating .class file for JVM matt b 2009-11-25T16:16:46Z 2009-11-25T16:16:46Z Is your project to write a java compiler? http://stackoverflow.com/questions/1797599/working-around-java-jit-bug Comment by matt b on Working around Java JIT bug matt b 2009-11-25T16:10:34Z 2009-11-25T16:10:34Z if you think it's a legit bug then you should submit something to Sun so they can investigate it and (possibly) fix it. http://stackoverflow.com/questions/1797930/how-to-get-eclipse-to-recognize-preprocessor-statements Comment by matt b on How to get eclipse to recognize preprocessor statements? matt b 2009-11-25T16:07:12Z 2009-11-25T16:07:12Z Eclipse and Java don't have a preprocessor. Are you using a plugin like EclipseME? http://stackoverflow.com/questions/1790798/java-seems-to-be-truncating-long-string-result-from-ms-sql-query Comment by matt b on Java seems to be truncating long string result from MS-SQL query matt b 2009-11-24T15:31:45Z 2009-11-24T15:31:45Z please post some examples of the code you are using. http://stackoverflow.com/questions/1789797/object-vs-static-method-design/1789864#1789864 Comment by matt b on Object vs static method design matt b 2009-11-24T14:04:49Z 2009-11-24T14:04:49Z @Jason, I think the idea is that the user of ThingThatUsesStreamCopier is doing other things within the class besides just copying streams. http://stackoverflow.com/questions/1790026/what-can-i-do-to-make-jar-classes-smaller/1790053#1790053 Comment by matt b on What can I do to make jar / classes smaller? matt b 2009-11-24T13:55:42Z 2009-11-24T13:55:42Z I think Chii means class-level member variables http://stackoverflow.com/questions/1786481/java-detect-no-other-threads-are-in-an-object/1786521#1786521 Comment by matt b on java detect no other threads are in an object matt b 2009-11-23T22:43:05Z 2009-11-23T22:43:05Z if checkout() keeps track of the threads that call it, then you can just have logout() .join() each of those threads as Taylor suggests. http://stackoverflow.com/questions/1782933/java-alternative-to-iterator-hasnext-if-using-for-each-to-loop-over-a-collecti/1782946#1782946 Comment by matt b on Java: Alternative to iterator.hasNext() if using for-each to loop over a collection matt b 2009-11-23T14:33:52Z 2009-11-23T14:33:52Z ... or if you need to know the current index of an array you are iterating over http://stackoverflow.com/questions/1780518/best-mvc-tutorial-example-for-jsp-servlet/1780541#1780541 Comment by matt b on Best MVC tutorial/example for JSP/Servlet? matt b 2009-11-23T02:37:21Z 2009-11-23T02:37:21Z I'd suggest using an established MVC framework over rolling your own http://stackoverflow.com/questions/1772572/unsatisfiedlinkerror-when-loading-a-library-from-java-in-matlab Comment by matt b on UnsatisfiedLinkError When Loading a Library from Java in MATLAB matt b 2009-11-20T19:00:03Z 2009-11-20T19:00:03Z how are you verifying the value of the java.library.path property? http://stackoverflow.com/questions/1772336/suggest-me-a-book-with-java-programming-problems/1772345#1772345 Comment by matt b on Suggest me a book with java programming problems matt b 2009-11-20T18:50:43Z 2009-11-20T18:50:43Z @rover12, what kind of problems do you want? You haven't been specific. http://stackoverflow.com/questions/1770591/coding-everything-in-java-opinions-please/1770611#1770611 Comment by matt b on Coding EVERYTHING in Java - opinions please matt b 2009-11-20T14:13:19Z 2009-11-20T14:13:19Z the size of a &gt; 1K LOC shell script implies that it was not the right tool for that job. http://stackoverflow.com/questions/1768495/which-technologies-does-google-work Comment by matt b on Which technologies does google work matt b 2009-11-20T05:32:29Z 2009-11-20T05:32:29Z a &quot;potential&quot; competitor? http://stackoverflow.com/questions/1768486/how-not-to-scare-programmers-using-visual-source-safe/1768498#1768498 Comment by matt b on How not to scare programmers using Visual Source Safe :-) matt b 2009-11-20T05:29:22Z 2009-11-20T05:29:22Z is there really any point in ever choosing CVS over SVN? http://stackoverflow.com/questions/1768361/can-i-change-the-number-of-titles-in-table/1768388#1768388 Comment by matt b on Can I change the number of titles in Table?? matt b 2009-11-20T05:28:27Z 2009-11-20T05:28:27Z how the heck did you figure out that this was in reference to a JTable?