Re: js->clj not working

2013-05-12 Thread Konrad Scorciapino
It can only handle Object objects. Check out http://stackoverflow.com/questions/16044897/why-cant-i-call-seq-functions-in-a-sequence-generated-by-js-clj 2013/5/11 nchurch > I'm trying to get a map out of a Goog events object (and also out of > Domina events objects). Calling js->clj on either

Re: Lisp In Summer Projects

2013-05-09 Thread Konrad Scorciapino
Disappointing, isn't it? They've explained to me further: Basicly our small project is similar to Google's Code-In, which is where > the requirement originated. We don't have Google's cadre of lawyers and > cannot risk inviting trouble to our friends and colleagues at the ALU. They > coordinate th

Re: Why is this so difficult?

2013-02-14 Thread Konrad Scorciapino
You might, BJG145, also profit by taking a look at clojurewiki.org - I'm listing there all resources I can find. Good luck! 2013/2/15 Jules > vemv, here is a file describing my Clojure install experience: > https://www.dropbox.com/s/ln2ek5f5n47qnl1/clojureinstall.odp > > How should I continue?

Clojure Wiki

2013-02-08 Thread Konrad Scorciapino
Hello, fellow clojurians! For the next couple of months (or until I get a new functional job), I'll be working on honing my clojure skills, starting with getting a perspective of what lies *out there*: events, podcasts, guides, etc. I've created a freely-editable wiki , ju

Re: Debugging in Clojure

2010-01-22 Thread Konrad Scorciapino
(comment) and #_ are pretty useful to disable forms when debugging: (+ 3 #_4) -> 3 (comment println "hi") -> nil Excerpts from David Nolen's message of Fri Jan 22 02:38:29 -0300 2010: > I find that injecting print statements is painful if you're not using > something like paredit (Emacs). With pa

peepcode screencasts

2010-01-06 Thread Konrad Scorciapino
Hey guys, I think it is worth convincing peepcode to develop more Clojure screencasts, like this awesome one[1] from Phil Hagelberg. If you have some time, please show them your enthusiasm by voting up here: http://suggestions.peepcode.com/pages/15-general/suggestions/349533-more-lisp-clojure-sc

For Vimclojure users

2009-09-08 Thread Konrad Scorciapino
Hello, there! Do you rebind vimclojure's default commands? I'm currently remapping the most used ones, using [F9 F10 F11 F12] as [\et \p \ef \sr], and I wonder if there is a more productive key scheme. Cheers! -- Et Forum delendum est! --~--~-~--~~~---~--~~ You

Re: Vimclojure and Namespaces

2009-08-17 Thread Konrad Scorciapino
Hi Meikel, It now works. The problem was that the file was not accessible via the classpath. Thanks for the help! On Mon, Aug 17, 2009 at 3:04 AM, Meikel Brandmeyer wrote: > > Hi, > > On Aug 17, 6:08 am, Konrad Scorciapino wrote: > > > I'm new with Clojure, and

Re: Vimclojure and Namespaces

2009-08-17 Thread Konrad Scorciapino
Hi Meikel, It now works. The problem was that the file was not accessible via the classpath. Thanks for the help! On Mon, Aug 17, 2009 at 3:04 AM, Meikel Brandmeyer wrote: > > Hi, > > On Aug 17, 6:08 am, Konrad Scorciapino wrote: > > > I'm new with Clojure, and

Vimclojure and Namespaces

2009-08-16 Thread Konrad Scorciapino
Hi there! I'm new with Clojure, and I'm having a problem with Vimclojure and Namespaces. I'm following thistutorial, currently trying to evaluate the code below. If I evaluate the whole file, it works, but not if I do so line-by-line via \et. What