Nostalgia meets wisdom. This article explores the freedom perhaps lost due to accumulated experience while diving into one my many forgotten projects; a static site generator powered by a Makefile.
Browse a complete list of articles published on this site, ordered by publication date where new articles are at the top. You may also browse by tag for a list of all available topics.
List of articles
Once upon a time this blog was powered by make The psychological cost of having an RSS feed Implementing an RSS feed for your blog is an easy task for any developer, but have you ever thought about the dangers in doing so? This article discusses such dangers, and why this blog (for now) does not have one.
A compile-time meta-container in C++ In standard compliant C++ we managed to hack our way to a counter usable in constant-expressions, let's take it a step further; a compile-time meta-container with modifiable state.
A constant-expression friendly counter in C++ We recently managed to hack modifiable state into constant-expressions; in this article we will implement a compile-time counter usable in the not-so-very-constant constant-expressions of C++.
Non-constant constant-expressions in C++ C++ is a complex language, and constant-expressions are not as constant as they might appear. Can one introduce writable state by abusing the ISO Standard?