Another year, another crossword. With some of the clues/answers vaguely themed. You can solve it online or offline with the PDF. Answers after the con.
Related Posts
A problem with C++ lambdas?
C++ lambdas are wonderful for all sorts of reasons (especially with their C++14-and-beyond power). But I’ve run into a problem that I can’t think of a good way around yet. If you’re up to date with C++, of course you know that rvalue references and move semantics are a major…
C++ Guru Question – followup
(following on from C++ Guru Question) There are a few reasons why the code before didn’t work: mainly a) C++ template argument deduction works one-way with a list of candidates, it’s not H-M type inference. b) A C++ lambda is a thing with some internal type, not a std::function (although…
The Global API Injection Pattern
I’ve mentioned this in a few conference talks now, and periodically people ask me about it, but until now I guess I haven’t written it up. It starts with a common, dare I say ubiquitous, problem: how to test code that uses some “global” API. Could be for example file…