Sonian is hiring Clojure developers

2012-10-31 Thread joegallo
http://www.sonian.com/about/careers/software-engineer-clojure-cloud/ Come work at Sonian and you'll be writing Clojure full-time, working on interesting big data problems. The Sonian software stack comprises multiple applications tied together with queues and rest interfaces, focused on

Re: Sonian is hiring Clojure developers

2012-10-31 Thread joegallo
Is US-based a requirement set in stone? It's more of a timezone thing than a citizenship or location thing. We have employees in North and South America, but a good number of activities (pairing generally and standup specifically) seem to work best if people are working the same hours

Re: inconsistency in (keyword…) constructor

2012-03-02 Thread joegallo
PS. same issue with (symbol name) and (symbol ns name)… Huh, somehow I noticed this issue with symbol, but didn't see it with keyword. I guess I've need the two arg version of symbol, but never needed the two arg version of keyword. See some related discussion here:

Re: A few enhancements

2011-12-05 Thread joegallo
I've added a new ticket http://dev.clojure.org/jira/browse/CLJ-891 to jira for adding the ability to make (symbol some-ns bar) work. That tackles half of the issue in #4, and reduces your example to just (symbol *ns* (name sym)). -- You received this message because you are subscribed to the

A few enhancements

2011-12-01 Thread joegallo
Here are some things I've run across in Clojure that seem asymmetric to me -- I looked through Jira for issues related to these, but I didn't find any (of course, I might have just missed them). Some of these might be valid enhancements that would make sense to add, some of them might be a

Re: Get multiple vals from a map

2011-12-01 Thread joegallo
((juxt :foo :bar) {:foo 1 :bar 2 :baz 3}) juxt to the rescue -- 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 patient with your

Re: java logging properties and lein

2011-11-14 Thread joegallo
You could drop it into the root of src, or you can add a :resources-path etc in your project.clj and then put it in the root of that. Some purists would probably argue that the latter is better, but the former should work just fine, too. -- You received this message because you are

Doric 0.6.0

2011-11-11 Thread joegallo
I just released a new version of doric (https://github.com/joegallo/doric) -- it's a fun little utility library that you might want to look at if you're using clojure.pprint/print-table, but want a few more features than it provides. This version includes support for generating csv, raw text

Re: Adding a jar to dependencies in lein

2011-11-11 Thread joegallo
Go to search.maven.org, and type in jericho-html. That'll take you to some results pages that will tell you the versions that are available, and also the correct groupId and artifactId. Then you add into project.clj the following [groupId/artifactId version]. In this case,

Re: Creating a map algorithmically

2011-08-09 Thread joegallo
(zipmap (range 2 (inc n)) (repeat true)) -- 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 patient with your first post. To

Re: Today's clojure trick question

2010-08-18 Thread joegallo
However, if you do (let [x (java.lang.Boolean/getBoolean false)] (if x :trouble :ok)) you're fine, which obviously isn't helpful in your situation. Boolean.getBoolean() is pretty evil, too. It was featured in one of Joshua Bloch's java puzzlers (which might have been borrowed from somewhere

Re: Bug in try/finally?

2010-08-11 Thread joegallo
On Aug 11, 9:02 am, Chouser chou...@gmail.com wrote: Have you sent in your CA? It's in the capable hands of the USPS. Joe -- 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