Disabling Disqus comments

This blog is powered by Jekyll, one of the most popular static site generators. Jekyll solved most of my issues with the blog: I edit markdown files in a code editor, commit them to GitHub and voila I see updates as web pages. No more WordPress plugins, weird CRM, half-baked... [Read More]
Tags: #ads #disqus

Using shared_ptr for reloadable config

After my post std::shared_ptr is an anti-pattern I was thinking about an example of justified usage of std::shared_ptr. I have mentioned that it can be used to implement caching, and in this post, I am going to use it for implementing reloadable config. [Read More]