Skip to content

Instantly share code, notes, and snippets.

View crazzle's full-sized avatar

Mark Keinhörster crazzle

View GitHub Profile
@crazzle
crazzle / tmux-cheatsheet.markdown
Created December 17, 2018 20:03 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname
@crazzle
crazzle / mnist.py
Created November 15, 2017 09:23 — forked from akesling/mnist.py
import os
import struct
import numpy as np
"""
Loosely inspired by http://abel.ee.ucla.edu/cvxopt/_downloads/mnist.py
which is GPL licensed.
"""
def read(dataset = "training", path = "."):