User Ryan Thames - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T06:51:30Zhttp://stackoverflow.com/feeds/user/13452http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/127120/spring-vs-jsf4Spring vs. JSFRyan Thames2008-09-24T13:28:19Z2009-12-02T17:19:41Z
<p>I have a dilemma at my job. We're looking to integrate two different J2EE projects and they both use different frameworks for the web component. We're also looking to add more dynamic capability/AJAX to it. One uses JSF and the other uses Spring. Basically we're trying to pick one of the projects and integrate them using that technology. So I have two questions:</p>
<p>1) Is JSF and Spring mutually exclusive? Is it one or the other?
2) If so, which one is better?</p>
http://stackoverflow.com/questions/440931/how-many-multiple-eclipse-projects-is-considered-too-excessive-for-one-actual-d5How many multiple "Eclipse Projects" is considered too excessive for one actual development project?Ryan Thames2009-01-13T21:46:24Z2009-10-01T10:02:48Z
<p>I'm currently working on a project that contains many different Eclipse projects referencing each other to make up one large project. Is there a point where a developer should ask themselves if they should rethink the way their development project is structured?</p>
<p><strong>NOTE:</strong> My project currently contains 25+ different Eclipse projects.</p>
http://stackoverflow.com/questions/1368886/pros-and-cons-of-programming-in-c-vs-c/1368935#13689350Answer by Ryan Thames for Pros and Cons of Programming in C# vs C++Ryan Thames2009-09-02T16:57:35Z2009-09-02T16:57:35Z<p><a href="http://www.thinkingparallel.com/2007/03/06/c-vs-c-a-checklist-from-a-c-programmers-point-of-view/" rel="nofollow">Here is a link</a> I found noting some of the pros of using both C# and C++.</p>
http://stackoverflow.com/questions/1342916/whats-a-good-topic-for-some-real-life-application/1342993#13429932Answer by Ryan Thames for What's a good topic for some real-life application?Ryan Thames2009-08-27T18:35:25Z2009-08-27T18:35:25Z<p>I found a good list of student projects here:</p>
<p><a href="http://mindprod.com/project/projects.html" rel="nofollow">http://mindprod.com/project/projects.html</a></p>
<p>The site says they're "Java student projects", but they could conceivably be written in C++, C#, or any other OO language.</p>
http://stackoverflow.com/questions/1342694/c-or-java-for-general-programming/1342731#13427312Answer by Ryan Thames for C++ or Java for general programming?Ryan Thames2009-08-27T17:55:25Z2009-08-27T17:55:25Z<p>For general programming I prefer Python because you have the option of writing simple scripts or using OO depending on your needs.</p>
<p>If python is not an option, Java might be the better choice because it's more portable and you already know it.</p>
http://stackoverflow.com/questions/1331750/programming-jobs-without-a-computer-science-degree/1331810#13318103Answer by Ryan Thames for Programming jobs without a computer science degreeRyan Thames2009-08-26T00:50:26Z2009-08-26T00:50:26Z<p>Speaking from experience (I have the same degree), most companies place emphasis on your experience and your knowledge of technologies rather than your degree. If you submit a resume with those technologies, you'll probably get an interview somewhere and be able to prove you know your stuff, which is all they're looking for.</p>
<p>I had the exact same doubts you currently do my senior year 2 years ago. With a little bit of luck and good interview/programming skills you will be just fine.</p>
http://stackoverflow.com/questions/1329220/zipping-a-directory-to-a-remote-location-in-java1Zipping a directory to a remote location in JavaRyan Thames2009-08-25T15:57:55Z2009-08-25T17:04:36Z
<p>I'm trying to create a zip file from a directory in Java, then place that file on a remote server (a network share). I'm currently getting an error because the Java <code>File</code> object cannot reference a remote location and I'm not really sure where to go from there.</p>
<p>Is there a way to zip a directory in Java to a remote location without using the File class?</p>
http://stackoverflow.com/questions/246868/best-java-messaging-service-books1Best Java Messaging Service BooksRyan Thames2008-10-29T13:54:52Z2009-08-07T19:20:40Z
<p>Hi all.</p>
<p>I'm looking to get up to speed on JMS for my job. Is there a JMS book that is a must have, or are some better than others? Or will any do?</p>
http://stackoverflow.com/questions/344777/nested-folders-in-eclipse-classpath0Nested Folders in Eclipse ClasspathRyan Thames2008-12-05T18:46:13Z2009-07-17T09:33:48Z
<p>I'm trying to add two folders to my eclipse project's classpath, let's say Folder A and Folder B. B is inside A. Whenever I add A to the classpath</p>
<pre><code><classpathentry kind="lib" path="/A"/>
</code></pre>
<p>it works just fine, but I need to be able to access the files in B as well. Whenever I try to add</p>
<pre><code><classpathentry kind="lib" path="/A/B"/>
</code></pre>
<p>to the classpath, it says </p>
<blockquote>
<p>Cannot nest 'A/B inside library A'</p>
</blockquote>
<p>I'm a newbie when it comes to editing the classpath, so I'm wondering, is there is anyway to add a folder in the eclipse classpath that is nested in another folder that is also in the eclipse classpath?</p>
http://stackoverflow.com/questions/674408/junit-tests-for-pojos4JUnit tests for POJOsRyan Thames2009-03-23T17:31:45Z2009-07-07T11:05:44Z
<p>I work on a project where we have to create unit tests for all of our simple beans (POJOs). Is there any point to creating a unit test for POJOs if all they consist of is getters and setters? Is it a safe assumption to assume POJOs will work about 100% of the time?</p>
<p><hr /></p>
<p>Duplicate of - <a href="http://stackoverflow.com/questions/337241/should-entity-pojos-be-tested">Should @Entity Pojos be tested?</a> </p>
<p><strong>See also</strong> </p>
<p><a href="http://stackoverflow.com/questions/607620/is-it-bad-practice-to-run-tests-on-a-db-instead-of-on-fake-repositories/616537#616537">Is it bad practice to run tests on a DB instead of on fake repositories?</a></p>
<p><a href="http://stackoverflow.com/questions/108692/is-there-a-java-unit-test-framework-that-auto-tests-getters-and-setters">Is there a Java unit-test framework that auto-tests getters and setters?</a></p>
http://stackoverflow.com/questions/952317/from-c-to-java-a-noob-question/959127#9591270Answer by Ryan Thames for From C# to Java. A Noob question.Ryan Thames2009-06-06T06:28:46Z2009-06-06T06:28:46Z<p>Using Netbeans, you can create Java based Swing GUIs pretty easily. Netbeans comes with a pretty nice GUI builder.</p>
<p>If you learn how to program in Java, I don't think it would really be that much of a stretch to create Java Swing applications from scratch. It's just a matter of learning the Swing libraries.</p>
<p>Not being from a .NET background, I can't comment on learning C# GUIs, but from my experience Swing was very easy to learn and it helps A LOT to understand the code underlying what the GUI builder in Netbeans generates.</p>
http://stackoverflow.com/questions/853514/where-can-i-find-video-lectures-on-software-engineering/853678#85367818Answer by Ryan Thames for Where can I find video lectures on software engineering?Ryan Thames2009-05-12T16:30:38Z2009-05-12T16:30:38Z<p><a href="http://research.google.com/video.html" rel="nofollow">Google tech talks</a> is another good source in addition to the ones already mentioned. Searching for some general software engineering topics is likely to get you some good videos.</p>
http://stackoverflow.com/questions/848708/how-does-one-handle-send-links-to-examples-of-work-in-job-posting/848725#8487250Answer by Ryan Thames for How does one handle "send links to examples of work" in job posting?Ryan Thames2009-05-11T15:45:02Z2009-05-11T15:45:02Z<p>I think as long as your honest they'll have to understand. I'm sure some of them have been in the same situation. If it were me I would link to what I can while explaining my situation honestly.</p>
<p>Another thing you could do is create sample code similar to some of the things you've done professionally and post it on <a href="http://github.com/" rel="nofollow">github</a>. That way it would be easy to show off what you can do without revealing any secrets about your former employers.</p>
http://stackoverflow.com/questions/760309/ide-plugins-for-developing-jmx-model-mbeans/821348#8213480Answer by Ryan Thames for IDE plugins for developing JMX Model MBeansRyan Thames2009-05-04T18:42:04Z2009-05-04T18:42:04Z<p>Have you tried <a href="http://code.google.com/p/eclipse-jmx/" rel="nofollow">eclipse-jmx</a>? Not sure if it's advanced enough for you, but it's a plugin for Eclipse with it's own perspective, and you can display information on an MBean, set attributes, get notifications, perform operations and connect to MBean servers.</p>
<p>There's also the <a href="http://www.eclipseplugincentral.com/Web%5FLinks-index-req-viewlink-cid-314.html" rel="nofollow">JMX Console for Eclipse</a>. I've never used it but it has really good ratings on the Eclipse Plugin Central site. It might be a little out of date, though...looks like it hasn't been updated since 2004.</p>
http://stackoverflow.com/questions/820077/free-desktop-client-for-oracle/820151#8201513Answer by Ryan Thames for Free desktop client for Oracle?Ryan Thames2009-05-04T13:41:48Z2009-05-04T14:28:11Z<p>If by open-source you really mean free, then <a href="http://www.oracle.com/technology/products/database/sql%5Fdeveloper/index.html" rel="nofollow">Oracle SQL Developer</a> is free. However it is not open-source. It is fully supported though, we use it where I work all the time.</p>
<p>If you're interested you can go <a href="http://www.oracle.com/technology/products/database/sql%5Fdeveloper/files/what%5Fis%5Fsqldev.html" rel="nofollow">here</a> for a good starting reference on its features.</p>
http://stackoverflow.com/questions/756603/running-nightly-builds-as-xp-scheduled-task-classpath-issue1Running Nightly Builds as XP Scheduled Task - Classpath IssueRyan Thames2009-04-16T15:10:55Z2009-05-04T10:35:41Z
<p>I'm running JUnit nightly builds on my computer as a scheduled task in Windows XP. My application uses Jaxb, therefore some of the tests need to reference xsd schemas using the system classpath. When the nightly build runs while I'm not on the computer, I get an error like this:</p>
<p><strong><em>java.lang.Exception: Unable to load schema mySchema.xsd from classpath</em></strong></p>
<p>However, when I run the build manually I get no such error. The environment variable for the location of my schemas is a <em>System</em> variable, not a User variable, so I don't know what could be causing this error. What could be cause of this error?</p>
<p><strong>EDIT:</strong> Alternatives like Hudson is not what I'm asking for. I'm asking for a solution for the technology described above (batch file running as a scheduled task).</p>
http://stackoverflow.com/questions/799554/will-zipping-a-directory-in-java-affect-other-processes-using-the-same-files1Will zipping a directory in Java affect other processes using the same files?Ryan Thames2009-04-28T19:49:08Z2009-04-28T19:54:37Z
<p>I'm using the java.util.zip library and ZipOutputStream in order to create a zip file of a directory and all the files and directories under it. In my application, it is likely that another thread could be accessing these same files during the compression. I'm not an expert on file compression (or thread-safety, for that matter) so my question is, <strong>will zipping a directory while something else is accessing those files affect either process?</strong></p>
http://stackoverflow.com/questions/289873/is-it-a-good-idea-for-a-programmer-to-work-from-home/779471#7794710Answer by Ryan Thames for Is it a good idea for a programmer to work from home?Ryan Thames2009-04-22T22:09:25Z2009-04-22T22:09:25Z<p>If it's possible, I think a mix of working from home and working from the office is best. I personally am more focused and less distracted at home (I don't even have my own cube at work), so when I really need to crank something out that doesn't require a lot of human interaction, working from home is great. Unfortunately, you do need human interaction every once in a while, and if you work from home 100% of the time things like being left out of design meetings or missing out on a conversation start to wear on you. If you're lucky enough to sort of choose when you work from home, here's a good way to think of it:</p>
<p><strong>When to work at home</strong></p>
<ul>
<li>You just <strong><em>have</em></strong> to get something done and your work environment is too distracting.</li>
<li>Someone needs to be home (sick kid, doctor's appointment, package, etc.)</li>
<li>You're sick but can still work</li>
<li>Need a break from the commute.</li>
</ul>
<p>Other than that it's probably best to work at your office, especially if there's an important meeting planned.</p>
<p>This is just something I personally go by. Hopefully it helps someone else.</p>
http://stackoverflow.com/questions/775457/job-offer-dilemma/775497#7754970Answer by Ryan Thames for job offer dilemmaRyan Thames2009-04-22T02:18:51Z2009-04-22T02:18:51Z<p>Since you've only been there a month it might be too soon to make a decision for sure, but I would take it as an opportunity to leave my mark on a company. They may be resistant to change but that doesn't mean they won't listen to you. If you provide a reasonable argument for automated/nightly builds, and press on it, then they might let you try it. Then when they see how nice it is they'll be much more open to anything else you suggest.</p>
<p>That being said, if you've been there a while longer, gave it a fair shot, and it still hasn't improved, then start looking.</p>
http://stackoverflow.com/questions/611296/rewrite-c-code-in-java-or-use-jni6Rewrite C code in Java or use JNI?Ryan Thames2009-03-04T16:17:50Z2009-04-21T01:50:58Z
<p>I'm currently developing on a project written in Java. We have a bunch of algorithms written in C/C++ (at least a couple hundred) that need to be incorporated in our project. Our two options are to use JNI to call this code, or to rewrite all the algorithms in Java.</p>
<p>I am aware of the consequences of using JNI, it can open up a whole new set of problems, which is why rewriting all the code in Java is even being considered. But the thought of rewriting it seems...wrong. The algorithms have been tested and work as far as I know, they're just in the wrong language.</p>
<p>In this situation, would JNI make this task easy? Or would it cause more headache than rewriting the code in Java would?</p>
<p><hr /></p>
<p><strong>EDIT #1:</strong> Related Question - <a href="http://stackoverflow.com/questions/402408/usefulness-of-jni">Usefulness of JNI</a></p>
<p><hr /></p>
<p><strong>EDIT #2:</strong> FYI - Our Java project is not meant to be portable in any way. That might eliminate one of the downsides of JNI in that it supposedly reduces portability.</p>
http://stackoverflow.com/questions/643046/whats-your-ceremony-after-finishing-your-project-or-solving-a-hard-problem/643940#6439400Answer by Ryan Thames for What's your "ceremony" after finishing your project or solving a hard problem?Ryan Thames2009-03-13T18:15:35Z2009-03-13T18:15:35Z<p>After finishing projects, I go to the store, buy a 6 pack of beer, then go home and play Xbox 360 until I can't keep my eyes open anymore.</p>
<p>After finishing just a hard tasks I go find the nearest person and tell them excitedly about what I just did.</p>
http://stackoverflow.com/questions/558113/is-it-worth-keeping-up-on-cobol-what-compilers-would-you-recommend/558295#5582952Answer by Ryan Thames for Is it worth keeping up on COBOL? What compilers would you recommend?Ryan Thames2009-02-17T19:09:02Z2009-02-17T19:09:02Z<p>If you like COBOL then I would say it is worth it. As other answers have said, there are billions of lines of COBOL still out there, and it doesn't seem to be dying down anytime soon. If you get lucky you could end up making good money because a lot of other developers don't want to use it.</p>
<p>OpenCOBOL is a good COBOL compiler to use.</p>
http://stackoverflow.com/questions/481260/whats-a-good-way-to-start-learning-about-data-structures-algorithms/548439#5484391Answer by Ryan Thames for What's a good way to start learning about Data Structures & Algorithms?Ryan Thames2009-02-14T03:38:14Z2009-02-14T03:38:14Z<p>A good read is the <a href="http://rads.stackoverflow.com/amzn/click/1848000693" rel="nofollow">Algorithm Design Manual</a>. I find it easier to absorb the information because of the author's writing style.</p>
http://stackoverflow.com/questions/532652/effective-java-book-for-c-programmer/532677#5326770Answer by Ryan Thames for Effective java book for c# programmerRyan Thames2009-02-10T14:59:39Z2009-02-10T14:59:39Z<p>I don't think it could hurt to read it for certain chapters, specifically the chapters on Classes and Interfaces, Methods and General Programming. A lot of the tips apply to C# as well, and it might be a good excercise to convert the sample code from Java to C#. Besides those chapters, the rest might be too Java centric, although I'm not completely familiar with C# so someone else might have a better answer.</p>
http://stackoverflow.com/questions/532338/what-to-do-with-star-developers-who-dont-document-their-work/532397#5323977Answer by Ryan Thames for What to do with star developers who don't document their work.Ryan Thames2009-02-10T13:49:32Z2009-02-10T13:49:32Z<p>There's more to being a star developer than just being an excellent programmer. If he doesn't have team skills and is purposefully ignoring team standards it needs to be brought up to him. If he refuses to adhere to them after talking with management, perhaps he's not the right fit for your company.</p>
http://stackoverflow.com/questions/475351/sign-of-the-times-what-are-you-reading/475507#4755079Answer by Ryan Thames for Sign of the times: what are you reading?Ryan Thames2009-01-24T04:39:23Z2009-01-24T04:39:23Z<p>I'm reading <a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete</a> for the first time.</p>
http://stackoverflow.com/questions/465627/use-of-the-stringstring-constructor-in-java0Use of the String(String) constructor in Java [closed]Ryan Thames2009-01-21T14:56:04Z2009-01-21T15:28:56Z
<p>I've read on articles and books that the use of <code>String s = new String("...");</code> should be avoided pretty much all the time. I understand why that is, but is there any use for using the String(String) constructor whatsoever? I don't think there is, and don't see any evidence otherwise, but I'm wondering if anyone in the SO commmunity knows of a use.</p>
<p><hr /></p>
<p><strong>Exact Duplicate:</strong> <a href="http://stackoverflow.com/questions/390703/what-is-the-purpose-of-the-expression-new-string-in-java">What is the purpose of the expression new string in java?</a></p>
http://stackoverflow.com/questions/462697/thread-safety-of-static-blocks-in-java3Thread safety of static blocks in JavaRyan Thames2009-01-20T19:22:26Z2009-01-21T10:05:49Z
<p>Let's say I have some Java code:</p>
<pre><code>public class SomeClass {
static {
private final double PI = 3.14;
private final double SOME_CONSTANT = 5.76;
private final double SOME_OTHER_CONSTANT = 756.33;
}
//rest of class
}
</code></pre>
<p>If a thread is instantiating an instance of SomeClass and is in the middle of initializing the values in the static block when a second thread instantiates a second instance of SomeClass, what happens to the static block? Does the second thread ignore it assuming it's already initialized even though the first thread is not done? Or does something else happen?</p>
http://stackoverflow.com/questions/462094/in-java-how-do-i-make-a-class-with-a-private-constructor-whose-superclass-also-h/462119#4621190Answer by Ryan Thames for In java, how do I make a class with a private constructor whose superclass also has a private constructor?Ryan Thames2009-01-20T16:50:46Z2009-01-20T16:55:47Z<p>You can't call Object's constructor directly from Bar while it's a subclass of Foo, it would have to through Foo's constructor, which is private in this case. </p>
<p>When you declare Foo's constructor private, it does not create a default public constructor. Since Bar <em>has</em> to invoke Foo's constructor, it is not possible to leave it private. I would suggest, as others have, on using protected instead of private.</p>
http://stackoverflow.com/questions/461279/how-dangerous-is-your-job/461400#4614001Answer by Ryan Thames for How 'dangerous' is your job?Ryan Thames2009-01-20T14:03:12Z2009-01-20T14:03:12Z<p>For me, probably between a 2 or 3. I work for a defense contractor, if my app went down for some reason it would upset a few countries, but probably wouldn't make the news. </p>
http://stackoverflow.com/questions/1342916/whats-a-good-topic-for-some-real-life-application/1342947#1342947Comment by Ryan Thames on What's a good topic for some real-life application?Ryan Thames2009-08-27T19:25:06Z2009-08-27T19:25:06ZThis is how I learn new web frameworks, for better or worse :)http://stackoverflow.com/questions/1342596/what-things-do-experienced-developers-do-that-drive-you-crazy/1342790#1342790Comment by Ryan Thames on What things do "experienced" developers do that drive you crazy?Ryan Thames2009-08-27T18:31:57Z2009-08-27T18:31:57ZThey do drive me crazy however. :)http://stackoverflow.com/questions/1329220/zipping-a-directory-to-a-remote-location-in-javaComment by Ryan Thames on Zipping a directory to a remote location in JavaRyan Thames2009-08-25T16:17:28Z2009-08-25T16:17:28Z@ATorras It's in the format "file:///C:/SomePath"...I was under the impression that wouldn't work...will new File(\\\\C:\SomePath).list() do the trick? I apologize for my "newbie" questions...I'm horribly unfamiliar with things like this.http://stackoverflow.com/questions/91846/rails-or-django-or-something-else/94193#94193Comment by Ryan Thames on Rails or Django? (or something else?)Ryan Thames2009-08-13T04:44:57Z2009-08-13T04:44:57ZI've tried both and I would say Django is more "fun" because it's easier to learn and has less "magic".http://stackoverflow.com/questions/976635/what-exactly-is-a-software-architectComment by Ryan Thames on What exactly is a "Software Architect"?Ryan Thames2009-06-12T00:43:59Z2009-06-12T00:43:59Z@Andrew I work in Texas and my job title is "Software Engineer". I don't actually call myself that, but I find it funny that Texas supposedly licenses it.http://stackoverflow.com/questions/799788/is-being-rehired-by-a-company-a-bad-career-moveComment by Ryan Thames on Is being rehired by a company a bad career move?Ryan Thames2009-04-29T00:56:25Z2009-04-29T00:56:25ZJust because the question has the words "software development" doesn't make it relevant. Wish I had enough rep to vote to close.http://stackoverflow.com/questions/611296/rewrite-c-code-in-java-or-use-jni/611324#611324Comment by Ryan Thames on Rewrite C code in Java or use JNI?Ryan Thames2009-03-04T16:26:25Z2009-03-04T16:26:25ZIt's not a one time Java project, the C/C++ code is old. I never thought about it from that perspective. Good advice.http://stackoverflow.com/questions/611296/rewrite-c-code-in-java-or-use-jniComment by Ryan Thames on Rewrite C code in Java or use JNI?Ryan Thames2009-03-04T16:24:19Z2009-03-04T16:24:19ZNah, they're not very general at all, unfortunately.http://stackoverflow.com/questions/532201/how-to-actually-use-swing-application-framework/532229#532229Comment by Ryan Thames on How to actually use Swing Application Framework?Ryan Thames2009-02-10T13:43:30Z2009-02-10T13:43:30ZI wish it wasn't so expensive :(http://stackoverflow.com/questions/471940/why-does-every-man-and-his-dog-want-to-code-a-blogging-engine/471944#471944Comment by Ryan Thames on Why does every man and his dog want to code a blogging engine?Ryan Thames2009-01-29T19:14:47Z2009-01-29T19:14:47Z@Click - Same with Ruby on Rails. The tutorial on the website is making a blog.http://stackoverflow.com/questions/475482/what-time-of-day-are-you-most-proficient-at-programming/475487#475487Comment by Ryan Thames on What time of day are you most proficient at programming?Ryan Thames2009-01-24T04:42:24Z2009-01-24T04:42:24Z+1 - I get my best code done in the morning before my coworkers get there as well :)http://stackoverflow.com/questions/462094/in-java-how-do-i-make-a-class-with-a-private-constructor-whose-superclass-also-h/462102#462102Comment by Ryan Thames on In java, how do I make a class with a private constructor whose superclass also has a private constructor?Ryan Thames2009-01-20T18:22:56Z2009-01-20T18:22:56Z@Tom - Whoops, my bad :Phttp://stackoverflow.com/questions/462094/in-java-how-do-i-make-a-class-with-a-private-constructor-whose-superclass-also-h/462102#462102Comment by Ryan Thames on In java, how do I make a class with a private constructor whose superclass also has a private constructor?Ryan Thames2009-01-20T17:02:57Z2009-01-20T17:02:57Z@starblue - I believe that's why he said 'at the very least'.http://stackoverflow.com/questions/452009/java-swing-programming-book/452026#452026Comment by Ryan Thames on Java Swing programming bookRyan Thames2009-01-16T21:13:52Z2009-01-16T21:13:52ZThat's what I did and it worked out great.http://stackoverflow.com/questions/444606/convincing-a-large-company-to-use-free-software/444625#444625Comment by Ryan Thames on Convincing a large company to use free software?Ryan Thames2009-01-14T21:27:40Z2009-01-14T21:27:40Z+1: This is a good place to start. As a relatively inexperienced professional developer, it's easy to not think of things like evidence and lose your patience. Good advice.