Re: [Chicken-users] Is there any documentation about SXpath available?

2012-11-02 Thread Felix
From: Peter Bex peter@xs4all.nl Subject: Re: [Chicken-users] Is there any documentation about SXpath available? Date: Tue, 30 Oct 2012 14:20:55 +0100 On Tue, Oct 30, 2012 at 01:51:01PM +0100, Felix wrote: Hi, again! I tried the link mario gave me but what I am looking for is some

[Chicken-users] BUG: posix#string-time

2012-11-02 Thread Andy Bennett
Hi, string-time from the posix egg doesn't seem to be able to parse timezones with an offset greater than 12 hours from UTC: - #;63 (define x (cut string-time %a, %d %b %Y %H:%M:%S %z)) #;64 (x Fri, 02 Nov 2012 04:12:23 -1300) #f #;65 (x Fri, 02 Nov 2012 04:12:23 -1200) #(23 12 4 2 10 112 5

Re: [Chicken-users] Is there any documentation about SXpath available?

2012-11-02 Thread Andy Bennett
Hi, I'm trying to find some information about SXPath query expression syntax. Kirill Lisovsky's pages don't seem to be available anymore, so can someone give me a hint where to look for some documentation? Can you get his pages from the Internet Archive? If so, perhaps we should make a copy.

Re: [Chicken-users] #!rest in type declarations

2012-11-02 Thread Felix
Consider this example: (: apply1 (forall (a b) (procedure ((procedure (#!rest a) b) (list-of a)) b))) (define (apply1 f args) (apply f args)) (cond-expand (compiling (compiler-typecase (list 'a 2 3) ((list-of (or symbol fixnum)) #t (cond-expand (compiling

[Chicken-users] string-join not in utf8-srfi-13

2012-11-02 Thread .alyn.post.
I'm trying to use string-join in my egg git-hooks-mediawiki[1]. This egg imports utf8-srfi-13, and I am getting an error message about this routine: Warning: reference to possibly unbound identifier `string-join' in: Warning:parse-error Warning:suggesting: `(import srfi-13)' I

Re: [Chicken-users] Chicken and Cocos2Dx on Google Play!

2012-11-02 Thread Jason Ripley
If you have an Android phone, it'd appreciate if you took the time to check it out. I am particularly interested if the app won't start at all, and perhaps what framerate you're getting (very bottom-left). I know there is a memory leak somewhere (thanks Alaric!), but otherwise I hope things

Re: [Chicken-users] Chicken and Cocos2Dx on Google Play!

2012-11-02 Thread Kristian Lein-Mathisen
Hi Jason, and thanks for testing this. I'm really glad it seems to be working! I'm happy to see others trying to go in a similar direction. Developing with a REPL on the real hardware is so incredebly rewarding! I've put out the code out on here https://github.com/Adellica/cocoscheme for you

Re: [Chicken-users] string-join not in utf8-srfi-13

2012-11-02 Thread Alex Shinn
Added. On Fri, Nov 2, 2012 at 11:52 PM, .alyn.post. alyn.p...@lodockikumazvati.org wrote: I'm trying to use string-join in my egg git-hooks-mediawiki[1]. This egg imports utf8-srfi-13, and I am getting an error message about this routine: Warning: reference to possibly unbound identifier