├── .gitignore ├── Makefile ├── README.org ├── emacs-module-helpers.c ├── emacs-module-helpers.h ├── emacs-module.h ├── examples.org ├── gsl-constants.c ├── gsl-ffi ├── ffi.el └── gsl-ffi.org ├── gsl-integration.c ├── gsl-linalg.c ├── gsl-roots.c ├── mod-list-vec.c ├── mod-types.c ├── mongodb ├── bson.el ├── bson.org ├── connect ├── ex.c ├── ffi.el └── mongo-ffi.org ├── template ├── .gitignore └── template.org ├── tests.el └── zeromq ├── ffi.el ├── hwclient ├── hwclient.c ├── hwserver ├── hwserver.c ├── makefile ├── mod-zmq.c ├── test.el └── zeromq.org /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | .DS_Store 4 | mongo-c-driver-1.6.3 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/README.org -------------------------------------------------------------------------------- /emacs-module-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/emacs-module-helpers.c -------------------------------------------------------------------------------- /emacs-module-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/emacs-module-helpers.h -------------------------------------------------------------------------------- /emacs-module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/emacs-module.h -------------------------------------------------------------------------------- /examples.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/examples.org -------------------------------------------------------------------------------- /gsl-constants.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/gsl-constants.c -------------------------------------------------------------------------------- /gsl-ffi/ffi.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/gsl-ffi/ffi.el -------------------------------------------------------------------------------- /gsl-ffi/gsl-ffi.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/gsl-ffi/gsl-ffi.org -------------------------------------------------------------------------------- /gsl-integration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/gsl-integration.c -------------------------------------------------------------------------------- /gsl-linalg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/gsl-linalg.c -------------------------------------------------------------------------------- /gsl-roots.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/gsl-roots.c -------------------------------------------------------------------------------- /mod-list-vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/mod-list-vec.c -------------------------------------------------------------------------------- /mod-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/mod-types.c -------------------------------------------------------------------------------- /mongodb/bson.el: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mongodb/bson.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/mongodb/bson.org -------------------------------------------------------------------------------- /mongodb/connect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/mongodb/connect -------------------------------------------------------------------------------- /mongodb/ex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/mongodb/ex.c -------------------------------------------------------------------------------- /mongodb/ffi.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/mongodb/ffi.el -------------------------------------------------------------------------------- /mongodb/mongo-ffi.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/mongodb/mongo-ffi.org -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/template.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/template/template.org -------------------------------------------------------------------------------- /tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/tests.el -------------------------------------------------------------------------------- /zeromq/ffi.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/zeromq/ffi.el -------------------------------------------------------------------------------- /zeromq/hwclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/zeromq/hwclient -------------------------------------------------------------------------------- /zeromq/hwclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/zeromq/hwclient.c -------------------------------------------------------------------------------- /zeromq/hwserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/zeromq/hwserver -------------------------------------------------------------------------------- /zeromq/hwserver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/zeromq/hwserver.c -------------------------------------------------------------------------------- /zeromq/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/zeromq/makefile -------------------------------------------------------------------------------- /zeromq/mod-zmq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/zeromq/mod-zmq.c -------------------------------------------------------------------------------- /zeromq/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/zeromq/test.el -------------------------------------------------------------------------------- /zeromq/zeromq.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkitchin/emacs-modules/HEAD/zeromq/zeromq.org --------------------------------------------------------------------------------