User Robert Fischer - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T09:56:56Z http://stackoverflow.com/feeds/user/27561 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/458043#458043 55 Answer by Robert Fischer for What are the things Java got right? Robert Fischer 2009-01-19T15:47:19Z 2009-05-11T23:43:36Z <p><strong>1. A continuity of syntax with a previously popular language.</strong> Even when Java was written, there were many technically better languages out there. Yet Java offered a syntax which was familiar enough to existing coders that they weren't frightened by it.</p> <p><strong>2. An understanding of what business code needs, and an API to address it.</strong> Java -- at least at one time -- managed to stay one step ahead of the curve of business needs. As implementation of Java applications became more complex, the architectural pieces needing to underpin it rolled out in step. Key examples here are JMS, Javamail, java.util.concurrent.</p> <p><strong>3. A consistent and supportive approach to open source and community dialog.</strong> This is where C# falls down and Java still consistently exceeds. Whereas MSFT has had a schizoid approach to people extending their language (<a href="http://enfranchisedmind.com/blog/2007/06/06/testdrivennet-for-visual-studio-express-get-it-while-its-hot/" rel="nofollow">case in point</a>), Java has consistently been more than supportive of community discussion and language extension.</p> <p><strong>4. A full-featured, reliable, consistent standard library.</strong> Unlike <a href="http://enfranchisedmind.com/blog/2008/03/24/rexml-dynamic-typing-lose/" rel="nofollow">some other popular languages</a>, if you see something in the Java core API, it's going to work pretty well. It may not be a perfect implementation, but it's a good enough implementation that it's not worth reworking. And the standard library is HUGE and consistently growing.</p> <p><strong>5. No need to compile the code for your particular machine.</strong> One of my pet peeves of non-VM languages, because having to compile code for my particular machine means I have to pull down your code and figure out how to compile it. Usually this just consists of "<em>./configure; make</em>", but the very fact I have to think about it annoys me: it's much, much nicer to just drop a JAR onto the classpath.</p> <p><strong>6. The "bean" concept.</strong> Yeah, I know this one is kinda weird, but the concept of a "bean" in Java and the associated concept of "properties" is huge for Java's meta-programming capabilities. That concept is so powerful that if it didn't exist, we'd be forced to invent it -- think about tools like Hibernate, libraries like BeanUtils, or language structures like Groovy's GPath. All of these came from the "bean" concept.</p> <p><strong>7. Garbage collection.</strong> Having a non-optional memory management system was undoubtably the best technical innovation of Java. Which is funny, because it was the reason all the C++ coders were certain Java would be unacceptably slow and eventually fail.</p> <p><strong>8. A solid balance between performance and functionality.</strong> Keying off the previous idea, Java has done a good job maintaining a "fast enough" language while keeping it full-featured. With the exception of start-up time, the Sun JVM (with some help from IBM and the wider community) keeps pace or exceeds the other business languages on the market for working with large projects. Things like the garbage collector, HotSpot optimizer, and JIT are good examples of where Sun's Java impl went very, very right. And it's the reason why many languages are flocking over to the JVM.</p> http://stackoverflow.com/questions/528332/vim-changed-behaviour-on-me-jump-to-line-is-broken/528369#528369 0 Answer by Robert Fischer for VIM changed behaviour on me - jump to line : is broken Robert Fischer 2009-02-09T14:36:34Z 2009-02-09T14:36:34Z <p>Closing and opening vim should reset whatever you funky mode you've discovered. If not, you've got something profoundly weird going on -- vim doesn't store settings that are turned on while in the file.</p> <p>BTW, you're totally ruining my "vim doesn't break" meme.</p> http://stackoverflow.com/questions/289098/how-to-work-around-a-potential-performance-issue-when-using-a-grails-hasmany-rela/303741#303741 1 Answer by Robert Fischer for How to work around a potential performance issue when using a Grails hasMany relation? Robert Fischer 2008-11-19T23:07:25Z 2008-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/303512/hidden-features-of-groovy/303704#303704 -1 Answer by Robert Fischer for Hidden features of Groovy? Robert Fischer 2008-11-19T22:53:47Z 2008-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/303512/hidden-features-of-groovy/303561#303561 7 Answer by Robert Fischer for Hidden features of Groovy? Robert Fischer 2008-11-19T22:07:37Z 2008-11-19T22:07:37Z <p>Using hashes as pseudo-objects.</p> <pre><code>def x = [foo:1, bar:{-&gt; 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/199556/how-can-i-port-a-legacy-java-j2ee-website-to-a-modern-scripting-language-php-pyt/219328#219328 0 Answer by Robert Fischer for How can I port a legacy Java/J2EE website to a modern scripting language (PHP,Python/Django, etc)? Robert Fischer 2008-10-20T18:05:01Z 2008-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/216624/favorite-non-esoteric-programming-language/219318#219318 1 Answer by Robert Fischer for Favorite (non-esoteric) Programming Language Robert Fischer 2008-10-20T17:58:45Z 2008-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/217437/have-a-favorite-custom-grails-tag/219298#219298 1 Answer by Robert Fischer for Have a favorite custom Grails tag? Robert Fischer 2008-10-20T17:51:03Z 2008-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/198936/best-practices-for-grails-index-page/198953#198953 2 Answer by Robert Fischer for Best practices for grails index page Robert Fischer 2008-10-13T20:39:41Z 2008-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/121665/how-to-pipe-stdout-from-a-groovy-method-into-a-string/198786#198786 0 Answer by Robert Fischer for How to pipe stdout from a groovy method into a string Robert Fischer 2008-10-13T19:44:12Z 2008-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/198365/how-do-i-get-at-the-goodies-in-my-grails-config-groovy-at-runtime/198541#198541 5 Answer by Robert Fischer for How do I get at the goodies in my Grails Config.groovy at runtime? Robert Fischer 2008-10-13T18:31:18Z 2008-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/136098/grails-1-0-3-console-reports-premature-end-of-file/198641#198641 1 Answer by Robert Fischer for Grails 1.0.3 console reports 'premature end of file' Robert Fischer 2008-10-13T18:56:12Z 2008-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/18538/shortcut-for-creating-a-map-from-a-list-in-groovy/198614#198614 4 Answer by Robert Fischer for shortcut for creating a Map from a List in groovy? Robert Fischer 2008-10-13T18:48:46Z 2008-10-13T18:48:46Z <p>Check out "inject". Real functional programming wonks call it "fold".</p> <pre><code>columns.inject([:]) { memo, entry -&gt; 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 -&gt; memo[entry[keyParam]] = entry[valParam] return memo } } } </code></pre> <p>Example usage: </p> <pre><code>use(PropertyMapCategory) { println columns.mapProperty('name', 'val') } </code></pre> http://stackoverflow.com/questions/456140/are-there-compelling-reasons-not-to-use-groovy/472066#472066 Comment by Robert Fischer on Are there compelling reasons not to use Groovy? Robert Fischer 2009-01-29T15:06:51Z 2009-01-29T15:06:51Z There's a surprising amount of improvement in that arena, particularly if you're using a framework (like Grails). http://stackoverflow.com/questions/456140/are-there-compelling-reasons-not-to-use-groovy/456189#456189 Comment by Robert Fischer on Are there compelling reasons not to use Groovy? Robert Fischer 2009-01-29T15:06:17Z 2009-01-29T15:06:17Z My experience with Scala is that it is still pretty chatty with types -- and you end up having to use a <i>lot</i> of parens because of funky (and often surprising) precedence rules. http://stackoverflow.com/questions/491067/how-to-find-the-physical-path-of-a-gsp-file-in-a-deployed-grails-application Comment by Robert Fischer on How to find the physical path of a GSP file in a deployed grails application Robert Fischer 2009-01-29T14:49:00Z 2009-01-29T14:49:00Z What are you trying to accomplish? I suspect that this isn't really a meaningful question in the context of a WARred up web app -- after all, you don't actually have a folder to write into. http://stackoverflow.com/questions/491067/how-to-find-the-physical-path-of-a-gsp-file-in-a-deployed-grails-application/491249#491249 Comment by Robert Fischer on How to find the physical path of a GSP file in a deployed grails application Robert Fischer 2009-01-29T14:47:22Z 2009-01-29T14:47:22Z What does that code give you if you do a &quot;grails prod run-war&quot;? http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/458043#458043 Comment by Robert Fischer on What are the things Java got right? Robert Fischer 2009-01-19T16:00:25Z 2009-01-19T16:00:25Z <a href="http://en.wikipedia.org/wiki/JavaBean" rel="nofollow">en.wikipedia.org/wiki/JavaBean</a> -- see also <a href="http://www.ibm.com/developerworks/java/library/j-pg09196.html" rel="nofollow">ibm.com/developerworks/java/&hellip;</a> http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right/458025#458025 Comment by Robert Fischer on What are the things Java got right? Robert Fischer 2009-01-19T15:48:34Z 2009-01-19T15:48:34Z I'm not sure I'm willing to say &quot;Java got generics right&quot; -- although I definitely agree that Java was right to adopt parametrized types. http://stackoverflow.com/questions/289098/how-to-work-around-a-potential-performance-issue-when-using-a-grails-hasmany-rela/290124#290124 Comment by Robert Fischer on How to work around a potential performance issue when using a Grails hasMany relation? Robert Fischer 2008-11-19T23:02:01Z 2008-11-19T23:02:01Z Do you have any documentation/evidence that sorting is performed server-side for a SortedSet?