User cynicalman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T19:54:13Zhttp://stackoverflow.com/feeds/user/410http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1622597/renaming-directory-with-same-name-different-case/1622601#16226011Answer by cynicalman for Renaming Directory with same name different casecynicalman2009-10-26T00:29:24Z2009-10-26T00:29:24Z<p>The answer is yes in this case - the file system itself doesn't see the two as different, so you'll need to delete and the add as the new name (or move/delete/move as you suggested)</p>
http://stackoverflow.com/questions/1622591/is-there-an-ide-or-plugin-which-allows-separation-of-code-from-layout/1622598#16225980Answer by cynicalman for Is there an IDE or plugin which allows separation of code from layout?cynicalman2009-10-26T00:26:58Z2009-10-26T00:26:58Z<p>I don't think such a thing exists, the best solution is to have a custom style for local coding (most IDE's allow this) and then use a tool to reformat your source code (like Jalopy for Java) when you commit it centrally.</p>
<p>That way you have something that's common centrally, but can still style how you want locally.</p>
<p>I don't know of any tool that can arbitrarily apply a style to code without actually modifying the text itself. Since you need to edit the code, that seems impractical.</p>
http://stackoverflow.com/questions/972637/java-noob-question-how-to-store-a-string-to-a-new-text-file/972651#9726515Answer by cynicalman for Java noob question - how to store a string to a new text filecynicalman2009-06-09T21:43:03Z2009-06-09T21:43:03Z<p>Use createTempFile to create a new file every time, use FileWriter to write to the file.</p>
<pre><code>import java.io.File;
import java.io.IOException;
import java.io.FileWriter;
public class Main {
public static void main(String[] args) throws IOException {
File f = File.createTempFile("selenium", "txt");
FileWriter writer = new FileWriter(f);
writer.append("text");
}
}
</code></pre>
http://stackoverflow.com/questions/6166/any-good-php-ide-preferably-free-or-cheap/6169#616945Answer by cynicalman for Any good PHP IDE, preferably free or cheap?cynicalman2008-08-08T17:20:55Z2009-05-10T13:08:57Z<p><a href="http://www.netbeans.org/" rel="nofollow">NetBeans</a> is a nice free editor that has been steadily adding support for languages like Ruby, PHP and Python. I've been using it on a MacBook Pro for Ruby and quite like it.</p>
<p>It has the standard IDE features like SCM integration and runs on most platforms.</p>
http://stackoverflow.com/questions/466548/junit-making-sure-failures-in-the-test-method-are-shown-before-failures-in-afte/466940#4669400Answer by cynicalman for JUnit: Making sure failures in the test method are shown before failures in @After methodscynicalman2009-01-21T20:52:52Z2009-01-21T20:52:52Z<p>What asserts are you doing in your tests that the verify in @After is being reported? If there is an assertion failure (or the fail() method is called) then that will be reported, and the after method will not be reported. What does the test method look like?</p>
http://stackoverflow.com/questions/466819/how-can-i-make-my-selenium-tests-less-brittle/466889#4668893Answer by cynicalman for How can I make my Selenium tests less brittle?cynicalman2009-01-21T20:40:58Z2009-01-21T20:40:58Z<p>How are you creating your Selenium tests, by recording them and playing them back? What we have done is build an object model around pages so that you call a method like "clickSubmit()" rather than clicking on an id (with a naming convention for these ids), which allows selenium tests to survive many changes.</p>
http://stackoverflow.com/questions/247025/using-the-main-method-of-classes-for-debugging/247047#2470470Answer by cynicalman for Using the main method of classes for debugging?cynicalman2008-10-29T14:38:07Z2008-10-29T14:38:07Z<p>The main method can be useful for certain situations, but using a debugger and then writing a unit test (to provide some insurance against regressions) is a more robust solution.</p>
http://stackoverflow.com/questions/59968/best-editor-or-ide-for-ruby/227687#22768716Answer by cynicalman for Best Editor or IDE for Ruby?cynicalman2008-10-22T21:55:51Z2008-10-22T21:55:51Z<p><a href="http://www.netbeans.org/kb/60/ruby/" rel="nofollow">NetBeans from Sun</a>, with the Ruby package. Syntax highlighting, auto complete, debugging support, unit test support. Plus it's multiplatform and free.</p>
http://stackoverflow.com/questions/223421/adding-unit-tests-to-an-existing-project/223470#2234702Answer by cynicalman for Adding unit tests to an existing projectcynicalman2008-10-21T20:54:52Z2008-10-21T20:54:52Z<p><a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively With Legacy Code</a> is the best resource for how to start testing old code. There are really no short term solutions that won't result in things getting worse.</p>
http://stackoverflow.com/questions/205160/what-can-cause-intermittent-ora-12519-tns-no-appropriate-handler-found-errors/206912#2069123Answer by cynicalman for What can cause intermittent ORA-12519 (TNS: no appropriate handler found) errorscynicalman2008-10-15T23:34:19Z2008-10-15T23:34:19Z<p>Don't know if this will be everybody's answer, but after some digging, here's what we came up with.</p>
<p>The error is obviously caused by the fact that the listener was not accepting connections, but why would we get that error when other tests could connect fine (we could also connect no problem through sqlplus)? The key to the issue wasn't that we couldn't connect, but that it was <strong>intermittent</strong></p>
<p>After some investigation, we found that there was some static data created during the class setup that would keep open connections for the life of the test class, creating new ones as it went. Now, even though all of the resources were properly released when this class went out of scope (via a finally{} block, of course), there were some cases during the run when this class would swallow up all available connections (okay, bad practice alert - this was unit test code that connected directly rather than using a pool, so the same problem could not happen in production).</p>
<p>The fix was to not make that class static and run in the class setup, but instead use it in the per method setUp and tearDown methods.</p>
<p>So if you get this error in your own apps, slap a profiler on that bad boy and see if you might have a connection leak. Hope that helps.</p>
http://stackoverflow.com/questions/205160/what-can-cause-intermittent-ora-12519-tns-no-appropriate-handler-found-errors1What can cause intermittent ORA-12519 (TNS: no appropriate handler found) errorscynicalman2008-10-15T15:25:49Z2008-10-15T23:34:19Z
<p>We are running our Junit 4 test suite against Weblogic 9 in front of an Oracle 10 database (using Hudson as a continuous integration server) and occasionally we will get an ORA-12519 crash during script teardown. However, the error is very intermittent: </p>
<ul>
<li>It usually happens for the same Test class </li>
<li>It doesn't always happen for the same test cases (sometimes they pass) </li>
<li>It doesn't happen for the same number of test cases (anywhere from 3-9) </li>
<li>Sometimes it doesn't happen at all, everything passes </li>
</ul>
<p>While I can't guarantee this doesn't happen locally (when running against the same database, of course), I have run the same suite of class multiple times with no issues.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/204694/easy-way-to-translate-from-dto-to-entity-and-entity-to-dto/204721#2047210Answer by cynicalman for Easy way to translate from DTO to Entity and Entity to DTO?cynicalman2008-10-15T13:36:12Z2008-10-15T13:36:12Z<p>I've had success using tools like XDoclet (although it shouldn't be to hard to script) to automatically generate transfer objects and simple entity translations.</p>
<p>That said, if you believe your Entity translations are simple enough to be done using reflection, is there a reason you can't just pass the Entity objects over the wire instead of DTO's? It might be better to have a slightly custom serialization than a full blown DTO.</p>
http://stackoverflow.com/questions/131115/should-all-public-methods-of-an-api-be-documented8Should all public methods of an API be documented?cynicalman2008-09-25T02:10:21Z2008-10-11T07:46:14Z
<p>When writing "library" type classes, is it better practice to always write markup documentation (i.e. javadoc) in java or assume that the code can be "self-documenting"? For example, given the following method stub:</p>
<pre><code>/**
* Copies all readable bytes from the provided input stream to the provided output
* stream. The output stream will be flushed, but neither stream will be closed.
*
* @param inStream an InputStream from which to read bytes.
* @param outStream an OutputStream to which to copy the read bytes.
* @throws IOException if there are any errors reading or writing.
*/
public void copyStream(InputStream inStream, OutputStream outStream) throws IOException {
// copy the stream
}
</code></pre>
<p>The javadoc seems to be self-evident, and noise that just needs to be updated if the funcion is changed at all. But the sentence about flushing and not closing the stream could be valuable.</p>
<p>So, when writing a library, is it best to:</p>
<p>a) always document<br />
b) document anything that isn't obvious<br />
c) never document (code should speak for itself!) </p>
<p>I usually use b), myself (since the code can be self-documenting otherwise)...</p>
http://stackoverflow.com/questions/184272/what-exactly-does-the-word-patch-mean-when-refering-to-submitting-a-patch/184295#1842950Answer by cynicalman for What exactly does the word Patch mean when refering to 'submitting a patch'?cynicalman2008-10-08T18:53:11Z2008-10-08T18:53:11Z<p>A patch file represents the difference between existing source and source you've modified. It is the primary means of adding features or fixing bugs in many projects.</p>
<p>You create a patch using the diff command (for example).</p>
<p>You can then submit this patch to the development mailing list and if it received well, then a committer will apply the patch (thus automatically applying your changes) and commit the code. </p>
<p>Patches are applied using the patch command.</p>
http://stackoverflow.com/questions/182702/how-do-i-send-a-binary-attachment-in-an-email-with-java-using-the-javamail-api/182817#1828172Answer by cynicalman for How do I send a binary attachment in an email with Java using the JavaMail API? cynicalman2008-10-08T13:42:22Z2008-10-08T13:42:22Z<p>Assuming that you don't want to read some links and don't want any external dependencies, you need to use MimeMultipart and BodyPart:</p>
<pre><code>MimeMultipart messageContent = new MimeMultipart();
BodyPart bodyPart = new MimeBodyPart();
DataSource source = new FileDataSource(yourFile);
bodyPart.setDataHandler(new DataHandler(source);
bodyPart.setFileName("MyFile.ext");
bodyPart.setDisposition(Part.ATTACHMENT);
// Then add to your message:
messageContent.addBodyPart(bodyPart);
</code></pre>
<p>Attaching a body to the messages is just attaching a BodyPart with disposition Part.INLINE</p>
http://stackoverflow.com/questions/182749/do-you-change-the-way-you-think-when-moving-between-java-and-c/182775#1827753Answer by cynicalman for Do you change the way you think when moving between Java and C#cynicalman2008-10-08T13:33:55Z2008-10-08T13:33:55Z<p>I find that most difficult switches are around generics (which C# does better), delegates (which Java sort of hacks with anonymous inner classes) and the events (which Java doesn't have)</p>
<p>I find that making sure you are using the idioms of the language (i.e. using delegates instead of creating an interface in C#) will help snap your mind into gear.</p>
http://stackoverflow.com/questions/174881/how-to-mock-the-initialcontext-class-with-jmockit/175207#1752071Answer by cynicalman for How to mock the InitialContext class with jmockit?cynicalman2008-10-06T17:02:51Z2008-10-06T17:02:51Z<p>In general, to mock JNDI, you will need to use a framework, such as EJBMock, that can provide a mock container in which to deploy your beans.</p>
<p>The other alternative is to refactor creating the context out of your code so that it is passed in (this is dependency injection refactoring), and then you should be able to substitute a mock at will.</p>
http://stackoverflow.com/questions/146989/style-question-writing-this-before-instance-variable-and-methods-good-or-bad/146995#14699529Answer by cynicalman for Style question: Writing "this." before instance variable and methods: good or bad idea?cynicalman2008-09-28T23:30:59Z2008-09-28T23:30:59Z<p>I think it's less readable, especially in environments where fields are highlighted differently from local variables. The only time I want to see "this" is when it is required, for example:</p>
<pre><code>this.fieldName = fieldName
</code></pre>
<p>When assigning the field.</p>
<p>That said, if you need some way to differentiate fields for some reason, I prefer "this.fieldName" to other conventions, like "m_fieldName" or "_fieldName"</p>
http://stackoverflow.com/questions/146316/ideal-number-of-classes-per-namespace-branch/146323#1463236Answer by cynicalman for Ideal number of classes per namespace branchcynicalman2008-09-28T17:38:43Z2008-09-28T17:38:43Z<p>With modern IDEs and other dev tools, I would say that if all the classes belong in a namespace, then there is no arbitrary number at which you should break up a namespace just for maintainability.</p>
http://stackoverflow.com/questions/146311/immutable-class-should-be-final/146318#1463183Answer by cynicalman for immutable class should be final?cynicalman2008-09-28T17:36:51Z2008-09-28T17:36:51Z<p>Because if the class is final you can't extend it and make it mutable.</p>
<p>Even if you make the fields final, that only means you cannot reassign the reference, it does not mean you cannot change the object that is referred to.</p>
<p>I don't see a lot of use in a design for an immutable class that also should be extended, so final helps keep the immutability intact.</p>
http://stackoverflow.com/questions/146305/organizing-classes-into-namespaces/146313#1463132Answer by cynicalman for Organizing classes into namespaces.cynicalman2008-09-28T17:33:53Z2008-09-28T17:33:53Z<p>In general, that should be fine for your example, if your packages were "N.UI" and "N.Util". I've seen namespaces used in two general fashions:</p>
<p>1) All tiers of a system have a namespace (i.e. database, web, biz, etc.)<br />
2) Each component has a namespace (i.e. Customer, Invoice) and tiered namespaced underneath </p>
<p>Either way, the sub namespaces would be inter-related packages within a larger namespace, so it would be perfectly fine for you UI code to depend on your domain objects.</p>
<p>However, while it would be fine for N.X classes to depend on classes from N, I don't think it would make much sense for classes from N to depend on classes from N.X - it sounds like you could use some reorganization in that case.</p>
http://stackoverflow.com/questions/140522/what-options-do-you-recommend-for-language-translation-on-content-driven-web-site/140534#1405344Answer by cynicalman for What options do you recommend for language translation on content driven Web sites?cynicalman2008-09-26T16:25:25Z2008-09-26T16:25:25Z<p>I have yet to see a dynamic translation service that would be suitable for the content of a professional website. Language translation is not (yet) a mechanical activity - it requires thought and analysis. Your clients would best be served by outsourcing translation (or hiring a translator).</p>
http://stackoverflow.com/questions/134298/how-select-the-rest-of-the-word-in-incremental-search-in-intellij-idea/134345#1343455Answer by cynicalman for How select the rest of the word in incremental search in Intellij IDEA?cynicalman2008-09-25T16:24:00Z2008-09-25T16:24:00Z<p>Yes, you can use autocomplete during an incremental search.</p>
<p>After you type "han", press CTRL-SPACE (autocomplete) and it will give you a list of potential matches in the file. Just pick "handleReservationsGranted" from the list and that will become your search term.</p>
http://stackoverflow.com/questions/26763/when-do-you-decide-to-walk/131287#13128713Answer by cynicalman for When do you decide to walk?cynicalman2008-09-25T03:14:36Z2008-09-25T03:14:36Z<p>Make two lists:</p>
<p>a) Things you will miss when you leave<br />
b) Things you will be glad to be rid of when you leave.</p>
<p>Run this program:</p>
<pre><code>public class ShouldIStayOrShouldIGo {
public static void main(String[] args) {
if (a.length < b.length) {
System.out.println("Looks like it's time to leave.");
} else {
System.out.println("I'm digging it.");
}
}
}
</code></pre>
http://stackoverflow.com/questions/131241/why-use-iterators-instead-of-array-indices/131259#13125910Answer by cynicalman for Why use iterators instead of array indices?cynicalman2008-09-25T03:04:54Z2008-09-25T03:04:54Z<p>Because it is more object-oriented. if you are iterating with an index you are assuming:</p>
<p>a) that those objects are ordered<br />
b) that those objects can be obtained by an index<br />
c) that the index increment will hit every item<br />
d) that that index starts at zero</p>
<p>With an iterator, you are saying "give me everything so I can work with it" without knowing what the underlying implementation is. (In Java, there are collections that cannot be accessed through an index)</p>
<p>Also, with an iterator, no need to worry about going out of bounds of the array.</p>
http://stackoverflow.com/questions/130965/what-is-the-worst-code-youve-ever-written/131184#1311841Answer by cynicalman for What is the worst code you've ever written?cynicalman2008-09-25T02:36:02Z2008-09-25T02:36:02Z<p>I dimly recall a Crystal Report containing a SQL statement sooooo large that it had to be edited in a text editor and then have <strong>all</strong> unneeded whitespace stripped so that it would fit within the limits of the Crystal text area (shudder)</p>
http://stackoverflow.com/questions/129345/how-to-pass-arguments-to-a-constructor-in-an-ioc-framework/129363#1293630Answer by cynicalman for How to pass arguments to a constructor in an IOC-frameworkcynicalman2008-09-24T19:35:08Z2008-09-24T19:35:08Z<p>Yes, other frameworks are more feature-rich - you need to use an ioc framework that allows for constructor injection. Spring is an example of a multi-language ioc container that allows constructor dependency injection.</p>
http://stackoverflow.com/questions/129257/eclipse-sytle-function-completions-in-emacs-for-c-c-and-java/129327#1293271Answer by cynicalman for Eclipse Sytle Function Completions in Emacs for C, C++ and JAVA?cynicalman2008-09-24T19:28:52Z2008-09-24T19:28:52Z<p>Have you tried the emacs plugin for eclipse?</p>
<p><a href="http://people.csail.mit.edu/adonovan/hacks/eclipse-emacs.html" rel="nofollow">http://people.csail.mit.edu/adonovan/hacks/eclipse-emacs.html</a></p>
http://stackoverflow.com/questions/129267/why-no-static-methods-in-interfaces-but-static-fields-and-inner-classes-ok/129308#1293081Answer by cynicalman for Why no static methods in Interfaces, but static fields and inner classes OK?cynicalman2008-09-24T19:26:04Z2008-09-24T19:26:04Z<p>Only static final fields may be declared in an interface (much like methods, which are public even if you don't include the "public" keyword, static fields are "final" with or without the keyword).</p>
<p>These are only values, and will be copied literally wherever they are used at compile time, so you never actually "call" static fields at runtime. Having a static method would not have the same semantics, since it would involve calling an interface without an implementation, which Java does not allow.</p>
http://stackoverflow.com/questions/88140/dysfunctional-teams/88187#881873Answer by cynicalman for Dysfunctional Teamscynicalman2008-09-17T22:04:30Z2008-09-17T22:04:30Z<p>If someone truly never listens and doesn't perform, then you:</p>
<ol>
<li>Sit the person down and explain to them why you think they aren't performing.</li>
<li>Make sure they have a chance to explain their actions.</li>
<li>If you can't work out a compromise (i.e. the person starts to perform) then make sure you inform your HR team about the meeting from point 1 to make it formal, this starts the paper trail.</li>
</ol>
<p>Eventually, you will go iterate through this loop until the person either starts working with the group, leaves, or you have enough of a paper trail to fire them.</p>
<p>Life is too short to work with anyone who is truly toxic, but most people just need a chance to explain themselves.</p>
http://stackoverflow.com/questions/1622591/is-there-an-ide-or-plugin-which-allows-separation-of-code-from-layout/1622600#1622600Comment by cynicalman on Is there an IDE or plugin which allows separation of code from layout?cynicalman2009-10-26T00:30:13Z2009-10-26T00:30:13ZI think he's looking for something that doesn't merely modify the code.http://stackoverflow.com/questions/466548/junit-making-sure-failures-in-the-test-method-are-shown-before-failures-in-afte/466564#466564Comment by cynicalman on JUnit: Making sure failures in the test method are shown before failures in @After methodscynicalman2009-01-21T20:54:14Z2009-01-21T20:54:14ZSince many tests will be checking that mock expectations were met, it's fairly conventional to have that code in an @After method. Also, you can have multiple @After methods, so you might have one do mock verification and one do teardown. Don't repeat if you don't need to.http://stackoverflow.com/questions/450965/do-common-jars-have-to-be-repeated-accross-wars-in-an-ear/451037#451037Comment by cynicalman on Do common JARs have to be repeated accross WARs in an EAR?cynicalman2009-01-16T16:53:57Z2009-01-16T16:53:57ZDefinitely a bad practice. What if you want to upgrade this jar? You should be able to do that with a deployment, you shouldn't have to alter the server setup.http://stackoverflow.com/questions/359548/options-to-communicate-between-wars-in-the-same-earComment by cynicalman on Options to communicate between WARs in the same EARcynicalman2008-12-11T14:45:07Z2008-12-11T14:45:07ZFor two wars to communicate without webservices being an explicit requirement seems a little odd - if you can say, why do you have this requirement?http://stackoverflow.com/questions/258954/java-out-with-the-old-in-with-the-new/258984#258984Comment by cynicalman on Java: Out with the Old, In with the New ...cynicalman2008-11-03T15:32:11Z2008-11-03T15:32:11ZString s = n + ""; is a bad habit because it will always create a new object. valueOf is smarter about that.http://stackoverflow.com/questions/59968/best-editor-or-ide-for-ruby/227687#227687Comment by cynicalman on Best Editor or IDE for Ruby?cynicalman2008-10-24T13:53:16Z2008-10-24T13:53:16ZWhich version. I am currently using NetBeans on OS X and have never noticed issues with syntax highlighting.http://stackoverflow.com/questions/205160/what-can-cause-intermittent-ora-12519-tns-no-appropriate-handler-found-errors/205167#205167Comment by cynicalman on What can cause intermittent ORA-12519 (TNS: no appropriate handler found) errorscynicalman2008-10-15T15:35:15Z2008-10-15T15:35:15ZI did that google search too. I'm wondering what could cause it so unpredictably.http://stackoverflow.com/questions/147189/how-do-you-keep-a-balance-between-working-training-health-and-family/147215#147215Comment by cynicalman on How do you keep a balance between working, training, health and family?cynicalman2008-09-29T02:52:56Z2008-09-29T02:52:56ZWhat helps me is this: set a timer and when it goes off, leave. I spent a lot of all-nighters 8 years ago, but with two kids those days are over.http://stackoverflow.com/questions/147070/are-we-as-programmers-becoming-too-dependent-on-our-ides/147086#147086Comment by cynicalman on Are we as programmers becoming too dependent on our IDEs?cynicalman2008-09-29T02:51:41Z2008-09-29T02:51:41ZIt's a crushing indictment of dev humour that people find this funny (damn, I laughed...)http://stackoverflow.com/questions/146715/use-the-serialversionuid-or-suppress-warnings/146748#146748Comment by cynicalman on Use the serialVersionUID or suppress warnings?cynicalman2008-09-28T23:33:13Z2008-09-28T23:33:13ZJust want to second the motions that you make sure you prohibit serialization (ie with an exception) if you aren't going to support it.http://stackoverflow.com/questions/131241/why-use-iterators-instead-of-array-indices/131259#131259Comment by cynicalman on Why use iterators instead of array indices?cynicalman2008-09-25T03:19:35Z2008-09-25T03:19:35ZAnd I think that it does promote OO, because it is separating operations on collections from the implementation of that collection. A collection of objects shouldn't necessarily know what algorithms should be used to work with them.http://stackoverflow.com/questions/131241/why-use-iterators-instead-of-array-indices/131259#131259Comment by cynicalman on Why use iterators instead of array indices?cynicalman2008-09-25T03:18:14Z2008-09-25T03:18:14ZFair enough @wilhelmtell, I'm obviously thinking of this from a Java-centric point of view.http://stackoverflow.com/questions/101070/what-is-an-ideal-variable-naming-convention-for-loop-variables/101239#101239Comment by cynicalman on what is an ideal variable naming convention for loop variables?cynicalman2008-09-25T02:59:02Z2008-09-25T02:59:02Zor if it's a cell based row/column layout based maybe common index variables like x and y can be used. But I find the first more readable.
http://stackoverflow.com/questions/54802/how-many-hours-per-week-on-average-do-you-put-in-for-your-workplace/55284#55284Comment by cynicalman on How Many Hours per Week on Average do you put in for your Workplace?cynicalman2008-09-25T02:46:47Z2008-09-25T02:46:47ZI agree, but if the overtime is my fault (i.e. being held to an estimate I made with a reasonable amount of wiggle room) then I put in the time.http://stackoverflow.com/questions/127411/java-annotations-for-design-patternsComment by cynicalman on Java annotations for design patterns?cynicalman2008-09-25T01:59:21Z2008-09-25T01:59:21ZWhat if somebody has a different idea of what a Builder is than what Josh Bloch says in Effective Java? That is far from the only way to write a builder, and other methods are just as "correct".