From 328408f6ba91a356aaec3d9a257ffc2a2380f797 Mon Sep 17 00:00:00 2001 From: questor/inter Date: Wed, 13 Aug 2014 13:50:06 +0200 Subject: [PATCH 1/3] sbe added --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index d96be44..2083459 100644 --- a/README.md +++ b/README.md @@ -287,6 +287,7 @@ A curated list of awesome C/C++ frameworks, libraries, resources, and shiny thin * [FlatBuffers](https://github.com/google/flatbuffers) - A Memory efficient serialization library. * [MessagePack](https://github.com/msgpack/msgpack-c) - Efficient binary serialization format "like JSON" for C/C++. - [website](http://msgpack.org/) * [protobuf](http://code.google.com/p/protobuf/) - Protocol Buffers - Google's data interchange format. +* [SimpleBinaryEncoding](https://github.com/real-logic/simple-binary-encoding) - encoding and decoding application messages in binary format for low-latency applications. [Apache2] ## Web Application Framework From 30e6abeb9b0b42e2a52b6d5e9b3bfd900d60c863 Mon Sep 17 00:00:00 2001 From: questor/inter Date: Wed, 13 Aug 2014 13:57:47 +0200 Subject: [PATCH 2/3] added licences to serialization --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2083459..ea1ae6b 100644 --- a/README.md +++ b/README.md @@ -282,11 +282,11 @@ A curated list of awesome C/C++ frameworks, libraries, resources, and shiny thin ## Serialization -* [Cap'n Proto](http://kentonv.github.io/capnproto/) - Fast data interchange format and capability-based RPC system. -* [cereal](https://github.com/USCiLab/cereal) - A C++11 library for serialization. -* [FlatBuffers](https://github.com/google/flatbuffers) - A Memory efficient serialization library. -* [MessagePack](https://github.com/msgpack/msgpack-c) - Efficient binary serialization format "like JSON" for C/C++. - [website](http://msgpack.org/) -* [protobuf](http://code.google.com/p/protobuf/) - Protocol Buffers - Google's data interchange format. +* [Cap'n Proto](http://kentonv.github.io/capnproto/) - Fast data interchange format and capability-based RPC system. [MIT] +* [cereal](https://github.com/USCiLab/cereal) - A C++11 library for serialization. [BSD] +* [FlatBuffers](https://github.com/google/flatbuffers) - A Memory efficient serialization library. [Apache2] +* [MessagePack](https://github.com/msgpack/msgpack-c) - Efficient binary serialization format "like JSON" for C/C++. - [website](http://msgpack.org/) [Apache2] +* [protobuf](http://code.google.com/p/protobuf/) - Protocol Buffers - Google's data interchange format. [BSD] * [SimpleBinaryEncoding](https://github.com/real-logic/simple-binary-encoding) - encoding and decoding application messages in binary format for low-latency applications. [Apache2] ## Web Application Framework From d1b576d1288cebc965760112251be0810557238e Mon Sep 17 00:00:00 2001 From: questor/inter Date: Wed, 13 Aug 2014 14:15:48 +0200 Subject: [PATCH 3/3] web app framework licenses added --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index ea1ae6b..e53b08f 100644 --- a/README.md +++ b/README.md @@ -291,11 +291,11 @@ A curated list of awesome C/C++ frameworks, libraries, resources, and shiny thin ## Web Application Framework -* [CppCMS](http://cppcms.com/) - A Free High Performance Web Development Framework (not a CMS). -* [Crow](https://github.com/ipkn/crow) - Crow is C++ micro web framework (inspired by Python Flask). -* [Kore](https://kore.io/) - ultra fast and flexible web server / framework for web applications developed in C. -* [libOnion](http://www.coralbits.com/libonion/) - lightweight library to help you create webservers in C programming language. -* [Wt](http://www.webtoolkit.eu/wt) - A C++ library for developing web applications. +* [CppCMS](http://cppcms.com/) - A Free High Performance Web Development Framework (not a CMS). [LGPLv3] +* [Crow](https://github.com/ipkn/crow) - Crow is C++ micro web framework (inspired by Python Flask). [BSD] +* [Kore](https://kore.io/) - ultra fast and flexible web server / framework for web applications developed in C. [ISC] +* [libOnion](http://www.coralbits.com/libonion/) - lightweight library to help you create webservers in C programming language. [LGPLv3] +* [Wt](http://www.webtoolkit.eu/wt) - A C++ library for developing web applications. [GPL/Commercial] ## XML *XML is crap. Really. There are no excuses. XML is nasty to parse for humans, and it's a disaster to parse even for computers. There's just no reason for that horrible crap to exist. - Linus Torvalds*