Explore >> Select a destination


You are here

mpark.github.io
| | sdowney.org
7.5 parsecs away

Travel
| | A Possible Technique constexpr bool g(int lhs, int rhs) { auto& op = partial_eq; return op.ne(lhs, rhs); } Compiler Explorer with Supporting Code A trait is defined as a template var...
| | thasso.xyz
6.7 parsecs away

Travel
| | My personal blog about things I find interesting. Hit me up!
| | belaycpp.com
5.7 parsecs away

Travel
| | [AI summary] A blog post discussing the design and implementation of a lightweight, customizable error handler in C++ that uses variadic templates and exceptions to manage error messages effectively.
| | nathanchance.dev
42.6 parsecs away

Travel
| As a Linux kernel developer, I will often need to build and boot new kernels to hunt down issues or test new functionality for regressions. While it is possible to manually install these kernels on machines, it is easiest to use the distribution's package manager, as the kernel does not need to be built on the machine it is being installed on. With .deb and .rpm-based systems, it is easy to build a kernel package within the kernel source itself, using the bindeb-pkg and binrpm-pkg targets respectively. However, for Arch Linux, my distribution of choice, that is not so simple. Furthermore, when doing certain types of development, such as bisecting an issue, it is more convenient to do all the building in an actual source tree, rather than one that is managed ...