User codeLes - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T11:44:17Zhttp://stackoverflow.com/feeds/user/3030http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/30160/is-there-a-java-console-editor-similar-to-the-groovyconsole2Is there a Java Console/Editor similar to the GroovyConsole?codeLes2008-08-27T13:50:26Z2009-11-11T19:52:21Z
<p>I'm giving a presentation to a Java User's Group on Groovy and I'm going to be doing some coding during the presentation to show some side-by-side Java/Groovy. I really like the GroovyConsole as it's simple and I can resize the text easily. </p>
<p>I'm wondering if there is anything similar for Java? I know I could just use Eclipse but I'd rather have a smaller app to use without having to customize a view. What's the community got?</p>
<p>Screen shot of GroovyConsole:</p>
<p><img src="http://lh5.ggpht.com/martin.les/SLVbKVz2caI/AAAAAAAADrY/6Q0hGuxnQRM/s400/grvycnsle.jpg" alt="alt text" /></p>
http://stackoverflow.com/questions/1291021/what-would-make-ant-execute-javac-in-eclipse-with-utf-8-instead-of-my-system-de1What would make Ant execute 'javac' in Eclipse with UTF-8 instead of my system default Cp1252?codeLes2009-08-17T23:24:00Z2009-08-18T12:00:28Z
<p>The last week I've been trying to figure out why some stream decoding my newly adopted application is doing was giving me some major encoding problems. Finally I figured out that the problem was that the JARs/WAR being built with Ant and deployed to the server were being compiled with the javac task using the encoding UTF-8 instead of the system default of CP1252.</p>
<p>This seems to be caused mainly by having many hard coded strings/chars for these special characters.</p>
<p>This was easily resolved by either of the following steps:</p>
<ul>
<li>changing the encoding for the eclipse project to be UTF-8 to match the byte code on the server</li>
<li>setting the <strong>encoding</strong> for the javac task to be CP1252 to build the WAR file to match the client byte code</li>
<li>and strangely enough just running Ant from the command prompt <strong>without</strong> designating any encoding.</li>
</ul>
<p>So why is <em>Ant in Eclipse</em> changing to UTF-8? Is this configurable? Where do I configure it?</p>
<p><strong>System</strong></p>
<ul>
<li>Windows XP</li>
<li>Eclipse 3.5</li>
<li>Ant 1.7.1</li>
<li>Java 1.6.0_11</li>
</ul>
http://stackoverflow.com/questions/99626/whats-the-definitive-java-swing-starter-guide-and-reference5What's the definitive Java Swing starter guide and reference?codeLes2008-09-19T04:24:04Z2009-08-17T23:20:59Z
<p>Obviously the <a href="http://java.sun.com/j2se/1.5.0/docs/api/" rel="nofollow">Java API</a> reference, but what else is there that you all use? </p>
<p>I've been doing web development my entire career. Lately I've been messing around a lot with <a href="http://groovy.codehaus.org" rel="nofollow">Groovy</a> and I've decided to do a small application in <a href="http://groovy.codehaus.org/griffon" rel="nofollow">Griffon</a> just to experiment more with Groovy and also break some ground in desktop development. The only thing is I'm totally green when it comes to desktop apps.</p>
<p>So, world, where's a good place to start?</p>
http://stackoverflow.com/questions/802391/help-balloons-in-groovy-on-grails/802512#8025121Answer by codeLes for Help-balloons in groovy on grailscodeLes2009-04-29T14:06:20Z2009-04-30T13:27:22Z<p><strong>Where are the Resource bundles:</strong></p>
<p>There is a directory under <strong>grails-app</strong> called <strong>i18n</strong> where all the generated resource files are placed, start looking there and see how they are used in the app. </p>
<p>You may be able to just place multiple message files for your controllers in there for organization, just be careful of reusing keys as I'm not sure how that will be handled off hand.</p>
<p><strong>How to access them:</strong></p>
<p>Maybe this will help I hope: </p>
<p><a href="http://www.nabble.com/Organizing-message-bundles-tt16169280.html#a16169280" rel="nofollow">http://www.nabble.com/Organizing-message-bundles-tt16169280.html#a16169280</a></p>
http://stackoverflow.com/questions/201606/are-there-any-ant-conventions-similar-to-maven2-conventions2Are there any Ant conventions similar to Maven2 conventions?codeLes2008-10-14T15:15:49Z2009-04-21T15:30:05Z
<p>For the past 2 years-(ish) I've been using <a href="http://maven.apache.org" rel="nofollow">Maven2</a> for my build/continuous integration solution. I used <a href="http://ant.apache.org" rel="nofollow">Ant</a> a bit before that but really didn't get a lot of experience with it. Now I've taken a new job and the team I'm on now uses Ant. </p>
<p>What I'm wondering about is this:</p>
<p>In Maven we had directory conventions for seperating our java source and files and java test files (<a href="http://junit.org" rel="nofollow">JUnit</a> tests). It looked like this:</p>
<pre><code>Project-
-src/main/java
-src/test/java
</code></pre>
<p>This way your tests are separate from your source/production code and won't be built/deployed as such.</p>
<p>Going over the Ant documentation I don't really see any convention for this. Am I missing something? Is there a similar convention in Ant?</p>
http://stackoverflow.com/questions/611282/o-errors-allerrors-each-println-it-by-default-when-failing-to-save-a-domain-o/612103#612103-1Answer by codeLes for o.errors.allErrors.each { println it } by default when failing to save a domain objectcodeLes2009-03-04T19:37:17Z2009-03-04T19:37:17Z<p>This isn't the cleanest looking, and there is probably a <em>better</em>, <em>groovier</em> way to do this. Based on looking <a href="http://groovy.codehaus.org/ExpandoMetaClass%2B-%2BMethods" rel="nofollow">here</a> I put together this code that might be something you could expand and use:</p>
<pre><code>class Book {
void printTitle(){ println "The Title" }
}
Book.metaClass.customPrintTitle << {->
println "changin ur class"
printTitle()
}
def b = new Book()
b.customPrintTitle()
</code></pre>
http://stackoverflow.com/questions/590708/user-management-plugin-framework-for-grails/590961#5909614Answer by codeLes for User management plugin/framework for Grails?codeLes2009-02-26T15:17:08Z2009-02-26T15:17:08Z<p>If you're interested in a Spring-security based solution you could look at Stark:</p>
<p><a href="http://www.grails.org/Stark+Security+Plugin" rel="nofollow">http://www.grails.org/Stark+Security+Plugin</a></p>
http://stackoverflow.com/questions/546618/interactively-run-code-against-grails-runtime-environment/547301#5473014Answer by codeLes for Interactively Run code against Grails Runtime EnvironmentcodeLes2009-02-13T19:18:56Z2009-02-14T04:53:00Z<p>Using the Grails console run your bootstrap class manually, then run the code in question. </p>
<pre><code>new BootStrap().init()
</code></pre>
http://stackoverflow.com/questions/47972/what-are-some-advantages-of-duck-typing-vs-static-typing10What are some advantages of duck-typing vs. static typing?codeLes2008-09-07T00:28:08Z2009-02-10T16:41:21Z
<p>I'm researching and experimenting more with Groovy and I'm trying to wrap my mind around the pros and cons of implementing things in Groovy that I can't/don't do in Java. Dynamic programming is still just a concept to me since I've been deeply steeped static and strongly typed languages. </p>
<p>Groovy gives me the ability to <a href="http://en.wikipedia.org/wiki/Duck_typing" rel="nofollow">duck-type</a>, but I can't really see the value. How is duck-typing more productive than static typing? What kind of things can I do in my code practice to help me grasp the benefits of it?</p>
<p>I ask this question with Groovy in mind but I understand it isn't necessarily a Groovy question so I welcome answers from every code camp.</p>
http://stackoverflow.com/questions/489785/is-it-possible-to-work-with-gsp-groovy-server-pages-without-the-whole-grails-st/491680#4916802Answer by codeLes for Is it possible to work with GSP (groovy server pages) without the whole grails stuff?codeLes2009-01-29T14:00:46Z2009-01-29T14:00:46Z<p>This JavaWorld article might lend a hand:</p>
<p><a href="http://www.javaworld.com/community/?q=node/2292" rel="nofollow">Shed the weight with Groovlets</a></p>
<blockquote>
<p>Not all web applications require a full stack framework (like Grails, Rails, Spring MVC, etc). Don’t get me wrong, the aforementioned hip frameworks are themselves lightweight (and quite powerful to boot); however, they do have an associated cost (albeit much much lower than rolling the same functionality by hand). For instance, some applications don’t require a data store (consequently, a large portion of Grails — that is, Hibernate — for example, wouldn’t be utilized). Other applications don’t really require a powerful view technology (simple services don’t require JSPs or GSPs, for instance).</p>
</blockquote>
http://stackoverflow.com/questions/29461/what-is-a-must-cover-in-my-groovy-presentation6What is a MUST COVER in my Groovy presentation?codeLes2008-08-27T03:40:05Z2009-01-10T07:54:56Z
<p>I'm working on getting an Introduction to <a href="http://en.wikipedia.org/wiki/Groovy_%28programming_language%29" rel="nofollow">Groovy</a> presentation ready for my local Java User's Group and I've pretty much got it together. What I'd like to see is what you all think I just have to cover. </p>
<p>Remember, this is an introductory presentation. Most of the people are experienced Java developers, but I'm pretty sure they have little to no Groovy knowledge. I won't poison the well by mentioning what I've already got down to cover as I want to see what the community has to offer.</p>
<p>What are the best things I can cover (in a 1 hour time frame) that will help me effectively communicate to these Java developers how useful Groovy could be to them?</p>
<p>thanks</p>
<p>p.s. I'll share my presentation here later for anyone interested.</p>
<p>as promised now that my presentation has been presented <a href="http://docs.google.com/Presentation?id=dhd8kj8d_17cx6gwfch" rel="nofollow">here it is</a></p>
http://stackoverflow.com/questions/403378/java-cannot-find-symbol-compile-error/403413#4034130Answer by codeLes for Java cannot find symbol compile errorcodeLes2008-12-31T16:39:49Z2008-12-31T16:39:49Z<p>Go into your project properties and under Java Build Path (I think) you need to add the commons jar as an External Jar, this is pretty straight forward once you find the right tab in the properties, once there you'll be able to browse to where you downloaded the jar and add it, that should clear up your problem.</p>
http://stackoverflow.com/questions/381920/how-do-i-redirect-output-to-stderr-in-groovy/382206#3822062Answer by codeLes for How do I redirect output to stderr in groovy?codeLes2008-12-19T21:07:32Z2008-12-19T21:07:32Z<p>Just off the top of my head couldn't you do a bit of self-wiring:</p>
<pre><code>def printErr = System.err.&println
printErr("AHHH")
</code></pre>
<p>but that is a bit manual</p>
http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/222272#2222721Answer by codeLes for Is there a good date parser for Java?codeLes2008-10-21T15:21:35Z2008-10-24T15:46:50Z<p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/Calendar.html" rel="nofollow">Calendar</a> is usually the way to go, but understand that most Java Date management will be handled on your part if you want it done properly. <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/util/TimeZone.html" rel="nofollow">Timezone</a> is a good thing to look into if you have to manage international/cross-zone info. <a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda Time</a> is also a neat thing and is the inspiration behind the new suggested Date/Time concepts to be added to Java in <a href="http://today.java.net/pub/a/today/2008/09/18/jsr-310-new-java-date-time-api.html" rel="nofollow">JSR 310</a>.</p>
<p>Hope this is helpful.</p>
http://stackoverflow.com/questions/213057/5-years-experience-100k-salary-really/213423#2134231Answer by codeLes for 5 years experience == 100k+ salary? Really?codeLes2008-10-17T18:58:41Z2008-10-17T18:58:41Z<p>You have to know what you want in your career and in your life, then make it balance. Sometimes you have to take chances. In my market I was getting under paid by a significant percentage. Being inexperienced I thought I just had to do my time. Finally I tested the waters and put my resume out. Got an offer that was a 33% increase. I was still enjoying where I worked so I gave them the chance to keep me. They actually gave me just under that at 32%. </p>
<p>One year later the company I was in had been taking a lot of negative turns (outsourcing, layoffs, tighter benefits) so I checked around. Then I found an offer that got me about a 22% increase (without moving). So in 3 years time (with about 1.5 years freelance web development prior to that) I was able to bump my salary by around 50%. That might have been different if the company I was with had started me higher to begin with.</p>
<p>All that to say that even if you are in a lower paying market by comparison (I'm in the Midwest) you can still improve your salary just by being good at what you do and not being afraid to do what it takes to take care of yourself (I left my previous company in good standing and still have relationships with most of my ex-co-workers).</p>
http://stackoverflow.com/questions/211426/what-punishment-do-you-have-when-someone-on-the-team-breaks-the-build/212043#2120430Answer by codeLes for What punishment do you have when someone on the team breaks the build?codeLes2008-10-17T13:11:30Z2008-10-17T13:11:30Z<p>we use a Mr. Potato Head. When the build is broken then the Potato Head gets set on the edge of the breaker's cube for all to see.</p>
http://stackoverflow.com/questions/206224/grails-file-upload-problems/206259#2062590Answer by codeLes for Grails File Upload ProblemscodeLes2008-10-15T20:19:31Z2008-10-15T20:19:31Z<p>make sure you update the html (your gsp with the form to upload from) to have the <strong>enctype</strong> as they show:</p>
<pre><code><g:form action="upload" method="post" enctype="multipart/form-data">
</code></pre>
<p>Hope that is helpful, seems too obvious but it's my first thought after seeing your error message.</p>
http://stackoverflow.com/questions/205474/which-certifications-are-worthwhile-and-useful-on-a-resume/205524#2055240Answer by codeLes for Which certifications are worthwhile and useful on a resume?codeLes2008-10-15T16:56:47Z2008-10-15T16:56:47Z<p>I had a colleague/friend who said that he got his Certs (Sun/Java and some others) just for his own edification. He said when he puts them on his resume it's only for that extra criteria someone might look at. i.e. the employer gets down to 2 or 3 people seemingly equal experience/interview skills, the added value of the certs might come in handy at that point. </p>
http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/183584#18358426Answer by codeLes for What does it mean for a programming language to be "on rails"?codeLes2008-10-08T16:13:06Z2008-10-09T13:50:16Z<p>To address your confusion with the metaphor (though it has been answered in other words under your question):</p>
<blockquote>Groovy is to Grails as Ruby is to Ruby on Rails, but what does that mean?</blockquote>
<p>Grails was a web framework built on/with the Groovy programming language to do the same thing for Groovy that Rails (a web framework for Ruby) does for Ruby.</p>
<p><hr /></p>
<blockquote>What does it mean to be "on rails"?</blockquote>
<p>The answer to this comes down to the essence of these web frameworks.</p>
<p>These web frameworks (Grails & Rails) are built on the premise of "convention over configuration", which means that using common conventions to develop web applications can lead to higher productivity and more maintainable applications (this is a gross generalization). And by defining a convention and sticking to that you will find that your applications are easy to generate and quick to get up and running.</p>
<p>This is what it means to me to be "on rails", just like a train. When a new train route is developed there is no worry about reinventing the way the train will get from one place to another, it's been solved by a single convention for decades: rails. Just as the tracks on a train route constrain its path from two locations, convention-based web frameworks use conventions to the flexibility of application developers so that they can concentrate on what the essential business problem of their application.</p>
<p>One key benefit of a convention for a web framework is that the web framework can now make assumptions on how certain layers of the application hook together. In Rails, one can usually assume that if one's database table has a plural name, the ActiveRecord class mapped to that table will have the corresponding singular name. Consequently, Rails code generators can consume the data-mapping information to generate data access code such as dynamic finders, migrations, lazy-loaded association traversals, etc. This data access code in a configuration-based framework is laborious to code by hand.</p>
http://stackoverflow.com/questions/33822/any-way-to-write-a-windows-bat-file-to-kill-processes4Any way to write a Windows .bat file to kill processes?codeLes2008-08-29T02:09:55Z2008-10-04T22:14:37Z
<p>So every time I turn on my company owned development machine I have to kill 10+ processes using the task manager or any other process management app just to get decent performance out of my IDE. Yes, these are processes from programs that my company installs on my machine for security and compliance. What I'd like to do is have a .bat file or script of some kind that I can just fire off and kill the processes in question. </p>
<p>Anybody already know how to do this?</p>
http://stackoverflow.com/questions/137399/unit-testing-without-assertions/137470#1374700Answer by codeLes for Unit Testing without AssertionscodeLes2008-09-26T02:48:30Z2008-09-26T02:48:30Z<p>We do this all the time. We mock our dependencies using JMock, so I guess in a sense the JMock framework is doing the assertion for us... but it goes something like this. We have a controller that we want to test:</p>
<pre><code>Class Controller {
private Validator validator;
public void control(){
validator.validate;
}
public setValidator(Validator validator){ this.validator = validator; }
}
</code></pre>
<p>Now, when we test Controller we dont' want to test Validator because it has it's own tests. so we have a test with JMock just to make sure we call validate:</p>
<pre><code>public void testControlShouldCallValidate(){
mockValidator.expects(once()).method("validate");
controller.control;
}
</code></pre>
<p>And that's all, there is no "assertion" to see but when you call control and the "validate" method is not called then the JMock framework throws you an exception (something like "expected method not invoked" or something).</p>
<p>We have those all over the place. It's a little backwards since you basically setup your assertion THEN make the call to the tested method.</p>
http://stackoverflow.com/questions/121393/grails-plugin-for-eclipse-and-netbeans-6-1/122399#1223992Answer by codeLes for grails plugin for eclipse and netbeans 6.1codeLes2008-09-23T17:18:35Z2008-09-23T17:18:35Z<p>If you use the NetBeans 6.5 Beta you'll see the Grails functionality is promising, but still buggy(minor). The good thing is in 6.5 Groovy and Grails support is standard, you don't have to install the plugins.</p>
http://stackoverflow.com/questions/102167/do-you-have-unit-testing-in-your-projects/102448#1024481Answer by codeLes for Do you have unit testing in your projects?codeLes2008-09-19T14:49:44Z2008-09-19T14:49:44Z<p>yes, although some of the projects I've worked on recently have had more "integration" tests than unit tests (which is almost as bad as no tests as I've experienced it), but my current project has reached about 95% code coverage. It's a Java web app, we're doing test-first using:</p>
<ul>
<li><a href="http://junit.org" rel="nofollow">Junit</a> (3)</li>
<li><a href="http://jmock.org" rel="nofollow">Jmock</a></li>
<li>and some <a href="http://en.wikipedia.org/wiki/Behavior_driven_development" rel="nofollow">BDD</a> practices</li>
</ul>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90038#900380Answer by codeLes for What is a reasonable code coverage % for unit tests (and why)?codeLes2008-09-18T04:33:11Z2008-09-18T04:33:11Z<p>This has to be dependent on what phase of your application development lifecycle you are in. </p>
<p>If you've been at development for a while and have a lot of implemented code already and are just now realizing that you need to think about code coverage then you have to check your current coverage (if it exists) and then use that baseline to set milestones each sprint (or an average rise over a period of sprints), which means taking on code debt while continuing to deliver end user value (at least in my experience the end user doesn't care one bit if you've increased test coverage if they don't see new features). </p>
<p>Depending on your domain it's not unreasonable to shoot for 95%, but I'd have to say on average your going to be looking at an average case of 85% to 90%.</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/82456#824562Answer by codeLes for What's Your Motto As A Developer/Programmer?codeLes2008-09-17T12:16:01Z2008-09-17T12:16:01Z<p>First learn to solve problems then, if you must, learn to write code.</p>
http://stackoverflow.com/questions/57910/how-do-i-increase-the-number-of-default-rows-per-page/58239#582391Answer by codeLes for How do I increase the number of default rows per page?codeLes2008-09-12T03:01:54Z2008-09-12T03:33:07Z<p>I found this but can't get it to work. You're supposed to be able (according to <a href="http://www.nabble.com/Dynamic-scaffolding-Controller-using-edited-template-td13468221.html" rel="nofollow">this</a>) to scaffold and then override the actions you want (say list) in your controller, but like I said, it doesn't work for me...</p>
<pre><code>class PersonController {
def scaffold = true
def list = {
if(!params.max) params.max = 20
[ personList: Person.list( params ) ]
}
}
</code></pre>
http://stackoverflow.com/questions/53318/effective-ways-to-introduce-agile-into-the-workplace/53340#533402Answer by codeLes for Effective Ways to Introduce Agile into the Workplace?codeLes2008-09-10T02:44:28Z2008-09-10T02:44:28Z<p>Step 1: ensure your project has a beefy backlog, and make sure it's prioritized</p>
<p>Step 2: introduce SCRUM practices (manageable iterations, daily standups, scrum-master, product-owner, burndown charts)</p>
<p>Step 3: each iteration present team results with the burndown</p>
<p>then...<br/>
implement TDD/BDD, pair programming, code reviews (all very gently), and if you have a good enough team get everyone co-located (a team-room if possible).</p>
<p>Above all, understand there will be resistance (WILL BE), so be ready to manage that.</p>
<p>Another thing to remember is that if you are a part of an organization (large or small) that as a whole will not follow these best practices then it may take a while (if ever) to feel like you're making progress.</p>
http://stackoverflow.com/questions/46350/html-center-a-block-of-content-when-you-dont-know-in-advance-its-width/46420#464200Answer by codeLes for HTML: center a block of content when you don't know in advance its width.codeLes2008-09-05T17:56:44Z2008-09-05T18:03:12Z<p>The following works well enough. note the <em>position</em>, and the use of <em>auto</em></p>
<pre><code><div style="border: 1px solid black;
width: 300px;
height: 300px;">
<div style="width: 150px;
height: 150px;
background-color: blue;
position: relative;
left: auto;
right: auto;
margin-right: auto;
margin-left: auto;">
</div>
</div>
</code></pre>
<p>NOTE: not sure if it works in IE.</p>
http://stackoverflow.com/questions/45191/ioc-explain-and-more-important-when-to-use-it/45242#452421Answer by codeLes for IoC Explain and more important when to use it?codeLes2008-09-05T04:48:18Z2008-09-05T04:48:18Z<p>Let's say you have a validator for checking whether or not a business is valid in your system. Your "BusinessValidator" may have a field of type AddressValidator which validates the address part of the business. If you want to test the BusinessValidator without executing outside code (i.e. the addressValidator code) then if you have used some sort of IoC/DI in your framework you can easliy "inject" a mock addressValidator in it's place and not have to worry about testing code outside the scope of the class under test. </p>
http://stackoverflow.com/questions/35615/what-is-a-good-online-resource-for-css-design-patterns/35649#356490Answer by codeLes for What is a good online resource for css 'design patterns'?codeLes2008-08-30T03:30:27Z2008-08-30T03:30:27Z<p>The already mentioned <a href="http://www.alistapart.com/" rel="nofollow">A List Apart</a> is really good. Another site I've used since I started web development is SitePoint.com. Here is their <a href="http://reference.sitepoint.com/css" rel="nofollow">CSS Reference</a>. If you want a good CSS book their's is one of my favorites.</p>
http://stackoverflow.com/questions/1801720/how-to-pass-stored-procedure-parameter-values-from-vb6-application-to-show-a-repoComment by codeLes on How to pass stored procedure parameter values from vb6 application to show a report (made by crystal reports 8.5)?codeLes2009-11-25T16:15:20Z2009-11-25T16:15:20Zmay get more help on stackoverflow.comhttp://stackoverflow.com/questions/1291021/what-would-make-ant-execute-javac-in-eclipse-with-utf-8-instead-of-my-system-de/1293022#1293022Comment by codeLes on What would make Ant execute 'javac' in Eclipse with UTF-8 instead of my system default Cp1252?codeLes2009-08-18T13:36:39Z2009-08-18T13:36:39Zhonestly I'd just like to know WHAT IN THE WORLD makes Ant in eclipse use the different encodnig for javac when even eclipse compiles cp1252http://stackoverflow.com/questions/1291021/what-would-make-ant-execute-javac-in-eclipse-with-utf-8-instead-of-my-system-de/1293022#1293022Comment by codeLes on What would make Ant execute 'javac' in Eclipse with UTF-8 instead of my system default Cp1252?codeLes2009-08-18T13:34:30Z2009-08-18T13:34:30Z@McDowell - this has been my concern, as for now I've got past this issue, but in my mind it isn't really resolved. honestly we should be using UTF-8 as far as I can tell from research, but alas I'm 1 week new to this project.http://stackoverflow.com/questions/1291021/what-would-make-ant-execute-javac-in-eclipse-with-utf-8-instead-of-my-system-de/1293022#1293022Comment by codeLes on What would make Ant execute 'javac' in Eclipse with UTF-8 instead of my system default Cp1252?codeLes2009-08-18T11:55:03Z2009-08-18T11:55:03ZI'd rather everything be set to a more cross-platform-friendly encoding such as utf-8, maybe that will be a task for me to accomplish when I get better ramped up on the projecthttp://stackoverflow.com/questions/1291021/what-would-make-ant-execute-javac-in-eclipse-with-utf-8-instead-of-my-system-de/1293022#1293022Comment by codeLes on What would make Ant execute 'javac' in Eclipse with UTF-8 instead of my system default Cp1252?codeLes2009-08-18T11:53:11Z2009-08-18T11:53:11Zby that I meant that if I switched the project encoding to utf8 it would be in line with the utf8 compiled code that was running on the server, since Ant in Eclipse is somehow using utf8 for javachttp://stackoverflow.com/questions/840951/slightly-embarrassing-grails-questionComment by codeLes on Slightly embarrassing grails questioncodeLes2009-05-08T18:42:24Z2009-05-08T18:42:24ZJust for kicks and grins see if changing the name of the field 'name' to something else. not sure, but seems like I remember running into issues using that once. If that doesn't work then sorry I wasted your time :)http://stackoverflow.com/questions/802391/help-balloons-in-groovy-on-grails/802512#802512Comment by codeLes on Help-balloons in groovy on grailscodeLes2009-04-30T13:06:00Z2009-04-30T13:06:00ZI thought the question was: "Where should be located this properties file (message bundle)?" and then about 1 per controller. Maybe just a language barrier. Should we reword your question? re. how to call the file, I'll have to dig a little bit. http://stackoverflow.com/questions/611282/o-errors-allerrors-each-println-it-by-default-when-failing-to-save-a-domain-o/613028#613028Comment by codeLes on o.errors.allErrors.each { println it } by default when failing to save a domain objectcodeLes2009-03-05T00:02:57Z2009-03-05T00:02:57ZThat is a nice expansion of the answer I provided. Glad you solved it.http://stackoverflow.com/questions/546618/interactively-run-code-against-grails-runtime-environment/547301#547301Comment by codeLes on Interactively Run code against Grails Runtime EnvironmentcodeLes2009-02-14T04:51:42Z2009-02-14T04:51:42Zthanks chanwit! I should have made such a brief answer community editable... next time I will.http://stackoverflow.com/questions/403378/java-cannot-find-symbol-compile-errorComment by codeLes on Java cannot find symbol compile errorcodeLes2008-12-31T16:36:54Z2008-12-31T16:36:54Zoops, I see eclipse in there now, my bad, still would be useful to know what steps you've takenhttp://stackoverflow.com/questions/403378/java-cannot-find-symbol-compile-errorComment by codeLes on Java cannot find symbol compile errorcodeLes2008-12-31T16:35:50Z2008-12-31T16:35:50ZWhat IDE are you using? (eclipse, netbeans, intelliJ, ...) What steps have you taken to get the jar in your project? These clarifications can help get you an answer.http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/222272#222272Comment by codeLes on Is there a good date parser for Java?codeLes2008-10-24T15:45:44Z2008-10-24T15:45:44Zthanks for the comment... my mistake, will correct my answer. Thanks.http://stackoverflow.com/questions/222245/is-there-a-good-date-parser-for-java/222282#222282Comment by codeLes on Is there a good date parser for Java?codeLes2008-10-21T15:27:49Z2008-10-21T15:27:49Z+1 for apache Commons! Those libraries are so often overlooked or underappreciated and many programmers really don't know what they include.http://stackoverflow.com/questions/206224/grails-file-upload-problems/206357#206357Comment by codeLes on Grails File Upload ProblemscodeLes2008-10-15T20:39:57Z2008-10-15T20:39:57Zsaw that, but had no idea how to communicate it... another guy says he did a clean and cleared his cache and it worked... not sure about that... but it worked for him somehowhttp://stackoverflow.com/questions/206224/grails-file-upload-problems/206259#206259Comment by codeLes on Grails File Upload ProblemscodeLes2008-10-15T20:27:02Z2008-10-15T20:27:02Zthanks, see your update... trying to dig in... is it wierd that the Request is Jetty specific and not just an HttpRequest...