Tag Archives: Functional Languages: Ocaml, Haskell

Newfangled Technology Like “Map” and “Foreach”

A couple of guys at work are talking right now about how great JQuery is. Their favorite part? “Chainability” (where you just apply function after function after function) and “each” / “map“. New stuff, apparently coming out of “scripting language like Groovy and Rails”. Or, y’know, like ML or Lisp… I’m just glad to see [...]

Posted in To Be Categorized | Tagged | Leave a comment

Functional Code Win of the Day

A method that takes the non-null values in the provided list. Was: private static final <A> List<A> filterNullsFrom(final List<A> list) { final List<A> out = new ArrayList<A>(list.size()); for(final A elt : list) { if(elt != null) { out.add(elt); } } return out; } Is: import static org.apache.commons.collections.CollectionUtils.select; import static org.apache.commons.collections.PredicateUtils.notNullPredicate; … private static final <A> [...]

Posted in To Be Categorized | Tagged | 8 Comments

MinneBar Conference Report

My stream-of-consciousness memoir on MinneBar. Had a blast at MinneBar. The space was a bit small and I think turnout was much higher than anyone anticipated, and it way hot (in the thermal sense), but it succeeded with flying colors at creating “something exciting by being in close proximity to lots of smart people”. Got [...]

Posted in To Be Categorized | Also tagged | 5 Comments

MinneBar

Well, it looks like I’m going to be doing two sessions at MinneBar: one on using Fit (a Java framework) to generate executable documentation (and how this makes life nice for business-types that have to talk to Java developers), and one as a brainstorming session on Functional Languages and Agile Development (basically so I can [...]

Posted in To Be Categorized | Also tagged | Leave a comment

And the OTHER Verdict is…

They’ve accepted my hands-on proposal: “Agile Development Using a Functional Language”. WTF? I figured that was a certain bomb. I was just pitching it out there as a lark. Even one of the reviewers said “probably will be interesting to some attendees, but i expect small turnout.” I already had some research done for the [...]

Posted in To Be Categorized | Tagged | 4 Comments
  • Categories