User John Flinchbaugh - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T02:20:57Z http://stackoverflow.com/feeds/user/12591 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1460670/how-iterate-xml-nodes-with-groovy/1461435#1461435 0 Answer by John Flinchbaugh for How iterate xml-nodes with Groovy ? John Flinchbaugh 2009-09-22T17:26:04Z 2009-09-22T17:26:04Z <p>it.@dueDate is referencing a "dueDate" attribute, not node. Second, you're looking for "2007-02-01..." in your code, which should have been "2007-02-11..." to match an actual node in your input XML, I'd guess.</p> <p>So, this does work:</p> <pre><code>def Input = """ &lt;S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"&gt; &lt;S:Body&gt; &lt;ns2:getSalesAuditsResponse xmlns:ns2="http://apidto.dto.t2.wsapi.ng.com/"&gt; &lt;return&gt; &lt;code&gt;0909019000004830&lt;/code&gt; &lt;realOpenAmount&gt;12&lt;/realOpenAmount&gt; &lt;dueDate&gt;2009-07-11T00:00:00+03:00&lt;/dueDate&gt; &lt;/return&gt; &lt;return&gt; &lt;code&gt;0909119000006260&lt;/code&gt; &lt;realOpenAmount&gt;55.75&lt;/realOpenAmount&gt; &lt;dueDate&gt;2007-02-11T00:00:00+02:00&lt;/dueDate&gt; &lt;/return&gt; &lt;/ns2:getSalesAuditsResponse&gt; &lt;/S:Body&gt; &lt;/S:Envelope&gt; """ def document = new groovy.util.XmlSlurper().parseText(Input); def sa = document.depthFirst().findAll {it.dueDate == "2007-02-11T00:00:00+02:00"} </code></pre> <p>If I intended to modify the XML, I think I'd end up using the standard MarkupBuilder or StreamingMarkupBuilder to output new XML in the form I wanted.</p> http://stackoverflow.com/questions/1337464/overriding-grails-views-default-codechtml-config-back-to-none 0 Overriding grails.views.default.codec='html' config back to 'none' John Flinchbaugh 2009-08-26T21:01:19Z 2009-08-27T12:08:18Z <p>If I leave <code>grails.views.default.code='none'</code> in the grails Config.groovy, it's up to me to HTML encode my expressions explicitly in the GSP files: <code>${myValue?.encodeAsHTML()}</code>.</p> <p>If I set <code>grails.views.default.codec='html"</code> in the Config.groovy, then the HTML encoding happens automatically for every expression: <code>${myValue}</code>.</p> <p>My question: If I set the default to <code>'html'</code>, how do I get back to <code>'none'</code> for one expression when I don't want the HTML encoding behavior?</p> http://stackoverflow.com/questions/1337464/overriding-grails-views-default-codechtml-config-back-to-none/1340652#1340652 0 Answer by John Flinchbaugh for Overriding grails.views.default.codec='html' config back to 'none' John Flinchbaugh 2009-08-27T12:08:18Z 2009-08-27T12:08:18Z <p>I may have a solution. I'm not sure how accepted it is, though.</p> <p>I can set the default codec for expressions to HTML, but then use &lt;%=myValue%> notation in GSP instead of ${} expressions to get the unescaped values onto the page.</p> http://stackoverflow.com/questions/1334298/running-a-script-from-groovy/1334625#1334625 1 Answer by John Flinchbaugh for Running a script from Groovy John Flinchbaugh 2009-08-26T13:18:15Z 2009-08-26T13:18:15Z <p>Groovy added an execute() method to plain old String, so try this:</p> <pre><code>println "ls -la".execute().text </code></pre> http://stackoverflow.com/questions/1051778/can-generic-xml-by-parsed-as-nicely-as-simple-xml-in-groovy 1 Can generic XML by parsed as nicely as simple XML in Groovy? John Flinchbaugh 2009-06-27T00:16:25Z 2009-08-04T00:00:01Z <p>Given a nice, simple XML structure, XmlSlurper() can allow me to read values from it very easily.</p> <pre><code>def xml = "&lt;html&gt;&lt;head&gt;&lt;title&gt;groovy&lt;/title&gt;&lt;/head&gt;&lt;/html&gt;" def html = new XmlSlurper().parseText(xml) println html.head.title </code></pre> <p>Is there a way to make this simple tree navigation possible for generic (type-based, etc) XML. Ideally, in the snippet of code below, I'd like to walk the values by their <em>name</em> attribute, but instead, I have to do all this searching:</p> <pre><code>def genxml = """ &lt;doc&gt; &lt;lst name = "head"&gt; &lt;str name = "title"&gt;groovy&lt;/str&gt; &lt;str name = "keywords"&gt;java xml&lt;/str&gt; &lt;/lst&gt; &lt;/doc&gt;""" def doc = new XmlSlurper().parseText(genxml) println doc.lst.find { it.@name == "head" }.str.find { it.@name == "title" } </code></pre> <p>Is there a way to walk this just as:</p> <pre><code>println doc.head.title </code></pre> http://stackoverflow.com/questions/1037135/dynamic-languages-which-one-should-i-choose/1038721#1038721 4 Answer by John Flinchbaugh for Dynamic languages - which one should I choose? John Flinchbaugh 2009-06-24T14:27:54Z 2009-06-24T14:27:54Z <p>I found Groovy to be a relatively easy jump from an extensive Java background -- it's sort of a more convenient version of Java. It integrates really nicely with existing Java code as well, if you need to do that sort of thing.</p> http://stackoverflow.com/questions/303512/hidden-features-of-groovy/306404#306404 4 Answer by John Flinchbaugh for Hidden features of Groovy? John Flinchbaugh 2008-11-20T18:43:05Z 2009-06-01T01:13:40Z <pre><code>println """ Groovy has multi-line strings. Hooray! """ </code></pre> http://stackoverflow.com/questions/494135/specify-order-of-fields-in-ddl-generated-from-gorm-classes/506950#506950 1 Answer by John Flinchbaugh for Specify order of fields in DDL generated from GORM classes? John Flinchbaugh 2009-02-03T12:47:02Z 2009-02-03T12:47:02Z <p>There doesn't appear to be a way to specify the ordering, but you could always create your own tables as you want them and provide name mappings in your domain classes. You could also let GORM create the tables, and then recreate the tables in the right order, and turn off the automatic DDL stuff in GORM after that. If you use the field and table names that GORM chose, you'll not need to add any mappings.</p> http://stackoverflow.com/questions/309892/when-overriding-equals-in-java-why-does-it-not-work-to-use-a-parameter-other-tha/309946#309946 1 Answer by John Flinchbaugh for When overriding equals in Java, why does it not work to use a parameter other than Object? John Flinchbaugh 2008-11-21T19:47:32Z 2008-11-21T19:47:32Z <p>The ArrayList implementation of the contains(Object) method is bound to use Object.equals(Object) method internally, so it'll never know about your overloading of the equals(MyClass) method. Only an overriding method (with matching signature) will be found.</p> http://stackoverflow.com/questions/303113/is-there-a-groovy-equivalent-to-the-beanshell-source-method/306480#306480 4 Answer by John Flinchbaugh for Is there a groovy equivalent to the beanshell source() method? John Flinchbaugh 2008-11-20T19:06:48Z 2008-11-20T19:06:48Z <p>You can assemble all the parts of your scripts into a String, then have a GroovyShell object evaluate your script. I picked this up from Venkat Subramanium's DSL examples.</p> <pre><code>part1 = new File("part1.groovy").text part2 = new File("part2.groovy").text script = """ println "starting execution" ${part1} ${part2} println "done execution" """ new GroovyShell().evaluate(script) </code></pre> http://stackoverflow.com/questions/303512/hidden-features-of-groovy/306441#306441 0 Answer by John Flinchbaugh for Hidden features of Groovy? John Flinchbaugh 2008-11-20T18:56:02Z 2008-11-20T18:56:02Z <p>Closures can make all the old try-finally games of resource management go away. The file stream is automatically closed at the end of the block:</p> <pre><code>new File("/etc/profile").withReader { r -&gt; System.out &lt;&lt; r } </code></pre> http://stackoverflow.com/questions/194331/adding-a-method-to-a-domain-class/199786#199786 1 Answer by John Flinchbaugh for Adding a method to a domain class John Flinchbaugh 2008-10-14T02:06:39Z 2008-10-14T02:06:39Z <p>If you want your method to appear to be more like a property, then make your method a getter method. A method called getFullName(), can be accessed like a property as ${person.fullName}. Note the lack of parentheses.</p> http://stackoverflow.com/questions/183462/what-does-it-mean-for-a-programming-language-to-be-on-rails/184834#184834 1 Answer by John Flinchbaugh for What does it mean for a programming language to be "on rails"? John Flinchbaugh 2008-10-08T20:49:50Z 2008-10-08T20:49:50Z <p>As said above, Rails and Grails provide conventions for web application development -- naming your pieces a certain way and putting them in the right places get your application working by default with no extra configuration. When you want to deviate from the convention, you can configure your way there.</p> http://stackoverflow.com/questions/51927/how-to-check-if-element-in-groovy-array-hash-collection-list/163883#163883 1 Answer by John Flinchbaugh for How to check if element in groovy array/hash/collection/list? John Flinchbaugh 2008-10-02T18:35:56Z 2008-10-02T18:35:56Z <p>If you really want your includes method on an ArrayList, just add it:</p> <pre><code>ArrayList.metaClass.includes = { i -&gt; i in delegate } </code></pre> http://stackoverflow.com/questions/99279/how-do-you-parse-a-web-page-and-extract-all-the-href-links/163795#163795 2 Answer by John Flinchbaugh for How do you parse a web page and extract all the href links? John Flinchbaugh 2008-10-02T18:18:55Z 2008-10-02T18:18:55Z <p>Assuming well-formed XHTML, slurp the xml, collect up all the tags, find the 'a' tags, and print out the href and text.</p> <pre><code>input = """&lt;html&gt;&lt;body&gt; &lt;a href = "http://www.hjsoft.com/"&gt;John&lt;/a&gt; &lt;a href = "http://www.google.com/"&gt;Google&lt;/a&gt; &lt;a href = "http://www.stackoverflow.com/"&gt;StackOverflow&lt;/a&gt; &lt;/body&gt;&lt;/html&gt;""" doc = new XmlSlurper().parseText(input) doc.depthFirst().collect { it }.findAll { it.name() == "a" }.each { println "${it.text()}, ${it.@href.text()}" } </code></pre> http://stackoverflow.com/questions/115269/my-java-factory-method-smells-how-do-i-fix-it/115347#115347 1 Answer by John Flinchbaugh for My Java factory method smells. How do I fix it? John Flinchbaugh 2008-09-22T15:04:50Z 2008-09-22T15:04:50Z <p>Another approach to dynamically finding the class to load, would be to omit the explicit map, and just try to build the class name from the command string. A title case and concatenate algorithm could turn "START" -> "com.mypackage.commands.StartCommand", and just use reflection to try to instantiate it. Fail somehow (InvalidCommand instance or an Exception of your own) if you can't find the class.</p> <p>Then you add commands just by adding one object and start using it.</p> http://stackoverflow.com/questions/115269/my-java-factory-method-smells-how-do-i-fix-it/115317#115317 0 Answer by John Flinchbaugh for My Java factory method smells. How do I fix it? John Flinchbaugh 2008-09-22T14:59:03Z 2008-09-22T14:59:03Z <p>Having this repetitive object creation code all hidden in the factory is not so bad. If it has to be done somewhere, at least it's all here, so I'd not worry about it too much.</p> <p>If you <em>really</em> want to do something about it, maybe go for the Map, but configure it from a properties file, and build the map from that props file.</p> <p>Without going the classpath discovery route (about which I don't know), you'll always be modifying 2 places: writing a class, and then adding a mapping somewhere (factory, map init, or properties file).</p> http://stackoverflow.com/questions/77193/how-do-you-justify-refactoring-work-to-your-penny-pinching-boss/77241#77241 5 Answer by John Flinchbaugh for How do you justify Refactoring work to your penny-pinching boss? John Flinchbaugh 2008-09-16T21:18:33Z 2008-09-16T21:18:33Z <p>Just do it and schedule it into your normal process. Estimate refactoring time into starting a new change or into finishing a change (ideal). I always refactor while I'm initially exploring new code (extracting methods, etc).</p> http://stackoverflow.com/questions/77172/stored-procedures-db-schema-in-source-control/77212#77212 0 Answer by John Flinchbaugh for Stored procedures/DB schema in source control John Flinchbaugh 2008-09-16T21:15:50Z 2008-09-16T21:15:50Z <p>For procs, write the procs with script wrappers into plain files, and apply the changes from those files. If it applied correctly, then you can check in that file, and you'll be able to reproduce it from that file as well.</p> <p>For schema changes, you may need to check in scripts to incrementally make the changes you've made. Write the script, apply it, and then check it in. You can build a process then, to automatically apply each schema script in series.</p> http://stackoverflow.com/questions/72406/what-development-book-made-the-most-impact-on-you-as-a-developer/75602#75602 1 Answer by John Flinchbaugh for What development book made the most impact on you as a developer? John Flinchbaugh 2008-09-16T18:43:37Z 2008-09-16T18:43:37Z <p>GOF Design Patterns Fowler's Refactoring</p> http://stackoverflow.com/questions/1334298/running-a-script-from-groovy/1334625#1334625 Comment by John Flinchbaugh on Running a script from Groovy John Flinchbaugh 2009-08-26T13:35:56Z 2009-08-26T13:35:56Z I'm still not sure about changing the working directory. http://stackoverflow.com/questions/205660/best-pattern-for-simulating-continue-in-groovy-closure/205764#205764 Comment by John Flinchbaugh on Best pattern for simulating "continue" in Groovy closure John Flinchbaugh 2008-10-16T12:17:03Z 2008-10-16T12:17:03Z Using exceptions to control program flow is a bad idea. Creating exceptions requires taking a snapshot of the call stack, and that's costly. http://stackoverflow.com/questions/115459/online-tool-for-generating-mathematical-equation-image-files/115475#115475 Comment by John Flinchbaugh on Online tool for generating mathematical equation image files John Flinchbaugh 2008-09-22T15:24:37Z 2008-09-22T15:24:37Z Learn LaTeX, and you can then take your knowledge offline. http://stackoverflow.com/questions/115116/should-unit-test-classes-be-kept-under-version-control-with-the-rest-of-the-code/115120#115120 Comment by John Flinchbaugh on Should unit test classes be kept under version control with the rest of the code? John Flinchbaugh 2008-09-22T15:22:43Z 2008-09-22T15:22:43Z Ideally, you change the tests to demonstrate your change (and fail), then make your change to your code to pass the test. Once the tests are passing again, check it all back into source control. That's test-driven development.