In Clojure, is there a more elegant way of finding the fully qualified name of a function (known to have meta info) than
Has anyone integrated with Google Latitude (or any Goog开发者_开发知识库le API, for that matter) with Clojure and can point me to a working example? I\'m trying authenticate to the Google Latitude API
I tried to migrate a project from clojure 1.1 to 1.2 because of the new protocols introduced in 1.2. But when I try to :use clojure-contrib.duck-streams I get a warning about \'spit\' which already ex
According to you, which language do you 开发者_C百科think would be the best for implementing monads (Python/Ruby/LISP)?,also can anyone tell me some possible uses of monads (please give examples),like
what is the parameter to ns ? the documentation says something, but it\'s not clear (to me, at least)
Several REPLs (lik开发者_开发百科e ruby\'s irb) have some very useful features, such as using the arrow keys to \"rewind\" and \"forward\" the command history; but when I try to do the same with Cloju
Ninth bullet point in Paul Graham\'s What Made Lisp Different says, 9. The whole language always available.
I have a defrecord called a bag.It behaves like a list of item to count.This is sometimes called a frequency or a census.I want to be able to do the following
I\'m lo开发者_运维技巧oking for the ability to have the REPL print the current definition of a function.Is there any way to do this?
In Clojure, given a class name as a string, I need to create a new instance of the class.In other words, how would I implement new-instance-from-class-name in