User robert fischer - Stack Overflowmost recent 30 from stackoverflow.com2008-11-20T20:15:19Zhttp://stackoverflow.com/feeds/user/27561http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/303741/Answer by Robert Fischer for How to work around a potential performance issue when using a Grails hasMany relation?Robert Fischer2008-11-19T23:07:25Z2008-11-19T23:07:25Z<p>There is no order ensured by Hibernate/GORM in the default mapping. Therefore, it doesn't have to load elements from the database in order to do the sorting. You will have your hands on a bunch of ids, but that's that extent of it.</p>
<p>See 19.5.2:
<a href="http://www.hibernate.org/hib_docs/reference/en/html/performance-collections.html" rel="nofollow">http://www.hibernate.org/hib_docs/reference/en/html/performance-collections.html</a></p>
<p>In general, Hibernate/GORM is going to have better performance than you expect. Unless and until you can actually prove a real-world performance issue, trust in the framework and don't worry about it.</p>
http://stackoverflow.com/questions/303704/Answer by Robert Fischer for What are the hidden features of Groovy?Robert Fischer2008-11-19T22:53:47Z2008-11-19T22:53:47Z<p>Argument reordering with implicit arguments is another nice one.</p>
<p>This code:</p>
<pre><code>def foo(Map m=[:], String msg, int val, Closure c={}) {
[...]
}
</code></pre>
<p>Creates all these different methods:</p>
<pre><code>foo("msg", 2, x:1, y:2)
foo(x:1, y:2, "blah", 2)
foo("blah", x:1, 2, y:2) { [...] }
foo("blah", 2) { [...] }
</code></pre>
<p>And more. It's impossible to screw up by putting named and ordinal arguments in the wrong order/position.</p>
<p>Of course, in the definition of "foo", you can leave off "String" and "int" from "String msg" and "int val" -- I left them in just for clarity.</p>
http://stackoverflow.com/questions/303561/Answer by Robert Fischer for What are the hidden features of Groovy?Robert Fischer2008-11-19T22:07:37Z2008-11-19T22:07:37Z<p>Using hashes as pseudo-objects.</p>
<pre><code>def x = [foo:1, bar:{-> println "Hello, world!"}]
x.foo
x.bar()
</code></pre>
<p>Combined with duck typing, you can go a long way with this approach. Don't even need to whip out the "as" operator.</p>
http://stackoverflow.com/questions/219328/Answer by Robert Fischer for How can I port a legacy Java/J2EE website to a modern scripting language (PHP,Python/Django, etc)?Robert Fischer2008-10-20T18:05:01Z2008-10-20T18:05:01Z<p>A lot of the recommendations being given here are assuming you -- and just you -- are doing a full rewrite of the application. This is probably not the case, and it changes the answer quite a bit</p>
<p>If you've already got J2EE kicking around, the correct answer is Grails. It simply is: you probably already have Hibernate and Spring kicking around, and you're going to want the ability to flip back and forth between your old code and your new with a minimum amount of pain. That's exactly Groovy's forte, and it is even smoother than JRuby in this regards.</p>
<p>Also, if you've already got a J2EE app kicking around, you've already got Java developers kicking around. In that case, learning Groovy is like falling off a ladder -- literally. With the exception of anonymous inner classes, Groovy is a pure superset of Java, which means that you can write Java code, call it Groovy, and be done with it. As you become increasingly comfortable with the nicities of Groovy, you can integrate them into your Java-ish Groovy code. Before too long, you'll be writing very Groovy code, and not even really have realized the transition.</p>
http://stackoverflow.com/questions/219318/Answer by Robert Fischer for Favorite (non-esoteric) Programming LanguageRobert Fischer2008-10-20T17:58:45Z2008-10-20T17:58:45Z<p>What language I use for personal projects depends on the context. If it's a web project, <strong>Groovy/Grails</strong> (like Ruby/Rails, but without the constant breaking or spelunking into the innards of the framework). <strong>Perl</strong> still dominates in the world of system administration and command-line interfaces (Ruby sacrificed in this respect to be a more application-friendly language). For knocking out a programmatic demonstration of a mathematical or programming idea, I still use <strong>OCaml</strong> (implied static typing is awesome, and keeps me from having to write a million unit tests to make sure I didn't do typoes).</p>
<p>Of the three, OCaml matches my way of thinking the best: I <a href="http://enfranchisedmind.com/blog/2008/07/07/rubymn-presentation-of-ocaml/" rel="nofollow">had my mind warped by OCaml</a> and never really recovered. Notably, I started my career doing C++ and Lisp (emacs hacking), yet it took OCaml for me to really grok functional programming. Also notable is that my undergraduate degree is in math, so OCaml's syntax was a lay-up for me.</p>
http://stackoverflow.com/questions/219298/Answer by Robert Fischer for Have a favorite custom Grails tag?Robert Fischer2008-10-20T17:51:03Z2008-10-20T17:51:03Z<p>I have a "fmt:relDate" tag that gives you Twitter-like relative dates "3 days ago", "less than 30 seconds ago", etc., with the real time as a tooltip.</p>
<p>The current implementation is basically a gigantic chain of if/then statements with the boundaries that I like. A binary-search based algorithm would be better (in the sense of "more efficient"), and the current implementation has my personal preferences encoded into it, so I'm reluctant to share the tag.</p>
http://stackoverflow.com/questions/198953/Answer by Robert Fischer for Best practices for grails index pageRobert Fischer2008-10-13T20:39:41Z2008-10-13T20:39:41Z<p><strong>The good answer:</strong> If you need to populate a model for the index page, it's time to change from using a straight index.gsp to an index controller.</p>
<p><strong>The evil answer:</strong> If you create a filter whose controller is '*', it'll get executed even for static pages.</p>
http://stackoverflow.com/questions/198786/Answer by Robert Fischer for How to pipe stdout from a groovy method into a stringRobert Fischer2008-10-13T19:44:12Z2008-10-13T19:44:12Z<p>I'm not sure what you mean by "appending the output to a string", but you can print to standard out using "print" or "println".</p>
http://stackoverflow.com/questions/198541/Answer by Robert Fischer for How do I get at the goodies in my Grails Config.groovy at runtime?Robert Fischer2008-10-13T18:31:18Z2008-10-13T18:57:57Z<p>danb is on the right track. However, life gets a bit easier on your fingers if you do a nicer import:</p>
<pre><code>import org.codehaus.groovy.grails.commons.ConfigurationHolder as CH
println CH.config.grails.serverURL
</code></pre>
http://stackoverflow.com/questions/198641/Answer by Robert Fischer for Grails 1.0.3 console reports 'premature end of file'Robert Fischer2008-10-13T18:56:12Z2008-10-13T18:56:12Z<p>Upgrading to a 1.0.4 snapshot is probably the best way to deal with this issue. Check out the instructions under "Grails Development Builds" at <a href="http://grails.org/Download" rel="nofollow">the Grails Download page</a>.</p>
<p>It can also be ignored without too much difficulty.</p>
http://stackoverflow.com/questions/198614/Answer by Robert Fischer for shortcut for creating a Map from a List in groovy?Robert Fischer2008-10-13T18:48:46Z2008-10-13T18:48:46Z<p>Check out "inject". Real functional programming wonks call it "fold".</p>
<pre><code>columns.inject([:]) { memo, entry ->
memo[entry.name] = entry.val
return memo
}
</code></pre>
<p>And, while you're at it, you probably want to define methods as Categories instead of right on the metaClass. That way, you can define it once for all Collections:</p>
<pre><code>class PropertyMapCategory {
static Map mapProperty(Collection c, String keyParam, String valParam) {
return c.inject([:]) { memo, entry ->
memo[entry[keyParam]] = entry[valParam]
return memo
}
}
}
</code></pre>
<p>Example usage: </p>
<pre><code>use(PropertyMapCategory) {
println columns.mapProperty('name', 'val')
}
</code></pre>