matt b

15,365
Reputation
650 views

Registered User

Name matt b
Member for 1 year
Seen 14 hours ago
Website
Location US
Age 27
hi
14h
comment Assigning “null” to objects in every application after their use
this might be the biggest anti-pattern in all of Java
18h
comment StackOverflowError during Building workspace
I think his confusion is that he gets just this from compilation - not at runtime
1d
revised Java compile warnings with spring “Validator” classes
formatting; added 2 characters in body
1d
comment Java: Static Class?
Should also mark the class as final
1d
awarded  Popular Question
1d
accepted Arguments Against Annotations
2d
comment How to make sure I’m using the “server” JVM?
I feel the need to point out that just because running "java" with no arguments is using the server VM, that doesn't guarantee that whatever script/commands launch the process that crashed aren't specifying the client VM as an argument.
2d
answered Java Stanford NLP: Part of Speech labels?
2d
comment How to get free impartial code reviews / advice?
then use Findbugs, PMD, and checkstyle
2d
answered How to get free impartial code reviews / advice?
Dec
2
accepted Reading a PDF document with iText not working sometimes
Nov
30
comment Java recursion sum
there used to be a "smells-like-homework" tag for that..
Nov
30
answered Is it possible a long GC cycle is causing “Connection refused” exceptions?
Nov
30
comment Why does my Perl CGI complain about “Premature end of script headers”?
Help us help you by telling us what the arguments to your system() or exec() calls are.
Nov
30
answered Tomcat not recognizing the DLL files
Nov
30
answered Java aware merge command
Nov
30
answered Copying only non-existent files in ant
Nov
27
answered Classx is not abstract and does not override abstract method methodx(java.lang.Object) in Interfacex
Nov
26
answered What is the best algorithm for checking if a number is prime?
Nov
25
comment Generating .class file for JVM
Is your project to write a java compiler?
Nov
25
comment Working around Java JIT bug
if you think it's a legit bug then you should submit something to Sun so they can investigate it and (possibly) fix it.
Nov
25
comment How to get eclipse to recognize preprocessor statements?
Eclipse and Java don't have a preprocessor. Are you using a plugin like EclipseME?
Nov
24
comment Java seems to be truncating long string result from MS-SQL query
please post some examples of the code you are using.
Nov
24
comment Object vs static method design
@Jason, I think the idea is that the user of ThingThatUsesStreamCopier is doing other things within the class besides just copying streams.
Nov
24
comment What can I do to make jar / classes smaller?
I think Chii means class-level member variables
Nov
24
answered How to Pass Dummy jQuery Object to Javascript function
Nov
23
revised java detect no other threads are in an object
added 1 characters in body
Nov
23
comment java detect no other threads are in an object
if checkout() keeps track of the threads that call it, then you can just have logout() .join() each of those threads as Taylor suggests.
Nov
23
answered java detect no other threads are in an object
Nov
23
comment Java: Alternative to iterator.hasNext() if using for-each to loop over a collection
... or if you need to know the current index of an array you are iterating over
Nov
23
answered How to calculate first n prime numbers?
Nov
23
answered hibernate ehcache only finding 1 element of a collection
Nov
23
comment Best MVC tutorial/example for JSP/Servlet?
I'd suggest using an established MVC framework over rolling your own
Nov
22
awarded  Notable Question
Nov
20
comment UnsatisfiedLinkError When Loading a Library from Java in MATLAB
how are you verifying the value of the java.library.path property?
Nov
20
comment Suggest me a book with java programming problems
@rover12, what kind of problems do you want? You haven't been specific.
Nov
20
awarded  Notable Question
Nov
20
comment Coding EVERYTHING in Java - opinions please
the size of a > 1K LOC shell script implies that it was not the right tool for that job.
Nov
20
comment Which technologies does google work
a "potential" competitor?
Nov
20
accepted Help me understand this pointer vs. value issue
Nov
20
comment How not to scare programmers using Visual Source Safe :-)
is there really any point in ever choosing CVS over SVN?
Nov
20
comment Can I change the number of titles in Table??
how the heck did you figure out that this was in reference to a JTable?
Nov
20
answered Help me understand this pointer vs. value issue
Nov
20
comment java singleton pattern, should all variables be class variables?
@Nader: googletesting.blogspot.com/2008/08/… , misko.hevery.com/2008/08/… and misko.hevery.com/2008/08/…
Nov
20
revised A Method that returns true if the Temperature objects represents a temp below freezing point (JAVA)
edited tags
Nov
19
comment Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated?
You shouldn't have to lower the quality of your output for developers who are not as knowledgeable as yourself. This is coding for the lowest common denominator. Don't lower yourself like that, instead educate them on the concepts that they are confused by.
Nov
19
comment Is it better to have code duplication and have it be very simple/readable, or have no duplication (using generics) but be much more complicated?
I think this is a false choice - you don't have to choose between just one or just the other
Nov
19
comment Easymock partially mocking (EasyMock ClassExtension), good or bad?
No. I think we are misunderstanding each other.
Nov
19
comment How do I find out what jar files are actually used when compiling a java project.
this has been an Eclipse feature for quite a long time
Nov
19
answered delete hibernate entity without (attempting to) delete association table (view) entry