/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

eyakubovich.github.io
| | arne-mertz.de
4.5 parsecs away

Travel
| | In this post I will write a bit about each operator and how a straight forward implementation might look if the operator is meant to work similar to built in operators.
| | www.cppstories.com
4.9 parsecs away

Travel
| | When you see an article about new C++ features, most of the time you'll have a description of major elements. Looking at C++17, there are a lot of posts (including articles from this blog) about structured bindings, filesystem, parallel algorithms, if constexpr, std::optional, std::variant... and other prominent C++17 additions. But how about some smaller parts?
| | entangledlogs.com
3.9 parsecs away

Travel
| | Generic Programming: Generating part of programs Introduction Generic Programming: Programming with generic parameters to avoid unnecessary code duplication and encourage code reuse. Polymorphism is also another technique to solve code reuse Puts implicit constraints on the generic types that are to be fulfilled by concrete types. template T adder(T LHS, T RHS) { return LHS + RHS; } struct Foo { inv Val = 0; } Foo f = adder(Foo{}, Foo{}): In this code snippet, we assume that Foo meets the requirement tha...
| | macoy.me
25.8 parsecs away

Travel
| [AI summary] The text provides a detailed guide on setting up hardware debugging for Raspberry Pi 4 and 5 using JTAG and SWD interfaces, respectively. It covers building OpenOCD, configuring target-specific scripts, and using GDB for debugging kernel code. The Pi 5 section highlights the shift to SWD and includes setup instructions for the debug probe kit.