User matt b - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T00:46:08Zhttp://stackoverflow.com/feeds/user/4249http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1801391/what-is-the-best-algorithm-for-checking-if-a-number-is-prime/1801404#18014041Answer by matt b for What is the best algorithm for checking if a number is prime?matt b2009-11-26T03:36:25Z2009-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#17874041Answer by matt b for How to Pass Dummy jQuery Object to Javascript functionmatt b2009-11-24T02:26:36Z2009-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#17865210Answer by matt b for java detect no other threads are in an objectmatt b2009-11-23T22:30:37Z2009-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#17813740Answer by matt b for How to calculate first n prime numbers?matt b2009-11-23T06:10:42Z2009-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 < 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#17812771Answer by matt b for hibernate ehcache only finding 1 element of a collectionmatt b2009-11-23T05:35:56Z2009-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#17685112Answer by matt b for Help me understand this pointer vs. value issuematt b2009-11-20T05:27:04Z2009-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#17638770Answer by matt b for delete hibernate entity without (attempting to) delete association table (view) entrymatt b2009-11-19T14:59:29Z2009-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#17636470Answer by matt b for Easymock partially mocking (EasyMock ClassExtension), good or bad?matt b2009-11-19T14:26:06Z2009-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#17605312Answer by matt b for Java Queue Merge, Beginnermatt b2009-11-19T02:32:06Z2009-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#17605403Answer by matt b for javascript calender to accept future date only matt b2009-11-19T02:34:08Z2009-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#17555702Answer by matt b for Overriding log4j settings at deploy timematt b2009-11-18T12:09:50Z2009-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#17537011Answer by matt b for Reading a PDF document with iText not working sometimesmatt b2009-11-18T04:47:05Z2009-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#17515383Answer by matt b for Why do errors no longer appear in Eclipse's package explorer?matt b2009-11-17T20:27:49Z2009-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-3Answer by matt b for How can be 2 = 1.99999....?matt b2009-11-15T05:03:49Z2009-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#17272471Answer by matt b for Should I learn the Google Closure JavaScript framework, or is it just a passing (albeit Google branded) framework?matt b2009-11-13T05:11:47Z2009-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#17268341Answer by matt b for visualVM memory leakmatt b2009-11-13T02:54:02Z2009-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#17248915Answer by matt b for What is the JDBC equivalent to query an IBM Domino data store?matt b2009-11-12T19:47:38Z2009-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#17218101Answer by matt b for ContextLoaderListener problem while spring is loading upmatt b2009-11-12T12:22:01Z2009-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#17176301Answer by matt b for clear() methods in Javamatt b2009-11-11T19:52:00Z2009-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 < 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#17174001Answer by matt b for Spring formBackingObject, Business Object Creation, and Factoriesmatt b2009-11-11T19:10:01Z2009-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#17161781Answer by matt b for Multi-module projects in Subversion vs. Eclipsematt b2009-11-11T16:03:53Z2009-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#17084020Answer by matt b for Dependency Injection: How to maintain multiple configurations?matt b2009-11-10T14:34:16Z2009-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><target name="set-environment">
<!-- If the targetApp property is not set, default to "app1" -->
<condition property="targetApp" value="app1">
<not>
<isset property="targetApp"/>
</not>
</condition>
<echo>Using targetApp: ${targetApp}</echo>
<target>
</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-operator1Meaning of using commas and underscores with Python assignment operator?matt b2009-11-10T14:16:59Z2009-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>>>> def f():
... return 1,2
>>> 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]) > 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#17056231Answer by matt b for floating value truncation javamatt b2009-11-10T04:29:52Z2009-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#17038580Answer by matt b for Is this Spring training useful?matt b2009-11-09T21:14:31Z2009-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#17025262Answer by matt b for Something disturbing about PyDev content assist matt b2009-11-09T17:31:17Z2009-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&atid=577332" rel="nofollow">Feature Request tracker</a> or their <a href="http://sourceforge.net/tracker/?group%5Fid=85796&atid=577329" rel="nofollow">bug tracker</a>.</p>
http://stackoverflow.com/questions/1701447/java-library-size/1701535#17015357Answer by matt b for Java Library Sizematt b2009-11-09T14:55:49Z2009-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#17013172Answer by matt b for Is there an analogue to Java IllegalStateException in Python?matt b2009-11-09T14:31:27Z2009-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#16987711Answer by matt b for Testing ServiceLocator using JUnitmatt b2009-11-09T02:08:41Z2009-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#16967520Answer by matt b for monitoring mysql for changesmatt b2009-11-08T14:46:03Z2009-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-jvmComment by matt b on Generating .class file for JVMmatt b2009-11-25T16:16:46Z2009-11-25T16:16:46ZIs your project to write a java compiler?http://stackoverflow.com/questions/1797599/working-around-java-jit-bugComment by matt b on Working around Java JIT bugmatt b2009-11-25T16:10:34Z2009-11-25T16:10:34Zif 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-statementsComment by matt b on How to get eclipse to recognize preprocessor statements?matt b2009-11-25T16:07:12Z2009-11-25T16:07:12ZEclipse 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-queryComment by matt b on Java seems to be truncating long string result from MS-SQL querymatt b2009-11-24T15:31:45Z2009-11-24T15:31:45Zplease post some examples of the code you are using.http://stackoverflow.com/questions/1789797/object-vs-static-method-design/1789864#1789864Comment by matt b on Object vs static method design matt b2009-11-24T14:04:49Z2009-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#1790053Comment by matt b on What can I do to make jar / classes smaller?matt b2009-11-24T13:55:42Z2009-11-24T13:55:42ZI think Chii means class-level member variableshttp://stackoverflow.com/questions/1786481/java-detect-no-other-threads-are-in-an-object/1786521#1786521Comment by matt b on java detect no other threads are in an objectmatt b2009-11-23T22:43:05Z2009-11-23T22:43:05Zif 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#1782946Comment by matt b on Java: Alternative to iterator.hasNext() if using for-each to loop over a collectionmatt b2009-11-23T14:33:52Z2009-11-23T14:33:52Z... or if you need to know the current index of an array you are iterating overhttp://stackoverflow.com/questions/1780518/best-mvc-tutorial-example-for-jsp-servlet/1780541#1780541Comment by matt b on Best MVC tutorial/example for JSP/Servlet? matt b2009-11-23T02:37:21Z2009-11-23T02:37:21ZI'd suggest using an established MVC framework over rolling your ownhttp://stackoverflow.com/questions/1772572/unsatisfiedlinkerror-when-loading-a-library-from-java-in-matlabComment by matt b on UnsatisfiedLinkError When Loading a Library from Java in MATLABmatt b2009-11-20T19:00:03Z2009-11-20T19:00:03Zhow 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#1772345Comment by matt b on Suggest me a book with java programming problemsmatt b2009-11-20T18:50:43Z2009-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#1770611Comment by matt b on Coding EVERYTHING in Java - opinions pleasematt b2009-11-20T14:13:19Z2009-11-20T14:13:19Zthe size of a > 1K LOC shell script implies that it was not the right tool for that job.http://stackoverflow.com/questions/1768495/which-technologies-does-google-workComment by matt b on Which technologies does google workmatt b2009-11-20T05:32:29Z2009-11-20T05:32:29Za "potential" competitor?http://stackoverflow.com/questions/1768486/how-not-to-scare-programmers-using-visual-source-safe/1768498#1768498Comment by matt b on How not to scare programmers using Visual Source Safe :-)matt b2009-11-20T05:29:22Z2009-11-20T05:29:22Zis 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#1768388Comment by matt b on Can I change the number of titles in Table??matt b2009-11-20T05:28:27Z2009-11-20T05:28:27Zhow the heck did you figure out that this was in reference to a JTable?