From 74edaf5a4bf9439ac0b0284ab5b5dfcec69f3231 Mon Sep 17 00:00:00 2001 From: myd7349 Date: Tue, 18 Nov 2014 13:40:10 +0800 Subject: [PATCH 1/4] Add 3 online compilers found on isocpp The following three online compilers I found on https://isocpp.org/get-started is added: Rextester Rise4Fun Wandbox --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index a057549..81de6b7 100644 --- a/README.md +++ b/README.md @@ -469,6 +469,9 @@ A curated list of awesome C/C++ frameworks, libraries, resources, and shiny thin * [Compiler Explorer](http://gcc.godbolt.org/) - An interactive compiler with assembly output available. * [CompileOnline](http://www.compileonline.com/compile_cpp11_online.php) - Compile and Execute C++ online on Linux. * [Ideone](http://ideone.com/) - An online compiler and debugging tool which allows you to compile source code and execute it online in more than 60 programming languages. +* [Rextester](http://rextester.com/runcode) - Online compiler which provides several compilers(Clang, GCC, MSVC) and several editors. +* [Rise4Fun](http://webcompiler.cloudapp.net/) - Online Visual C++ compiler. +* [Wandbox](http://melpon.org/wandbox/) - An online Clang/GCC compiler with Boost available. ## Debugger *List of C/C++ debuggers* From 1e943ad4cad86020b911fc7aa10dead1f9ad1621 Mon Sep 17 00:00:00 2001 From: myd7349 Date: Tue, 18 Nov 2014 13:54:21 +0800 Subject: [PATCH 2/4] Add MongoDB C++ Driver C++ Driver for MongoDB. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 81de6b7..ac66707 100644 --- a/README.md +++ b/README.md @@ -182,6 +182,7 @@ A curated list of awesome C/C++ frameworks, libraries, resources, and shiny thin * [Hiredis](https://github.com/redis/hiredis) - A minimalistic C client library for the Redis database. [BSD] * [LevelDB](https://github.com/google/leveldb) - A fast key-value storage library. [BSD] * [LMDB](http://symas.com/mdb/) - Very fast embedded key/value store with full ACID semantics. [OpenLDAP] +* [MongoDB C++ Driver](https://github.com/mongodb/mongo-cxx-driver) - C++ driver for MongoDB. * [MySQL++](http://www.tangentsoft.net/mysql++/) - A C++ wrapper for MySQL's C API. [LGPL] * [RocksDB](https://github.com/facebook/rocksdb) - Embedded key-value store for fast storage from facebook. [BSD] * [SQLite](http://www.sqlite.org/) - A completely embedded, full-featured relational database in a few 100k that you can include right into your project. [PublicDomain] From ec075eb43c64ba0ae202c67df61de4b5ae1e377b Mon Sep 17 00:00:00 2001 From: myd7349 Date: Tue, 18 Nov 2014 13:58:09 +0800 Subject: [PATCH 3/4] Add license for MongoDB C++ Driver --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ac66707..97b93e3 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ A curated list of awesome C/C++ frameworks, libraries, resources, and shiny thin * [Hiredis](https://github.com/redis/hiredis) - A minimalistic C client library for the Redis database. [BSD] * [LevelDB](https://github.com/google/leveldb) - A fast key-value storage library. [BSD] * [LMDB](http://symas.com/mdb/) - Very fast embedded key/value store with full ACID semantics. [OpenLDAP] -* [MongoDB C++ Driver](https://github.com/mongodb/mongo-cxx-driver) - C++ driver for MongoDB. +* [MongoDB C++ Driver](https://github.com/mongodb/mongo-cxx-driver) - C++ driver for MongoDB. [Apache version 2.0] * [MySQL++](http://www.tangentsoft.net/mysql++/) - A C++ wrapper for MySQL's C API. [LGPL] * [RocksDB](https://github.com/facebook/rocksdb) - Embedded key-value store for fast storage from facebook. [BSD] * [SQLite](http://www.sqlite.org/) - A completely embedded, full-featured relational database in a few 100k that you can include right into your project. [PublicDomain] From a42a552fece253b3d75e0623974d878868e9bef6 Mon Sep 17 00:00:00 2001 From: myd7349 Date: Tue, 18 Nov 2014 14:15:54 +0800 Subject: [PATCH 4/4] Add MongoDB C Driver and Libbson --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 97b93e3..d6f62de 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,9 @@ A curated list of awesome C/C++ frameworks, libraries, resources, and shiny thin * [Hiredis](https://github.com/redis/hiredis) - A minimalistic C client library for the Redis database. [BSD] * [LevelDB](https://github.com/google/leveldb) - A fast key-value storage library. [BSD] * [LMDB](http://symas.com/mdb/) - Very fast embedded key/value store with full ACID semantics. [OpenLDAP] +* [MongoDB C Driver](https://github.com/mongodb/mongo-c-driver) - MongoDB client library for C. [Apache version 2.0] * [MongoDB C++ Driver](https://github.com/mongodb/mongo-cxx-driver) - C++ driver for MongoDB. [Apache version 2.0] +* [MongoDB Libbson](https://github.com/mongodb/libbson) - A BSON utility library. [Apache version 2.0] * [MySQL++](http://www.tangentsoft.net/mysql++/) - A C++ wrapper for MySQL's C API. [LGPL] * [RocksDB](https://github.com/facebook/rocksdb) - Embedded key-value store for fast storage from facebook. [BSD] * [SQLite](http://www.sqlite.org/) - A completely embedded, full-featured relational database in a few 100k that you can include right into your project. [PublicDomain]