Posts
Uttering Hello — The Site's First Post
June 29, 2019•1,029 words
An introduction to Unicorn Utterances, including a mission statement and general roadmap
When performance guarantees hurts performance - std::visit
December 22, 2018•1,096 words
The performance of came up in a discussion, and my first thought was that from reading generated assembly code, it's a jump table, so it should be...
How to speak at a conference
November 29, 2018•1,140 words
A former colleague of mine recently described the steps to speak at a conference as: Write a proposal and (optionally) a talk outline. Get accepted...
Angular Route Guards For Authorization In A Web And Mobile Application
July 13, 2018•1,818 words
Learn how to use Angular route guards for authenticating & authorizing access to certain child and parent routes.
Performance of flat maps
August 7, 2017•1,967 words
A flat map is a data structure that maps a key to a value, and that stores the data in a compact flat memory structure to get better cache hit rate...
Using constexpr quick-sort in C++17
June 3, 2017•737 words
So I've written about compile time quick-sort twice before ( 2011 and 2015 ,) but now with C++17's upcoming support, I thought I'd try it again. Ge...