Skip to content

Instantly share code, notes, and snippets.

View gavinHuang's full-sized avatar

Gavin Huang gavinHuang

View GitHub Profile
@darekkay
darekkay / putty-eclectide.reg
Last active February 9, 2022 09:10
Eclectide color theme for the Putty SSH client
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\SimonTatham\PuTTY\Sessions\SESSION_NAME]
; Default Foreground
"Colour0"="217,216,216"
; Default Bold Foreground
"Colour1"="217,216,216"
; Default Background
"Colour2"="28,28,28"
@fukuroder
fukuroder / mnist_save_png.py
Last active April 6, 2022 09:20
Save MNIST data as PNG.
import os
import cv2
import numpy as np
train_image = 'train-images-idx3-ubyte'
train_label = 'train-labels-idx1-ubyte'
test_image = 't10k-images-idx3-ubyte'
test_label = 't10k-labels-idx1-ubyte'
for f in [train_image, train_label, test_image, test_label]: