Skip to content

Instantly share code, notes, and snippets.

@kaikuehne
kaikuehne / next_version.py
Last active April 14, 2018 21:05
This script accepts a package name and version and prints the next package version that is newer than the one provided
#!/usr/bin/env python3
"""
Note: This will only work with python 3. You also need to install "packaging":
pip install packaging
"""
from typing import Iterable, Optional, Union
import json
@kaikuehne
kaikuehne / openface.md
Last active February 22, 2020 17:50
Installation and using openface to create and use your own classifier

Installation

Installation instructions are basically notes that I took while installing openface on MacOSX El Capitan.

System packages

brew install bash coreutils curl findutils opencv
brew install python --framework --universal --with-brewed-openssl
brew install boost-python --universal