Explore >> Select a destination


You are here

hackingcpp.com
| | github.com
15.2 parsecs away

Travel
| | A cross-platform, linkable library implementation of Git that you can use in your application. - libgit2/libgit2
| | www.cppstories.com
12.5 parsecs away

Travel
| | In C++11, we got a handy way to initialize various containers. Rather than using push_back() or insert() several times, you can leverage a single constructor by taking an initializer list. For example, with a vector of strings, you can write: std::vector vec { "abc", "xyz", "***" }; We can also write expressions like: for (auto x : {1, 2, 3}) cout << x << ", "; The above code samples use std::initializer_list and (some compiler support) to hold the values and pass them around. Let's understa......
| | www.nayuki.io
7.4 parsecs away

Travel
| | [AI summary] The provided text is a detailed comparison of various QR Code generator libraries and their implementations in different programming languages. It covers multiple projects such as qrcodegen (Java, TypeScript, Python, C++, C, Rust), qr.js (JavaScript), QR-Logo (JavaScript), qrcode (Python), PyQRCode (Python), qrcode (Rust), qr (Go), Zint (C), and libqrencode (C). The text highlights the features, line counts, comments, and code organization of each library. It also mentions the author's own library, which is noted for its compact implementation, lack of extensive constant tables, and immutability of objects. The text includes information about the versions reviewed, dates, and the purpose of each library, such as encoding, decoding, and image gen...
| | www.cppstories.com
18.9 parsecs away

Travel
| The C++ Standard Library: A Tutorial and Reference (2nd Edition) by Nicolai M. Josuttis We are still waiting for some more books about new C++ standard. Fortunately for us, some authors managed to write books even before C++11 is well "domesticated". One of such examples is the book mentioned in the title of this post.