Skip to content

Instantly share code, notes, and snippets.

@nullicorn
nullicorn / mnist.py
Last active December 13, 2017 20:47 — forked from akesling/mnist.py
Python script for working with MNIST dataset. Minor edits to work with python3 and ascii_show function
import os
import struct
import numpy as np
"""
Source: https://gist.github.com/akesling/5358964
Loosely inspired by http://abel.ee.ucla.edu/cvxopt/_downloads/mnist.py
which is GPL licensed.
"""
@nullicorn
nullicorn / Javascript ISO country code to flag emoji conversion
Last active June 7, 2016 11:29 — forked from maephisto/Javascript ISO country code to country name conversion
ISO 3166-1 alpha-2 country code to country name conversion with a simple Javascript implementation, an array and a function.
var isoCountries = {
'AF' : '🇦🇫',
'AX' : '🇦🇽',
'AL' : '🇦🇱',
'DZ' : '🇩🇿',
'AS' : '🇦🇸',
'AD' : '🇦🇩',
'AO' : '🇦🇴',
'AI' : '🇦🇮',
'AQ' : '🇦🇶',