4
votes
Lisp in the real world
There are plenty of companies, projects, and products that use Lisp in a variety of roles — I've done work for several of them.
There are two relevant points:
you may never …
0
votes
How do I setup REPL on vim?
I don't have a mapping for sr in my .vimrc, but it works for me.
Have you checked that your Nailgun server is running, and that you have turned on Gorilla?
E.g.,
let …
0
votes
Small problem accessing a map inside a list in Clojure
I would write your code like this:
(def entry {:name tempName :num tempNum})
(def tempList (list entry))
(println (:name (first tempList)))
Note that first …
1
vote
Deploying Compojure/Sinatra Applications.
I've been doing this kind of thing with various standalone servers (e.g., AllegroServe) for years. I've found the best approach to be:
Run each server on a different, non-privileged p …
