GithubHelp home page GithubHelp logo

paines / thunderchez Goto Github PK

View Code? Open in Web Editor NEW

This project forked from vidjuheffex/thunderchez

0.0 1.0 0.0 1.54 MB

libraries for chez scheme productivity

Home Page: https://pizzahack.eu/fossil/thunderchez

Scheme 27.53% Common Lisp 71.31% CSS 0.01% HTML 1.10% C 0.05%

thunderchez's Introduction

thunderchez

Libraries for Chez Scheme productivity

Be 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

SRFI

Based on surfage with minor changes

(import (srfi s1 lists))
(import (srfi s13 strings))
(import (srfi s14 char-sets))
etc...

Fmt

Original site

(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

Library website

(import (sdl2))	

Cairo

Library website

(import (cairo))

See test.ss for examples

Json parser

Uses lalr

(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))

Some tests from nanomsg-examples

thunderchez's People

Contributors

ovenpasta avatar arnautdaniel avatar web-flow avatar yanyingwang avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.