/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

hackingcpp.com
| | ashvardanian.com
111.1 parsecs away

Travel
| | Experienced devs may want to skip the intro or jump immediately to the conclusions. The backbone of many foundational software systems - from compilers and interpreters to math libraries, operating systems, and database management systems - is often implemented in C and C++. These systems frequently offer Software Development Kits (SDKs) for high-level languages like Python, JavaScript, GoLang, C#, Java, and Rust, enabling broader accessibility. But there is a catch.
| | herbsutter.com
100.0 parsecs away

Travel
| | Since the year-end mini-update, progress has continued on cppfront. (If you don't know what this personal project is, please see theCppCon 2022 talk on YouTube.) This update covers Acknowledgments, and highlights of what's new in the compiler and language since last time, including: simple, mathematically safe, and efficient chained comparisons named break and continue "simple...
| | ilya-sher.org
100.0 parsecs away

Travel
| | I am considering making a JSON parsing and generating command line tool. Started with looking around a bit. Below is a list of existing JSON command line tools.Numbers are [GitHub stars] at the time of adding the entry. jq[11126] - filter, extract, modify and output JSON or text using DSLjid [4426] - "You can drill...
| | wittchen.io
121.6 parsecs away

Travel
| Introduction I have my own tiny Python project called spotify-cli-linux, which is (surprise!) command line interface for Spotify desktop app on Linux. Python is not my primary programming language and I work more with Java. Nevertheless, I find this language enjoyable and useful in many cases, so I try to learn something new about it from time to time. In the beginning, I've provided instructions how to install my Python script in the system via curl and wget, which is fine, but it's not recommended and ...