[Chicken-users] New Egg

2017-09-20 Thread David Ireland
Hi, I've put together a new egg that consists of bindings to a natural language processing library. Can I please request inclusion of its location in *egg-location*. Thanks David ___ Chicken-users mailing list Chicken-users@nongnu.org

Re: [Chicken-users] Include path when compiling an Egg.

2017-10-13 Thread David Ireland
Thanks Peter. That solved my problem. On Sat, Oct 14, 2017 at 8:11 AM, Peter Bex wrote: > On Sat, Oct 14, 2017 at 12:08:16AM +0200, Christian Kellermann wrote: > > Yeah, sorry this is pretty inconsistent. There are a couple of eggs > > that will add /usr/local as a prefix

[Chicken-users] Include path when compiling an Egg.

2017-10-12 Thread David Ireland
Hi there, This might be a trivial, but several Eggs (including mine) won't compile on BSD based OS's. It seems include flags for external libraries aren't being set when compiling the final C code. Here's an example error message: '/usr/local/bin/csc' -feature compiling-extension

[Chicken-users] New libxml2 wrapper egg.

2018-05-08 Thread David Ireland
Hi, I've put together a new egg that is a a wrapper for the libxml2 library ( http://xmlsoft.org/) The release info is at: https://gitlab.com/maxwell79/chicken-libxml2/raw/master/libxml2.release-info If deemed worthy, can I please request inclusion of its location in *egg-location*. Also,

[Chicken-users] New egg for natural language processing

2018-01-27 Thread David Ireland
Hi, I've put together a new egg that is a port of a Perl module that extracts sentences from a body of text. It's useful for natural language processing. The release info is at: https://gitlab.com/maxwell79/chicken-sentence-split/raw/master/sentence-split.release-info It installs fine with

[Chicken-users] c-string-list gives segmentation violation

2018-01-03 Thread David Ireland
Hi, I'm writing an egg for a C library. One C function returns a *char *** I thought the correct foreign type would be *c-string-list *however this results in a segmentation violation when calling the function. Here is a mock example code: *(import foreign)(define return-c-string-list

Re: [Chicken-users] Hahn documentation gives unbound variable

2018-03-11 Thread David Ireland
Hi again, Please disregard my email regarding Hahn. It was loading a old library which didn't include the particular procedure. Thanks. David On Sun, Mar 11, 2018 at 8:05 PM, David Ireland <djirelan...@gmail.com> wrote: > Hi there, > > I am using the Hahn egg for auto docume

[Chicken-users] Hahn documentation gives unbound variable

2018-03-11 Thread David Ireland
Hi there, I am using the Hahn egg for auto documentation. My code stops compiling when I try to evaluate an example of the procedure I'm adding documentation to. For example (from semantics-core.scm): (define (remove-brackets in) @("Removes any characters between and including the square

[Chicken-users] Awful ($db ...)

2018-10-07 Thread David Ireland
Hi, I'm using the database access in Awful and I'm having the troubles recreating an example in the docs. After setting up a dummy postgres database I tried this example: ($db "insert into foo (bar, baz) values (?, ?)" values: '("bar-val" "baz-val")) Which produced this error: ($db

[Chicken-users] Returning JSON in Awful

2018-09-25 Thread David Ireland
Hi, I've started using Awful 1.0 and having trouble returning a JSON string. The inverted commas are being replaced by For example, using the code below returns {a : 1 } Should this be normal behavior when returning JSON strings? Thanks. David (use awful) (enable-sxml #t) (define my-json

Re: [Chicken-users] Geiser now has Chicken 5 Support

2018-11-16 Thread David Ireland
Hi, Thanks for the update. I am however, getting "Symbol's function definition is void: equalp" on a fresh install of Chicken 5 and emacs for both Linux and OpenBSD. apropos, srfi-1 & srfi-18 are all installed. Does anyone have any suggestions? Thank you. Regards, David On Tue, Nov 13, 2018

[Chicken-users] Break points for feathers

2019-01-23 Thread David Ireland
Hi, Might be a silly question, but how do you set breakpoints when debugging in feathers? Thanks. David ___ Chicken-users mailing list Chicken-users@nongnu.org https://lists.nongnu.org/mailman/listinfo/chicken-users

[Chicken-users] Fwd: Peeking N characters in string ports

2019-01-11 Thread David Ireland
Hi there, I'm reading from a (string) port and have a need to peek 2 characters inside without actually reading off the port (read-char). I believe procedures such as unread-char seen in other Schemes would solve my problem however, this isn't available in Chicken it seems. Would anyone have

[Chicken-users] New Egg: Shen

2019-01-31 Thread David Ireland
Hi, I've put together an Egg for the Shen programming language. It may interest some people working on logic programming and natural language processing. Shen is a hosted language with an inbuilt prolog and YACC. At the moment the egg runs a little slow but it passes all the tests from the Shen