4
votes
shortcut for creating a Map from a List in groovy?
Check out "inject". Real functional programming wonks call it "fold".
columns.inject([:]) { memo, entry ->
memo[entry.name] = entry.val
return memo
}
A …
0
votes
How can I port a legacy Java/J2EE website to a modern scripting language (PHP,Python/Django, etc)?
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 …
56
votes
What are the things Java got right?
1. A continuity of syntax with a previously popular language. Even when Java was written, there were many technically better languages out there. Yet Java offered a syntax which …
