Skip to content

Instantly share code, notes, and snippets.

View dhollman's full-sized avatar

Daisy S. Hollman dhollman

View GitHub Profile
@kirkshoop
kirkshoop / concepts.h
Last active August 2, 2018 00:59
minimal concepts for P0443 and P1054
#include <cstddef>
#include <type_traits>
#include <exception>
#include <utility>
#include <memory>
#include <array>
namespace mc {
@dzhou
dzhou / decorators.py
Created May 8, 2012 03:19
useful python decorator utils
#!/usr/bin/env python
#
import os
import time
import thread
import warnings
import signal
import traceback
from threading import Timer