31
votes
25answers
3k views
Lisp in the real world
I have experimented with Lisp (actually Scheme) and found it to be a very beautiful language that I am interested in learning more about. However, it appears that Lisp is never used serious projects, …
22
votes
20answers
2k views
What’s the best way to learn LISP?
Hi, I have been programming in Python, PHP, Java and C for a couple or years now, and I just finished reading Hackers and Painters, so I would love to give LISP a try!
I understand its totally …
21
votes
15answers
2k views
Suitable functional language for scientific/statistical computing?
I use mostly R and C for statistics-related tasks. Recently
I have been dealing with large datasets, typically 1e7-1e8
observations, and 100 features. They seem too big for R too
handle, and the …
21
votes
12answers
2k views
Lisp Web Frameworks?
What are the popular (ok, popular is relative) web frameworks for the various flavours of LISP?
19
votes
14answers
1k views
What’s a good beginning text on functional programming?
I like to study languages outside my comfort zone, but I've had a hard time finding a place to start for functional languages. I heard a lot of good things about Structure and Interpretations of …
16
votes
15answers
2k views
What is the best functional language for scientific programming
I am coming from C/C++, Python background and I am looking to learn a functional language that (Hopefully) can do
Serious Matrix Computation
expressive
real world modelling
database integration
…
16
votes
6answers
2k views
What is the closest thing to Slime for Scheme?
I do most of my development in Common Lisp, but there are some moments when I want to switch to Scheme (while reading Lisp in Small Pieces, when I want to play with continuations, or when I want to do …
13
votes
2answers
322 views
What Lisp is better at parsing?
I'd like to implement a Lisp interpreter in a Lisp dialect mainly as a learning exercise. The one thing I'm thrown off by is just how many choices there are in this area. Primarily, I'm a bit more …
13
votes
16answers
2k views
How do you type lisp efficiently, with so many parentheses?
I try to keep my fingers on home row as much as possible.
Typing all the parentheses makes me move away from there a fair bit.
I use Emacs; the parentheses themselves are no issue, I'm comfortable …
13
votes
16answers
1k views
Which language would you use for the self-study of SICP?
I've caught the bug to learn functional programming for real. So my
next self-study project is to work through the Structure and
Interpretation of Computer Programs. Unfortunately, I've never
learned …
13
votes
11answers
2k views
Common Lisp or Scheme?
Which would you recommend learning, CL or Scheme? What are the pros and cons of each, compared to eachother?
12
votes
10answers
655 views
How I Can do web programming with Lisp or Scheme?
I usually write web apps in PHP, Ruby or Perl. I am starting the study of Scheme and I want to try some web project with this language. But I can't find what is the best environment for this.
I am …
12
votes
17answers
2k views
Which Lisp should I learn?
To piggyback on http://stackoverflow.com/questions/59428/learning-lisp-scheme-interpreter,
O gods of StackOverflow:
Which Lisp (dialect) should I learn, and why?
The fragmentation between CL and …
12
votes
11answers
906 views
Looking for examples of “real” uses of continuations
I'm trying to grasp the concept of continuations and I found several small teaching examples like this one from the Wikipedia article:
(define the-continuation #f)
(define (test)
(let ((i 0))
…
12
votes
9answers
718 views
How to implement continuations?
I'm working on a Scheme interpreter written in C. Currently it uses the C runtime stack as its own stack, which is presenting a minor problem with implementing continuations. My current solution is …
