User marcospereira - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:00:45Z http://stackoverflow.com/feeds/user/4600 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/503877/how-can-i-measure-time-with-microsecond-precision-in-java/507534#507534 0 Answer by marcospereira for How can I measure time with microsecond precision in Java? marcospereira 2009-02-03T15:27:00Z 2009-11-21T19:16:28Z <p>If you want a reliable result, use a profiler. I suggest <a href="http://en.wikipedia.org/wiki/VisualVM" rel="nofollow">VisualVM</a>. It is easy to use and to install.</p> http://stackoverflow.com/questions/287089/code-coverage-targets-for-apis/294551#294551 0 Answer by marcospereira for Code coverage targets for APIs marcospereira 2008-11-16T23:23:39Z 2009-10-07T21:32:36Z <p>Just forget about code coverage. It's just a number and must not be the focus when testing code. Scenarios must be the focus and then, high Quality API. I know that this could sound rhetorical bullshit, but you must change your mindset from code coverage to scenarios: are you testing a lot of scenarios which your API is intent to handle?</p> <p>Code coverage will be useful to detect that you are missing some scenarios and if you write a lot of good scenarios you will have a near 100% coverage, but again, it is just a number and must not be your focus.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/1534167/in-groovy-is-there-a-way-to-check-if-an-object-has-a-given-method/1534283#1534283 2 Answer by marcospereira for In groovy, is there a way to check if an object has a given method? marcospereira 2009-10-07T21:24:22Z 2009-10-07T21:24:22Z <p>Just implement method missing in you class:</p> <pre><code>class Foo { def methodMissing(String name, args) { return null; } } </code></pre> <p>And then, every method time you try to invoke a method that don't exists, you will get a null value.</p> <pre><code>def foo = new Foo(); assert foo.someMethod(), null </code></pre> <p>For more information, take a lot here: <a href="http://groovy.codehaus.org/Using+methodMissing+and+propertyMissing" rel="nofollow">http://groovy.codehaus.org/Using+methodMissing+and+propertyMissing</a></p> <p>HTH</p> http://stackoverflow.com/questions/1522143/which-is-the-standard-java-crypto-api/1522617#1522617 0 Answer by marcospereira for Which is the standard Java crypto API? marcospereira 2009-10-05T21:56:39Z 2009-10-05T21:56:39Z <p><a href="http://www.jasypt.org" rel="nofollow">http://www.jasypt.org</a> is also a good option.</p> http://stackoverflow.com/questions/1522444/how-to-redirect-all-console-output-to-a-swing-jtextarea-jtextpane-with-the-right/1522602#1522602 0 Answer by marcospereira for How to redirect all console output to a Swing JTextArea/JTextPane with the right encoding? marcospereira 2009-10-05T21:53:23Z 2009-10-05T21:53:23Z <p>You should create the PrintStream with the right encode: <a href="http://tinyurl.com/ybooutp" rel="nofollow">http://tinyurl.com/ybooutp</a></p> <p>Could you please provide more code about what are you trying to do?</p> http://stackoverflow.com/questions/238079/the-funniest-weirdest-error-message-youve-got-from-a-development-environment-app/1522584#1522584 1 Answer by marcospereira for The funniest/weirdest error message you've got from a development environment/application marcospereira 2009-10-05T21:48:54Z 2009-10-05T21:48:54Z <p>"UnbelievableException: no way! this exception will be not throwed".</p> <p>I can't believe that someone wrote this kind of code/joke.</p> http://stackoverflow.com/questions/1484854/web-xml-servlet-mapping-for-wildcard-requests/1484881#1484881 0 Answer by marcospereira for web.xml servlet mapping for wildcard requests marcospereira 2009-09-28T00:16:13Z 2009-09-28T00:16:13Z <p>Really not sure about that, but maybe the order that you declare\map your servlets defines precedence. Try to declare\map test2 first and see.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/506911/java-distributed-programming-rmi/507517#507517 0 Answer by marcospereira for Java - Distributed Programming, RMI? marcospereira 2009-02-03T15:21:01Z 2009-02-03T15:21:01Z <p><a href="http://www.gridgain.com" rel="nofollow">GridGain</a> is a good alternative. They have a map/reduce implementation with "direct API support for split and aggregation" and "distributed task session". You can browse <a href="http://www.gridgainsystems.com/wiki/display/GG15UG/Examples+Gallery" rel="nofollow">their examples</a> and see if some of them fits with your needs.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/230199/filtering-warnings-in-eclipse-by-filename/232473#232473 1 Answer by marcospereira for Filtering warnings in eclipse by filename marcospereira 2008-10-24T04:21:05Z 2008-10-24T04:21:05Z <p>Just use a Working Set. Details about how to do it here: <a href="http://blog.bwtaylor.com/2007/08/14/FilterEclipseProblemView" rel="nofollow">Excluding Unfixables from Eclipse Problem View</a></p> <p>And here: <a href="http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.user/concepts/cprbview.htm" rel="nofollow">Eclipse Problems view</a></p> <p>Kind Regards</p> http://stackoverflow.com/questions/212659/lua-library-for-jabber/212694#212694 1 Answer by marcospereira for Lua Library for Jabber marcospereira 2008-10-17T15:41:29Z 2008-10-17T15:41:29Z <p><a href="http://matthewwild.co.uk/projects/verse/verse_doc.xml" rel="nofollow">Verse</a>.</p> <blockquote> <p>Verse is a Jabber/XMPP library for Lua. It is based on the C version of the strophe library.</p> <p>One handy feature of verse is that only the core protocol is implemented by default. Extensions to the protocol (either XEPs, or custom-made protocols) can be 'described', and then used by any verse application. It is the developer's intention to include support for as many XEPs as possible with verse, any number of which can be optionally loaded by the application when initialising the library. </p> </blockquote> <p>Kind Regards</p> http://stackoverflow.com/questions/195639/what-libs-can-i-use-to-bind-pojos-to-external-files-for-tdd-without-much-overhead/195780#195780 0 Answer by marcospereira for What libs can I use to bind POJOs to external files for TDD without much overhead? marcospereira 2008-10-12T17:57:28Z 2008-10-12T17:57:28Z <p>Just use XStream (for XML or you could give a try to JSON).</p> <p>But...</p> <p>Man, I just can't avoid to think that put the test data outside the unit test itself will leads you to unreadable tests. You will need look two files when reading a test case, you will lose refactoring tools (when changing property's name). Jay Fields can explain it better than me:</p> <p><a href="http://blog.jayfields.com/2007/06/testing-inline-setup.html" rel="nofollow">http://blog.jayfields.com/2007/06/testing-inline-setup.html</a></p> <p>Kind Regards</p> http://stackoverflow.com/questions/27435/mysql-vs-postgresql-for-web-applications/189929#189929 0 Answer by marcospereira for MySQL vs PostgreSQL for Web Applications marcospereira 2008-10-10T02:34:37Z 2008-10-10T02:34:37Z <p>@WolfmanDragon</p> <p>PostgreSQL has (tiny) support for objects, but it is, by nature, a relational database. From its <a href="http://www.postgresql.org/about/" rel="nofollow">about page</a>:</p> <blockquote> <p>PostgreSQL is a powerful, open source <strong>relational</strong> database system.</p> </blockquote> http://stackoverflow.com/questions/188346/do-you-personally-identify-with-your-code/189884#189884 0 Answer by marcospereira for Do you personally identify with your code? marcospereira 2008-10-10T02:11:33Z 2008-10-10T02:11:33Z <p>I call my self a problem solver. Well, software problem solver. :-)</p> <p>In <a href="http://rads.stackoverflow.com/amzn/click/0932633420" rel="nofollow">The Psychology of Computer Programming</a>, Gerald Weinberg talks about <a href="http://en.wikipedia.org/wiki/Egoless_programming" rel="nofollow">egoless programming</a>. You are not your code. Moreover, languages, frameworks, libraries, practices and so on are just tools. We, as software developers, must learn them in order to both grow our toolset and know when to use each tool.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/186964/java-core-api-anti-patterns-what-is-wrong/187015#187015 7 Answer by marcospereira for Java core API anti-Patterns. What is wrong? marcospereira 2008-10-09T12:23:57Z 2008-10-09T12:23:57Z <ul> <li>java.util.Calendar is a example of bad API design. Try to calculate the difference in days between two calendars and you will see that code is not readable/clear/succinct. APIs to handle dates in Java are bad. But things <a href="http://jcp.org/en/jsr/detail?id=310" rel="nofollow">is getting better</a>.</li> <li>Some parts of Collections API. Per instance, "sort" must be a java.util.List method (they can't do it now because of compatibility); "Stack extends Vector" and lack of ways to handle collections in a easily (predicates, transformers, filters, etc)</li> <li>Layout managers in Swing: powerful, but totally complicated. </li> <li>java.util.Properties is a HashTable. Non sense!</li> </ul> http://stackoverflow.com/questions/184060/java-application-installers/184081#184081 3 Answer by marcospereira for Java Application Installers marcospereira 2008-10-08T18:15:20Z 2008-10-08T18:15:20Z <p>If you are looking for an Open Source solution, take a look here: <a href="http://java-source.net/open-source/installer-generators" rel="nofollow">http://java-source.net/open-source/installer-generators</a></p> <p>I have used <a href="http://www.acresso.com/products/installation/installanywhere.htm" rel="nofollow">InstallAnywhere</a> and I think that it is a good solution too.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/159059/what-is-the-correct-term-for-the-documentation-that-we-put-just-above-a-method-de/160331#160331 0 Answer by marcospereira for What is the correct term for the documentation that we put just above a method declaration? marcospereira 2008-10-02T00:09:47Z 2008-10-02T00:09:47Z <p>I call it code comments, simple like that.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/160218/to-ternary-or-not-to-ternary/160295#160295 30 Answer by marcospereira for To ternary or not to ternary? marcospereira 2008-10-01T23:58:49Z 2008-10-01T23:58:49Z <p>Use when you have expressions that are very simple:</p> <pre><code>int a = (b &gt; 10) ? c : d; </code></pre> <p>Avoid to chain ternary operators:</p> <pre><code>int a = b &gt; 10 ? c &lt; 20 ? 50 : 80 : e == 2 ? 4 : 8; </code></pre> <p>The expression above is very hard to read and must be avoided! Moreover, when using ternary operator, consider format the code in a way that improve readability:</p> <pre><code>int a = (b &gt; 10) ? some_value : another_value; </code></pre> <p>Kind Regards</p> http://stackoverflow.com/questions/156774/distributed-corporate-collaboration-tools/160276#160276 1 Answer by marcospereira for Distributed corporate collaboration tools marcospereira 2008-10-01T23:49:34Z 2008-10-01T23:49:34Z <p><a href="http://www.igniterealtime.org/projects/openfire/index.jsp" rel="nofollow">OpenFire</a> + <a href="http://www.igniterealtime.org/projects/spark/index.jsp" rel="nofollow">Spark</a> are good, very good. There is a <a href="http://www.igniterealtime.org/projects/openfire/plugins-beta.jsp" rel="nofollow">beta plugin</a> to integrate both with red5 and enable video and audio stream. AFAIK, Spark already have support for SIP.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/158128/best-practices-considered-harmful/158163#158163 6 Answer by marcospereira for Best practices considered harmful? marcospereira 2008-10-01T15:19:51Z 2008-10-01T15:19:51Z <p>There is no such thing like "best practices". There is "best practices for a given context".</p> <p>Kind Regards</p> http://stackoverflow.com/questions/151677/tool-for-adding-license-headers-to-source-files/155953#155953 1 Answer by marcospereira for Tool for adding license headers to source files? marcospereira 2008-10-01T02:07:49Z 2008-10-01T02:07:49Z <p>For Java, <a href="http://code.google.com/p/maven-license-plugin/" rel="nofollow">http://code.google.com/p/maven-license-plugin/</a></p> <p>Kind Regards</p> http://stackoverflow.com/questions/154728/how-do-i-use-resourcebundle-to-avoid-hardcoded-config-paths-in-java-apps/155860#155860 2 Answer by marcospereira for How do I use ResourceBundle to avoid hardcoded config paths in Java apps? marcospereira 2008-10-01T01:35:51Z 2008-10-01T01:35:51Z <p>You don't need a ResourceBundle. A simple Properties object can do the job. Just use the classloader to get an inputstream for you properties file and use it to load de values. If you need to handle more sophisticated user configurations, use the <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/prefs/Preferences.html" rel="nofollow">preferences api</a>.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/152988/suggestion-on-remoting-rpc-rmi-for-jse-client-server-app/153335#153335 2 Answer by marcospereira for suggestion on remoting (rpc, rmi) for jse client-server app? marcospereira 2008-09-30T14:36:30Z 2008-09-30T14:36:30Z <p><a href="http://mina.apache.org/" rel="nofollow">Apache Mina</a>. Not true rpc but easy to use and surely a option to consider. </p> <p>Kind Regards</p> http://stackoverflow.com/questions/152714/multiple-correct-results-with-hamcrest-is-there-a-or-matcher/153198#153198 3 Answer by marcospereira for Multiple correct results with Hamcrest (is there a or-matcher?) marcospereira 2008-09-30T14:13:19Z 2008-09-30T14:23:33Z <pre><code>assertThat (result, anyOf(equalTo(1), equalTo(2), equalTo(3))) </code></pre> <p>From <a href="http://code.google.com/p/hamcrest/wiki/Tutorial" rel="nofollow">Hamcrest tutorial</a>: </p> <blockquote> <p>anyOf - matches if any matchers match, short circuits (like Java ||) </p> </blockquote> <p>Moreover, you could write your own Matcher, what is quite easy to do.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/135976/your-most-time-consuming-task-as-a-developer/136176#136176 1 Answer by marcospereira for Your most time-consuming task as a developer? marcospereira 2008-09-25T21:12:18Z 2008-09-25T21:27:58Z <p>Write code and talk with people involved in project.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/135789/tdd-when-you-can-move-on/136251#136251 1 Answer by marcospereira for TDD. When you can move on? marcospereira 2008-09-25T21:25:37Z 2008-09-25T21:25:37Z <p>Alberto Savoia <a href="http://tinyurl.com/4fnqar" rel="nofollow">says</a> that "<em>if all your tests pass, chances are that your test are not good enough</em>". I think that it is a good way to think about tests: ask if you are doing edge cases, pass some unexpected parameter and so on. A good way to improve the quality of your tests is work with a pair - specially a tester - and get help about more test cases. Pair with testers is good because they have a different point of view.</p> <p>Of course, you could use some tool to do <a href="http://en.wikipedia.org/wiki/Mutation_testing" rel="nofollow">mutation tests</a> and get more confidence from your tests. I have used <a href="http://jester.sourceforge.net/" rel="nofollow">Jester</a> and it improve both my tests and the way that I wrote them. Consider to use something like it.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/136098/grails-1-0-3-console-reports-premature-end-of-file/136125#136125 12 Answer by marcospereira for Grails 1.0.3 console reports 'premature end of file' marcospereira 2008-09-25T21:04:44Z 2008-09-25T21:04:44Z <p>This bug was already fixed: <a href="http://jira.codehaus.org/browse/GRAILS-3088" rel="nofollow">http://jira.codehaus.org/browse/GRAILS-3088</a></p> <p>Kind Regards</p> http://stackoverflow.com/questions/128099/what-is-the-longest-human-name-you-can-expect/128205#128205 1 Answer by marcospereira for What is the longest human name you can expect? marcospereira 2008-09-24T16:25:44Z 2008-09-24T16:25:44Z <p>"Pedro de Alcântara Francisco Antonio João Carlos Xavier de Paula Miguel Rafael Joaquim José Gonzaga Pascoal Cipriano Serafim de Bragança e Bourbom" was Peter I's <a href="http://pt.wikipedia.org/wiki/Dom_pedro" rel="nofollow">complete name</a>.</p> <p>Anyway, Dynite answer is so much more funny. :-D</p> http://stackoverflow.com/questions/125313/how-to-launch-from-eclipse-in-low-priority-under-windows/125322#125322 0 Answer by marcospereira for How to launch from Eclipse in Low priority under Windows? marcospereira 2008-09-24T03:51:24Z 2008-09-24T03:51:24Z <p>A better alternative is configure the amount of memory that Eclipse will use: <a href="http://www.eclipsezone.com/eclipse/forums/t61618.html" rel="nofollow">http://www.eclipsezone.com/eclipse/forums/t61618.html</a></p> <p>And do a google search about -Xmx and -Xms parameters for JVM (which you could configure for <em>runners</em> inside Eclipse).</p> <p>Kind Regards</p> http://stackoverflow.com/questions/123127/ant-junit-tests-are-running-much-slower-via-ant-than-via-ide-what-to-look-at/125305#125305 1 Answer by marcospereira for Ant Junit tests are running much slower via ant than via IDE - what to look at? marcospereira 2008-09-24T03:42:21Z 2008-09-24T03:42:21Z <p>Maybe you are seeing that because Eclipse do incremental compiling and Ant don't. Can you confirm that this time is wasted only in the test target?</p> <p>Kind Regards</p> http://stackoverflow.com/questions/111461/auto-implemented-getters-and-setters-vs-public-members/111548#111548 1 Answer by marcospereira for Auto-implemented getters and setters vs. public members marcospereira 2008-09-21T17:55:23Z 2008-09-24T03:27:48Z <p>Maybe just making fields public you could leads you to a more <a href="http://www.martinfowler.com/bliki/AnemicDomainModel.html" rel="nofollow">Anemic Domain Model</a>.</p> <p>Kind Regards</p> http://stackoverflow.com/questions/160218/to-ternary-or-not-to-ternary/160295#160295 Comment by marcospereira on To ternary or not to ternary? marcospereira 2009-10-05T17:34:13Z 2009-10-05T17:34:13Z just because if else is a quite more verbose for simple decisions: int a = 0; if(b &gt; 10) a = some_value; else a = another_value; What do you prefer? http://stackoverflow.com/questions/77352/how-do-i-reward-my-developers-for-the-little-things-they-get-right/77439#77439 Comment by marcospereira on How do I reward my developers for the little things they get right? marcospereira 2008-11-27T03:01:20Z 2008-11-27T03:01:20Z But, please, don't lie or try to fake it. Your developers are smart enough to perceive that you are lying/faking it. http://stackoverflow.com/questions/212562/is-there-a-good-way-to-have-a-mapstring-get-and-put-ignore-case/212629#212629 Comment by marcospereira on Is there a good way to have a Map<String, ?> get and put ignore case? marcospereira 2008-10-17T15:28:05Z 2008-10-17T15:28:05Z Remember to use a locale when doing upper and lower case operations. http://stackoverflow.com/questions/203030/best-way-to-list-files-in-java-sorted-by-date-modified Comment by marcospereira on Best way to list files in Java, sorted by Date Modified? marcospereira 2008-10-15T03:40:20Z 2008-10-15T03:40:20Z This code don't compiles. compare methods expect that the return is a int instead of a Long. http://stackoverflow.com/questions/203475/how-do-i-identify-immutable-objects-in-java/203571#203571 Comment by marcospereira on How do I identify immutable objects in Java marcospereira 2008-10-15T03:37:37Z 2008-10-15T03:37:37Z Maybe &quot;isValidFieldType&quot; could do a recursion to isImmutable. :-) http://stackoverflow.com/questions/189094/how-to-scan-a-folder-in-java/189739#189739 Comment by marcospereira on How to scan a folder in Java? marcospereira 2008-10-10T01:49:03Z 2008-10-10T01:49:03Z I can't remember how much times I have wrote this code. :-P http://stackoverflow.com/questions/188606/how-to-make-junit-testing-to-stop-after-first-failing-test Comment by marcospereira on How to make junit testing to stop after first failing test marcospereira 2008-10-10T01:47:09Z 2008-10-10T01:47:09Z Exactly: why not see all failing tests? http://stackoverflow.com/questions/186799/resultset-retrieving-column-values-by-index-versus-retrieving-by-label/186821#186821 Comment by marcospereira on ResultSet: Retrieving column values by index versus retrieving by label marcospereira 2008-10-09T13:49:14Z 2008-10-09T13:49:14Z + for String constants. http://stackoverflow.com/questions/183499/is-there-a-preference-for-nested-try-catch-blocks/183572#183572 Comment by marcospereira on Is there a preference for nested try/catch blocks? marcospereira 2008-10-08T18:17:28Z 2008-10-08T18:17:28Z Jakarta Commons IO have something like that. http://stackoverflow.com/questions/155388/interface-questions/155418#155418 Comment by marcospereira on Interface questions. marcospereira 2008-10-01T01:39:34Z 2008-10-01T01:39:34Z oops... you can't use &quot;this&quot; inside a static context. But the idea about visitor is right. http://stackoverflow.com/questions/135976/your-most-time-consuming-task-as-a-developer/136004#136004 Comment by marcospereira on Your most time-consuming task as a developer? marcospereira 2008-09-25T21:08:36Z 2008-09-25T21:08:36Z People say that more you write test less you waste your time in debug sessions. http://stackoverflow.com/questions/128208/what-is-the-best-way-to-schedule-employees-to-be-on-call/128214#128214 Comment by marcospereira on What is the best way to schedule employees to be on call? marcospereira 2008-09-24T16:30:37Z 2008-09-24T16:30:37Z And try to solve the root problem cause in order to avoid new call for the same problem (what is so much boring). http://stackoverflow.com/questions/124671/picking-a-random-element-from-a-set/124749#124749 Comment by marcospereira on Picking a random element from a set marcospereira 2008-09-24T12:41:38Z 2008-09-24T12:41:38Z I prefer the second alternative. :-) http://stackoverflow.com/questions/122105/java-what-is-the-best-way-to-filter-a-collection/122204#122204 Comment by marcospereira on Java: What is the best way to filter a Collection? marcospereira 2008-09-24T03:45:33Z 2008-09-24T03:45:33Z Fine, but I prefer Alan implementation because you get a copy of the collection instead of altering it. Moreover, Alan's code is thread safe while yours is not. http://stackoverflow.com/questions/123691/use-continue-or-checked-exceptions-when-checking-and-processing-objects/123775#123775 Comment by marcospereira on Use continue or Checked Exceptions when checking and processing objects marcospereira 2008-09-24T03:40:27Z 2008-09-24T03:40:27Z Document is valid looks more oop. Maybe you could just put all that code inside the Document class.