Explore >> Select a destination


You are here

lorendb.dev
| | fodor.org
111.1 parsecs away

Travel
| | Intro We'll have look below into how to build a minimal "Hello World" GUI app in C using GTK4. The example was built on MacOS Big Sur using CMake in CLion, but should work on any other operating systems as long as you have CMake.
| | www.nayuki.io
166.7 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...
| | rgoswami.me
111.1 parsecs away

Travel
| | Design guidelines for thin Python wrappers to C++ libraries Background I recently ended up writing and rewriting a series of libraries to essentially get them to a point where I could write bindings to them. In doing so, some thoughts on design have evolved into this post. False starts Originally, I had the library and bindings in one repository, which was easier to hack on, and had fewer moving parts.
| | samthursfield.wordpress.com
188.9 parsecs away

Travel
| As I said in my last post about CMake, targets are everything in CMake. Unfortunately, not everything is a target though! If you've tried do anything non-trivial in CMake using the add_custom_command() command, you may have got stuck in this horrible swamp of confusion. If you want to generate some kind of file at build...