When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:
main {
max-width: 38rem;
padding: 2rem;
margin: auto;
}
PYBIND11_INCLUDE ?= # -Ipath/to/pybind/include if not in other paths | |
PREFIX ?= $(shell python3-config --prefix) | |
INCLUDES = ${PYBIND11_INCLUDE} -I${PREFIX}/include/python3.6m -I${PREFIX}/include | |
CFLAGS = -std=c++11 ${INCLUDES} | |
LDFLAGS = -arch x86_64 -L${PREFIX}/lib -lpython3.6m -ldl | |
foobar.so: foobar.cpp |