Tagged Questions

41
votes
13answers
9k views

Lisp Web Frameworks?

What are the popular (ok, popular is relative) web frameworks for the various flavours of LISP?
9
votes
1answer
126 views

Scheme: why this result when redefining a predefined operator?

I received an unexpected result when redefining the + operator in a scheme program using guile. I should point out that this occurred while experimenting to try to understand the language; there's no ...
6
votes
2answers
86 views

When to use lambda definition with a “bare” formal parameter?

I'm learning Guile Scheme at the moment, and in the documentation I suddenly ran into the following construction: ((lambda args (display args)) 42) => (42) This threw me for a loop; up until ...
6
votes
1answer
386 views

LilyPond: Extracting pitch names from music

I use LilyPond to create practice scores and etudes. I've figured out how to allow note entry in Moveable Do solfege notation and have a template (see below) that supports displaying the solfege ...
5
votes
3answers
330 views

Guile Scheme and CGI?

I recently discovered that CGI scripts can be written in pretty much any language that can print to stdout. I've written a small guile cgi script that works on my local apache install, but not on my ...
4
votes
2answers
160 views

Saving program image in guile

I've heard that most lisps support saving image of running program into file. Does guile support this?
3
votes
2answers
118 views

controlling evaluation in scheme (guile)

This seems like a simple question; perhaps it is so simple that it is difficult to find a search that will find the answer. In Scheme (specifically, the Guile implementation if that makes any ...
3
votes
1answer
384 views

Is it possible to embed Guile in a C++ app on iOS or Android?

Guile looks somewhat straightforward to embed into a C/C++ project, but how does it fare on iOS or Android? Does it require 3rd party libraries that are unavailable for those platforms? How is it as ...
3
votes
2answers
1k views

How to parse out base file name using Script-Fu

Using Gimp 2.6.6 for MAC OS X (under X11) as downloaded from gimp.org. I'm trying to automate a boring manual process with Script-Fu. I needed to parse the image file name to save off various layers ...
2
votes
3answers
243 views

Guile scheme - quoted period?

What does the following Guile scheme code do? (eq? y '.) (cons x '.) The code is not valid in MzScheme, is there a portable equivalent across scheme implementations? I am trying to port this code ...
1
vote
1answer
58 views

In guile scheme, how can I iterate a list of key-value pairs (i.e. a Hash map)?

I'm playing around with guile to try and get familiar with pure functional programming concepts. Before I can do anything useful with any language, I need to understand some basic data structures and ...
1
vote
1answer
104 views

what's wrong with this define-syntax macro in scheme?

I'm working though SICP and wanted to try out some of the examples in guile. I'm trying the stream examples and wanted an implementation for cons-stream, which I got from this StackOverflow question. ...
1
vote
2answers
193 views

How to inspect/export/serialize a (guile) Scheme environment

I'd like to export or replicate a scheme environment in another guile process. The algorithm I'm imagining would do something like this to serialize: (map (lambda (var val) (display (quasiquote ...
1
vote
1answer
309 views

Issues embedding Guile in C++

I'm a Scheme programmer, and I'm attempting to use Guile to call Scheme functions from C++ code within a Bison specification. The documentation concerning Guile and C is great; however, I haven't ...
1
vote
1answer
215 views

How to create cairo surface in guile

I have this code guile> (cairo-pdf-surface-create "foo.pdf" 100.0 100.0) ; and get this error standard input:29:1: In procedure cairo-pdf-surface-create in expression (cairo-pdf-surface-create ...
1
vote
3answers
455 views

Problem with circular definition in Scheme

I am currently working through SICP using Guile as my primary language for the exercises. I have found a strange behavior while implementing the exercises in chapter 3.5. I have reproduced this ...