SFINAE for member detection

Here’s a C++98 compatible way to use SFINAE to check for a specific member variable on a type. [Read More]
Tags: c++, c++98, c++03, sfinae, template

Faster checkouts with git-lfs

With older versions of git-lfs and git, checkouts can be very slow when new lfs assets need to be fetched. That’s because git checkout only runs the smudge filter sequentially. In comparison, git lfs pull is able to download multiple assets in parallel, which can be much faster. [Read More]
Tags: git, git-lfs, checkout