Bloom Filter Types

In the implementation I am working with, a bloom filter allows us to determine if a particular item has been selected from a set. Both the set and subset can be large. While speed is a benefit, the real benefit…

Read MoreBloom Filter Types

Git Tricks

Here are some tricks that I use. They’re here because I need a place to quickly refer to them. Updating a fork with upstream changes: Reference: git fetch upstream git checkout master git merge upstream/master Interactive rebasing: git rebase…

Read MoreGit Tricks