Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Artifact ID: | abe8ee645643b451c50a8955d99015dee0e36382 |
---|---|
Page Name: | Thunderchez |
Date: | 2016-09-04 20:06:11 |
Original User: | aldo |
Parent: | a93cf184f3833766817e56936a80cf98688ca13a (diff) |
Next | 54118c0e4931fe124fe39287fda8f965d954cb6b |
Content
thunderchez
Libraries for Chez Scheme productivityBe sure to put thunderchez path on your library path,
By example:
(library-directories "/path/to/thunderchez")
or set the `CHEZSCHEMELIBDIRS` environment variable:
CHEZSCHEMELIBDIRS=/path/to/thunderchez
Checkout: You'll need fossil
fossil clone https://pizzahack.eu/fossil/thunderchez thunderchez.fossil mkdir thunderchez && cd thunderchez && fossil open ../thunderchez.fossil
You can also download the latest code as a tarball: thunderbird-latest.tar.gz
To follow news subscribe to RSS feed
SRFI
Based on surfage with minor changes
(import (srfi s1 lists)) (import (srfi s13 strings)) (import (srfi s14 char-sets)) etc...
Fmt
Original site(http://synthcode.com/scheme/fmt/)(import (fmt fmt)) (import (fmt fmt-c)) (import (fmt fmt-js))
Matchable
Based on matchable egg(import (matchable))
Sqlite3
Based partially on chicken sqlite3 egg but slightly different. Needs some testing.(import (sqlite3))
USB
Library website(import (usb))
SDL2
(import (sdl2))
Cairo
Library website(import (cairo))
See test.ss for examples
Json parser
Uses lalr.ss(import (json)) (string->json "[{ \"name\" : \"my-name\" , \"age\" : 120 , \"children\" : [{ \"name\" : \"my-son\", \"age\" : 1 }, { \"name\" : \"my-son2\", \"age\" : 2 }] }]" ) => #((name . "my-name") (age . 120) (children . #(((name . "my-son") (age . 1)) ((name . "my-son2") (age . 2)))))
NanoMsg
Library website(import (nanomsg))