Skip to content

Instantly share code, notes, and snippets.

@mrminus
mrminus / pyWeather2
Created January 15, 2018 05:49
Python 3 example to input location (state, city) and have it return WU data and create a google map
import urllib.request
import json
import gmplot
from datetime import datetime
import webbrowser
# set some necessary auth keys
WUAPIKEY = "yourkey"
# Get user input on where they want weather from
@mrminus
mrminus / hasher-array.go
Last active January 22, 2021 20:33
GOLANG Array Hash
// Author: Jason Harper, Uber Technologies, Inc.
// Date: September 11, 2020
// Version: 1
// Notes: A prototype SHA256 hashing script, using a shared secret key
// Notes: reading data from a single list of SSN or DL, or whatever, and a two column CSV
// Notes: secret key data is just for testing
// Notes: this program helped me understand some basic GO concepts
package main