Re: Baltimore Functional Programming

2011-12-01 Thread Gary Trakhman
Awesome! Ok, I've set up the google group, wordpress blog, twitter feed, e-mail address and github for file-hosting and infra. Next step, I'll create a google docs spreadsheet for topic and planning discussions and add some content. Blog: baltimorefp.wordpress.com Twitter: twitter.com/baltimo

Re: ANN: Clarity 0.5.1 - New GUI library

2011-12-03 Thread Gary Trakhman
Have you looked at seesaw? What differences are there in the design and intent? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be

Re: Google chart library

2011-12-06 Thread Gary Trakhman
Note, there is a java api to create the DataTable JSON, it follows some simple rules. http://code.google.com/p/google-visualization-java/ -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com

Re: Baltimore Functional Programming

2011-12-14 Thread Gary Trakhman
We've scheduled a beer night at Max's in Fells point tonight at 7:30. If you haven't already, check out the mailing list: http://groups.google.com/group/baltimorefp Here's the announcement: http://baltimorefp.wordpress.com/2011/12/09/first-beer-night/ On Nov 28, 6:38 pm,

Re: accessing multiple return values

2012-01-03 Thread Gary Trakhman
It seems like we're talking about conflation of language implementation details to simulate a hash-map. Why not just use a hash-map for named values? Or a lazy sequence? A function returns a 'value', which can be a single thing, a collection of things, or even an arbitrary graph of things. If a

Re: Use You a Spaced Repetition System for Great Good!

2012-01-05 Thread Gary Trakhman
Holy cow, I feel anki will change my life. Thank you so much for mentioning it. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be

Re: identical?

2012-01-20 Thread Gary Trakhman
Interning a string is caching it in a string pool that lives in the jvm's permgen space. Calling .intern() on a string either adds it to the pool or return the string object that's already in the pool. This is safe to do for strings that are defined statically, generally you don't want to pro

Re: Null-safe threading macro?

2012-01-26 Thread Gary Trakhman
Probably you know of it by now, but I just found out about http://symbolhound.com/ . -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - pleas

<    1   2   3   4   5