Explore >> Select a destination


You are here

ranfdev.com
| | blog.packagecloud.io
18.5 parsecs away

Travel
| | This article explains about RPM and how you can use it. Also, you can find the comparisons between RPM and Packagecloud.
| | a3nm.net
18.8 parsecs away

Travel
| |
| | www.integralist.co.uk
25.4 parsecs away

Travel
| | Introduction I'm an engineer with a new laptop, which requires setting up with various development tools and configuration. This post is my attempt to capture and document my process for getting a new dev environment set-up. I used to try and automate a lot of this with bash scripts, but realised over time that things go out of date quite quickly (e.g. OS configurations can change substantially, as well as my preferred ways of working).
| | www.foonathan.net
81.4 parsecs away

Travel
| Let me share a useful insight with you: constexpr is a platform. Just like you write code that targets Windows or a microcontroller, you write code that targets compile-time execution. In both cases you restrict yourself to the subset of C++ that works on your target platform, use conditional compilation if your code needs to be portable, and execute it on the desired target platform. You can thus view constexpr as another platform you can target; it just so happens to be run by your compiler. This insig...