0
votes
1answer
60 views
Emacs, Zen-Coding mode, and Putty.
I use emacs via Putty and since Putty doesn't send certain key combinations to the remote console I generally need to re-bind them to other key combinations.
After installing the amazing Zen-Coding …
3
votes
10answers
212 views
In Which Cases Is Better To Use Clojure?
I develop in Lisp and in Scheme, but I was reading about Clojure and then I want to know, in which cases is better to use it than using Lisp or Scheme? Thanks
0
votes
2answers
81 views
Transitioning from .NET to Lisp. Has anybody here done it?
I use ASP.NET during my day job, but I'm always looking to expand my programming knowledge. I've tinkered with everything from Ruby to 6502 assembly language, and now I want to learn Lisp. I guess I …
4
votes
2answers
93 views
Lisp Flavored Erlang - Messaging primitives
I've read through all the documentation, and most of the source of LFE. All the presentations emphasize basic lisp in traditional lisp roles - General Problem Solving, Hello world and syntax …
1
vote
2answers
98 views
A simple Lisp question
I now have a problem on using "reduce" to implement my own version of copy-list.
This is what I have done:
(defun my-copy-list (lst)
(reduce #'(lambda (x y)
(cons x y))
…
1
vote
3answers
56 views
CLISP: Attach x recursively to list
I'm trying to add, say, x to every element of a list.
For example:
(queue 3 '(1 2 3))
would give
(3 1) (3 2) (3 3)
The code below apparently does not do what I want.
Any hints please?
(defun …
1
vote
2answers
114 views
Clojure: Unable to resolve symbol. I’m stumped.
When I paste this code into a REPL, it works fine:
(use 'clojure.contrib.seq-utils)
(defn- random-letter [] (char (+ (rand-int 26) 97)))
(defn- random-digit [] (rand-int 10))
(defn- random-password
…
0
votes
2answers
70 views
To get my lisp code more robust
Dear all, I now have a preliminary macro
(defmacro key-if(test &key then else)
`(cond (,test
,then)
(t,else)))
and it is now correctly working as
> (key-if (> 3 1) …
4
votes
6answers
104 views
Collection of solved Lisp problems
Could somebody direct me to an online and free available collection/s or resources of solved and commented (not necessarily) Lisp programming problems, especially related to binary trees and …
0
votes
2answers
92 views
Lisp code explanation
I'm porting some code from lisp, but I got stuck at this part (apparently that's for mit-scheme)
(define (end-of-sentence? word)
(and (or (char-exist-last? word '#\.)
(char-exist-last? …
0
votes
1answer
70 views
Scheme - how do I modify an individual element in a list?
If I have a list of 0's, how would I modify, for example, the 16th 0 in the list?
1
vote
2answers
39 views
lambda-gtk negative pointer
I was trying to write my own put-pixel on (Gdk) pixbuf in Lisp. When I finally realized how I can operate on C pointers in CL, new obstacle came along - (gdk:pixbuf-get-pixels pb) returns me negative …
8
votes
2answers
89 views
Is there a common lisp package naming convention?
I have created some of my own user packages and have run into a name clash.
In Java, the naming convention is to use your domain name in the package name:
e.g. import com.example.somepackage;.
Are …
1
vote
3answers
58 views
How to make a new list to point somewhere else, Lisp
Hello. The title is self-explanatory. How can I build a new list X from another list Y (same structure), but the resulting list pointing somewhere else in memory area, practically, another object? I …
4
votes
4answers
215 views
Calculating the depth of a binary tree in LISP recursively
I have the following binary tree
A
/ \
B C
/ \
D E
represented as a list in Lisp (A 2 B 0 C 2 D 0 E 0) where the letters are node names and the numbers are the number of child nodes (0 …
