User Nerdfest - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T08:20:36Zhttp://stackoverflow.com/feeds/user/7855http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1638011/java-memory-leak/1638373#16383730Answer by Nerdfest for Java memory leakNerdfest2009-10-28T16:25:49Z2009-10-28T16:25:49Z<p>I generally prefer profiling applications using the NetBeans Profiler. You can fairly easily see which objects are leaking and where they are created in most cases. There are likely several other tools that will do this as well, but I know the NetBeans profiler works well, and is easy to use.</p>
http://stackoverflow.com/questions/1544952/java-and-sql-return-null-or-throw-exception/1545049#15450492Answer by Nerdfest for Java and SQL : return null or throw exception?Nerdfest2009-10-09T17:16:53Z2009-10-09T17:16:53Z<p>If an error occurs, thow an exception. If there's no data, return an empty collection, not a null. (Also, generally you should return the more generic 'Map', not the specific implementation),</p>
http://stackoverflow.com/questions/162985/eclipse-rcp-splash-screen3Eclipse RCP Splash ScreenNerdfest2008-10-02T15:23:55Z2009-08-25T20:06:44Z
<p>I'm involved in a project that is attempting to use the Eclipse RCP splash screen to gather user credentials, language, etc. If this screen loses focus, it is not available (under Windows at least) through the ALt-Tab functionality, and can only be found by minimizing all other windows and uncovering it. Any way of having this screen allow itself to be activated in this way? They're avoiding creating an intermediate screen, for reasons unknown at this point.</p>
http://stackoverflow.com/questions/1314512/need-help-with-a-system-call-from-java/1314522#13145220Answer by Nerdfest for need help with a system call from javaNerdfest2009-08-21T22:47:27Z2009-08-21T22:53:28Z<p>My guess would be that the JVM runtime is running as someone other than you and has a different path. "ls" is in /bin, and "which" is generally in /usr/bin. Try running "/usr/bin/which" to verify this. Not sure of your OS (and haven't tried this myself) but a quick search mentioned that you should set the variable LD_LIBRARY_PATH to your desired path under Unix.</p>
http://stackoverflow.com/questions/1314408/finding-all-records-without-associated-ones/1314427#13144271Answer by Nerdfest for Finding all records without associated onesNerdfest2009-08-21T22:08:13Z2009-08-21T22:08:13Z<p>You should generally be able to do an outer join from parent to child and check for a null value in a field in the child that is not null-able. This is generally faster than a 'not in' or 'not exists'. This may not work on all databases.</p>
http://stackoverflow.com/questions/1305687/should-programming-according-to-the-interface-hide-everything/1305735#13057352Answer by Nerdfest for Should programming according to the interface hide everything?Nerdfest2009-08-20T12:10:08Z2009-08-20T12:10:08Z<p>Have a look around for Robert Martin's "Interface Segration Principle", as well as the rest of the <a href="http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod" rel="nofollow">SOLID principles</a> of object oriented design.</p>
http://stackoverflow.com/questions/816931/what-non-free-tools-are-popular-amongst-java-developers/816982#8169821Answer by Nerdfest for What non-free tools are popular amongst Java developersNerdfest2009-05-03T12:48:40Z2009-05-03T12:48:40Z<p>I like NetBeans as well, but I know many people who pay for MyEclipse, for its added features. The price it quite reasonable as well (~50$).</p>
http://stackoverflow.com/questions/290744/access-database-replacement1Access Database ReplacementNerdfest2008-11-14T17:09:54Z2009-03-10T04:09:18Z
<p>Does anyone know of a drop-in replacement for an access database, ideally open source. A group I work with occasionally is looking for a replacement database where they'll need to change as little actual SQL as possible. Their app is VB6/COM.</p>
http://stackoverflow.com/questions/512254/use-mockito-to-verify-that-nothing-is-called-after-a-method/512271#5122710Answer by Nerdfest for Use Mockito to verify that nothing is called after a methodNerdfest2009-02-04T17:03:07Z2009-02-04T17:03:07Z<p>Can you have your stub call to "save" remove all other expectations? </p>
http://stackoverflow.com/questions/488020/what-is-your-most-useful-sql-trick-to-avoid-writing-more-code/499007#4990070Answer by Nerdfest for What is your most useful sql trick to avoid writing more code?Nerdfest2009-01-31T15:32:53Z2009-01-31T15:32:53Z<p>Simple but effective ... use views to get rid of complex repetitive joins and conditions. You can centralize a bit of simple logic without resorting to stored procedures.</p>
http://stackoverflow.com/questions/366588/what-does-a-good-programmers-code-look-like/366597#3665970Answer by Nerdfest for What does a good programmer's code look like?Nerdfest2008-12-14T14:42:24Z2008-12-14T14:42:24Z<p>Good code is easy to understand, easy to maintain, and easy to add to. Ideally, it is also as efficient as possible without sacrificing other indicators.</p>
http://stackoverflow.com/questions/347821/do-programmers-read-books-or-is-the-book-industry-dead/347825#3478250Answer by Nerdfest for Do programmers read books? Or is the book industry dead?Nerdfest2008-12-07T17:52:07Z2008-12-07T17:52:07Z<p>Until all of the same information is available conveniently in electronic form, there's a place for books. I was poking around at work the other day for someone with a copy of POSA ... not all of the information is available online yet (that I know of).</p>
http://stackoverflow.com/questions/347699/what-is-your-laptops-display-size/347710#3477100Answer by Nerdfest for What is your laptop's display size?Nerdfest2008-12-07T15:58:47Z2008-12-07T15:58:47Z<p>I have an Aspire One netbook that I occasionally run Eclipse and NetBeans on. It's pushing it, but it can work. I would only recommend it is portability is your most important requirement. Overall though, What you should really be looking at is resolution rather than size. Unfortunately, that seems to add a lot of cost to a laptop, even more so than screen size.</p>
http://stackoverflow.com/questions/347656/how-can-i-list-the-missing-dates-from-an-array-of-non-continuous-dates-in-java/347663#3476631Answer by Nerdfest for How can I list the missing dates from an array of non-continuous dates in Java?Nerdfest2008-12-07T15:08:28Z2008-12-07T15:08:28Z<p>You should be able to create a filtered iterator that provides this. Perhaps have the method for the iterator accept the start and stop date of your sub-collection. As for the actual implementation of the iterator, I can't think of anything much more elegant than a brute-force run at the whole collection once the start element has been found.</p>
http://stackoverflow.com/questions/345021/how-do-you-handle-special-case-data-when-modeling-a-database/345046#3450461Answer by Nerdfest for How do you handle "special-case" data when modeling a database?Nerdfest2008-12-05T20:38:33Z2008-12-05T20:38:33Z<p>Perhaps use a 'type' indicator in the main table, with one child table allowing numeric price and another with character values. These could be combined into one table, but I generally avoid that. You could also use an intermediate link table with a quantity if you ever want to base price on quantity purchased. </p>
http://stackoverflow.com/questions/340347/how-is-it-possible-to-sell-code-written-in-an-interpreted-language/340351#3403516Answer by Nerdfest for How is it possible to sell code written in an interpreted language?Nerdfest2008-12-04T12:01:04Z2008-12-04T12:01:04Z<p>People sell the service of creating web sites all the time. Also, even a compiled language can be altered, it`s just more difficult.</p>
http://stackoverflow.com/questions/333701/which-are-the-must-visit-daily-websites-for-programmers/333705#33370525Answer by Nerdfest for which are the must-visit-daily websites for programmers?Nerdfest2008-12-02T11:40:30Z2008-12-02T11:40:30Z<p><a href="http://TheDailyWTF.com" rel="nofollow">The Daily WTF</a>! (And this one, of course)</p>
http://stackoverflow.com/questions/324794/favourite-java-site/324801#3248010Answer by Nerdfest for Favourite Java SiteNerdfest2008-11-27T23:27:59Z2008-11-27T23:27:59Z<p>Sun.com (and Java.com) is one I end up at the most ...</p>
http://stackoverflow.com/questions/323603/on-k-i-s-s-and-paving-cowpaths/323616#3236164Answer by Nerdfest for On K.I.S.S and paving cowpathsNerdfest2008-11-27T12:33:43Z2008-11-27T12:33:43Z<p>Names are exceptionally important. If you want your application to be maintainable, fix them before the code base grows further.</p>
http://stackoverflow.com/questions/322784/how-to-use-java-to-edit-a-template-document-form-letter-from-a-file/322820#3228209Answer by Nerdfest for How to use Java to edit a template document (form letter) from a file?Nerdfest2008-11-27T02:47:36Z2008-11-27T02:47:36Z<p>You're looking for java.text.MessageFormat:</p>
<p>Here are some examples of usage (from JavaDoc):</p>
<pre><code> Object[] arguments = {
new Integer(7),
new Date(System.currentTimeMillis()),
"a disturbance in the Force"
};
String result = MessageFormat.format(
"At {1,time} on {1,date}, there was {2} on planet {0,number,integer}.",
arguments);
output: At 12:30 PM on Jul 3, 2053, there was a disturbance
in the Force on planet 7.
</code></pre>
http://stackoverflow.com/questions/322701/matching-inexact-company-names-in-java/322716#3227161Answer by Nerdfest for Matching inexact company names in JavaNerdfest2008-11-27T01:36:42Z2008-11-27T01:36:42Z<p>Have a look at Lucene. It's an open source full text search Java library with 'near match' capabilities. </p>
http://stackoverflow.com/questions/320284/what-is-wrong-with-polling/320476#3204765Answer by Nerdfest for What is wrong with PollingNerdfest2008-11-26T12:01:16Z2008-11-26T17:42:22Z<p>I think people should realize that in most cases, at some level there is polling being done, even in event or interrupt driven situations, but you're isolated from the actual code doing the polling. Really, this is the most desirable situation ... isolate yourself from the implementaion, and just deal with the event. Even if you must implement the polling yourself, write the code so that it's isolated, and the results are dealt with independently of the implementation.</p>
http://stackoverflow.com/questions/304876/annoying-or-idiotic-naming-conventions/320768#3207680Answer by Nerdfest for Annoying or idiotic naming conventions?Nerdfest2008-11-26T14:00:09Z2008-11-26T14:00:09Z<p>A very simple, and common one; I don't like interface names prefixed with 'I'. Interfaces should be generally descriptive, with the implementations more descriptive still. I do not want to see a collection of ICustomer ... I want to see a collection of Customer. </p>
http://stackoverflow.com/questions/317089/how-to-optimize-access-of-this-data/317110#3171103Answer by Nerdfest for How to optimize access of this Data ?Nerdfest2008-11-25T11:50:09Z2008-11-25T11:50:09Z<p>Pull out the name and use an integer ID. It should be faster and will tolerate name changes. The stock symbol can also be extracted to the parent table.</p>
http://stackoverflow.com/questions/311438/initialising-java-web-app/311453#3114530Answer by Nerdfest for Initialising Java Web AppNerdfest2008-11-22T15:59:48Z2008-11-22T15:59:48Z<p>What about a basic startup servlet to initialise the connection pool?</p>
http://stackoverflow.com/questions/310929/where-do-you-record-your-authentication-information-urls-ips-usernames-passwords/310957#3109571Answer by Nerdfest for Where do you record your authentication information (urls/ips/usernames/passwords)?Nerdfest2008-11-22T06:28:53Z2008-11-22T07:47:01Z<p>Try <a href="http://www.fpx.de/fp/Software/Gorilla/" rel="nofollow">Password Gorilla</a> and use <a href="http://GetDropBox.com" rel="nofollow">GetDropBox.com</a> to keep it synced across machines. I think it was recommended by the developers of this site.</p>
http://stackoverflow.com/questions/310010/are-there-specific-technical-debts-that-are-not-worth-incurring/310021#3100210Answer by Nerdfest for Are there specific "technical debts" that are not worth incurring?Nerdfest2008-11-21T20:11:18Z2008-11-21T20:11:18Z<p>Not having a cohesive design up front tends to lead to it. You can overcome it to a degree if you take the time to refactor frequently, but most people keep bashing away at an overall design that does not match their changing requirements. This may be a more general answer that what your looking for, but does tend to be one of the more popular causes of technical debt.</p>
http://stackoverflow.com/questions/305793/why-does-microsoft-windows-performance-appear-to-degrade-over-time/305823#3058230Answer by Nerdfest for Why Does Microsoft Windows' Performance Appear To Degrade Over Time?Nerdfest2008-11-20T16:06:25Z2008-11-20T16:16:50Z<p>Running software with memory leaks will cause this, as less memory is available for caching. For your average home user, spyware/crapware frequently becomes an issue as well if you're looking at it from this point of view.</p>
http://stackoverflow.com/questions/304876/annoying-or-idiotic-naming-conventions/305182#3051822Answer by Nerdfest for Annoying or idiotic naming conventions?Nerdfest2008-11-20T12:45:01Z2008-11-20T13:58:34Z<p>I'm still waiting for the 70's to end in the database world. You still frequently see people sticking to 8 character all upper case names where 4 of the letters are used to indicate the object type (table, etc). The field names are also all upper case, usually with the vowels removed, even when there's room to keep them in place. Most people even still use the all upper case convention for SQL commands even though SQL can actually be made to be a readable thing if lower or mixed case commands and field names are used. Sadly, I think the use of SQL will die before people realize that the style and naming conventions are making maintenance more difficult. </p>
http://stackoverflow.com/questions/305152/tortoisesvn-identifies-modified-file-so-why-does-svn-diff-report-no-differences/305160#3051601Answer by Nerdfest for TortoiseSVN identifies modified file - so why does svn diff report no differences?Nerdfest2008-11-20T12:38:20Z2008-11-20T12:38:20Z<p>It may be your 'ignore white space' settings. If one is set to true, and this other is not, this behaviour will occur.</p>
http://stackoverflow.com/questions/1650931/why-object-class-isassignablefromstring-class-true/1650950#1650950Comment by Nerdfest on Why Object[].class.isAssignableFrom(String[].class) == true ?Nerdfest2009-10-30T17:14:54Z2009-10-30T17:14:54Z... or modify it based on objects of the base type, the purpose of polymorphism.http://stackoverflow.com/questions/529124/db2-express-c-transactions-through-odbc/562865#562865Comment by Nerdfest on DB2 Express-C transactions through ODBCNerdfest2009-02-20T14:01:40Z2009-02-20T14:01:40ZXP in this case ... it looks very much like it doesn't support transactions either though. http://stackoverflow.com/questions/367863/sql-find-records-from-one-table-which-dont-exist-in-another/368123#368123Comment by Nerdfest on SQL - find records from one table which don't exist in anotherNerdfest2008-12-15T11:57:27Z2008-12-15T11:57:27ZThis is generally the most efficient method as it does not perform multiple passes on the second table ... hope some people are reading the comemnts.http://stackoverflow.com/questions/350800/beginner-accessing-values-inside-an-object-in-java/350831#350831Comment by Nerdfest on Beginner: Accessing values inside an object in JavaNerdfest2008-12-08T21:12:36Z2008-12-08T21:12:36ZYou don't need that 'Driver' outer wrapper for it, it will work file without. http://stackoverflow.com/questions/345021/how-do-you-handle-special-case-data-when-modeling-a-database/345046#345046Comment by Nerdfest on How do you handle "special-case" data when modeling a database?Nerdfest2008-12-05T20:44:46Z2008-12-05T20:44:46ZLooking at RickH's answer, I actually like his solution 5 as a flexible implementation of your general case. It, combined with with the intermediate table is something I've used for tax calculations, which is a similar case.http://stackoverflow.com/questions/202107/good-examples-of-hungarian-notation/202135#202135Comment by Nerdfest on Good examples of Hungarian Notation?Nerdfest2008-11-30T14:41:10Z2008-11-30T14:41:10ZThe last point presented here is the first thing that popped into my mind after reading Joel's original article. This is one of the purposes of class hierarchies, and using naming conventions to do it is not optimal.http://stackoverflow.com/questions/304876/annoying-or-idiotic-naming-conventions/305182#305182Comment by Nerdfest on Annoying or idiotic naming conventions?Nerdfest2008-11-30T05:24:40Z2008-11-30T05:24:40ZI think it's been repeatedly shown that all upper case is very difficult to read. It distracts the eye away from the important part as well ... the field and table names. Also, the upper case is usually not limited to just keywords. http://stackoverflow.com/questions/324794/favourite-java-site/324801#324801Comment by Nerdfest on Favourite Java SiteNerdfest2008-11-28T00:03:06Z2008-11-28T00:03:06ZIt's really just a quick entry point for downloading new versions.http://stackoverflow.com/questions/323065/how-to-version-control-a-record-in-a-database/323109#323109Comment by Nerdfest on How to version control a record in a databaseNerdfest2008-11-27T12:49:01Z2008-11-27T12:49:01ZI woyuld recommend that you actually insert the <i>new</i> data, not the previous, so the history table has all of the data. Although it stores redyundent data, it eliminates the special cases required to deal with searching in both tables when historical data is required.http://stackoverflow.com/questions/317089/how-to-optimize-access-of-this-data/317110#317110Comment by Nerdfest on How to optimize access of this Data ?Nerdfest2008-11-25T13:03:33Z2008-11-25T13:03:33ZMy earlier post was very early. It will not actually speed the retrieval up by much for the raw data, and will likely slow it down slightly because of a join. There is value in the normalization if you're adding any other company data, or allowing the ability to change the name though.http://stackoverflow.com/questions/310929/where-do-you-record-your-authentication-information-urls-ips-usernames-passwords/310957#310957Comment by Nerdfest on Where do you record your authentication information (urls/ips/usernames/passwords)?Nerdfest2008-11-22T14:59:19Z2008-11-22T14:59:19ZThe version I've used (Linux) has fields for group, title, URL, userame, and notes (multi-line text), so if you use the notes for you IP, you should be covered. http://stackoverflow.com/questions/310929/where-do-you-record-your-authentication-information-urls-ips-usernames-passwords/310957#310957Comment by Nerdfest on Where do you record your authentication information (urls/ips/usernames/passwords)?Nerdfest2008-11-22T06:31:35Z2008-11-22T06:31:35ZThey also recommended PasswordSafe for Windows machines ... Gorilla id for Linux/Mac.http://stackoverflow.com/questions/304876/annoying-or-idiotic-naming-conventions/305562#305562Comment by Nerdfest on Annoying or idiotic naming conventions?Nerdfest2008-11-20T17:53:22Z2008-11-20T17:53:22ZActually, it could be a view. The point is, it really shouldn't matter ... it's a thing that provides data. http://stackoverflow.com/questions/272863/use-of-else-after-a-return-or-break-from-a-function-or-loop/272969#272969Comment by Nerdfest on Use of else after a return or break from a function or loopNerdfest2008-11-07T19:05:19Z2008-11-07T19:05:19ZThe trend seems to be moving away from that, but it's coupled with smaller methods as well. As with many things, it's a matter of finding a balance that gives the best readability. I lean more towards single return where possible as it's easier to debug where the exit of the method is easily found.http://stackoverflow.com/questions/140376/what-easter-eggs-have-you-placed-in-code/140499#140499Comment by Nerdfest on What Easter Eggs have you placed in code?Nerdfest2008-09-28T16:08:29Z2008-09-28T16:08:29ZI think it's more a result of programmers who are proud of their work, but you're probably right for some cases as well.