Posts
Angular Templates — From Start to Source
July 11, 2019•13,346 words
Learn how templates work in Angular. From the basics to being able to read Angular source code and write your own structural directives
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...
DRY multicomparisons
July 14, 2018•991 words
Now and then, I find myself writing something like if (x == a || x == b || x == c) ... , and every time the repetition of x == annoys me. A number ...
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...