Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | README.md updated a little bit |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
23060469234be0810e67f4644bbdf195 |
User & Date: | ovenpasta@pizzahack.eu 2016-08-17 08:49:39 |
Context
2016-08-17
| ||
10:43 | fixed small bug in nn-recv check-in: 1e3d1ba295 user: ovenpasta@pizzahack.eu tags: trunk | |
08:49 | README.md updated a little bit check-in: 2306046923 user: ovenpasta@pizzahack.eu tags: trunk | |
08:19 | README.md updated a little bit check-in: 84ab8c09ed user: ovenpasta@pizzahack.eu tags: trunk | |
Changes
Changes to README.md.
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
(library-directories "/path/to/thunderchez") or set the CHEZSCHEMELIBDIRS environment variable: CHEZSCHEMELIBDIRS=/path/to/thunderchez ## Fmt (import (fmt fmt)) ## Matchable (import (matchable)) ## Sqlite3 _based on chicken sqlite3 egg_ (import (sqlite3)) ## USB Bindings for libusb-1.0 (import (usb)) ## SDL2 (import (sdl2)) ## Cairo (import (cairo)) ## Json parser (import (json)) ## NanoMsg (import (nanomsg)) |
> > > > > > > > > > > > > | > > < < > | > > > | > > > | > > > > > > > > > | | > > > > > > > | |
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
(library-directories "/path/to/thunderchez") or set the CHEZSCHEMELIBDIRS environment variable: CHEZSCHEMELIBDIRS=/path/to/thunderchez ## SRFI Based on [surfage](https://github.com/dharmatech/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](http://wiki.call-cc.org/eggref/4/matchable) (import (matchable)) ## Sqlite3 Based partially on chicken [sqlite3 egg](http://wiki.call-cc.org/eggref/4/sqlite3) but slightly different. Needs some testing. (import (sqlite3)) ## USB [Library website](http://libusb.info) (import (usb)) ## SDL2 [Library website](http://www.libsdl.org) (import (sdl2)) ## Cairo [Library website](http://www.cairographics.org) (import (cairo)) See [test.ss](./cairo/test.ss) for examples ## Json parser Uses [lalr](./lalr/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](http://www.nanomsg.org) (import (nanomsg)) ### Some tests from [nanomsg-examples](https://github.com/dysinger/nanomsg-examples) * [pipeline](./nanomsg/pipeline) * [reqrep](./nanomsg/reqrep) * [pair](./nanomsg/pair) * [pubsub](./nanomsg/pubsub) * [bus](./nanomsg/bus) * [survey](./nanomsg/survey) |