Skip to content

Instantly share code, notes, and snippets.

@sp3c73r2038
sp3c73r2038 / b64.js
Last active September 23, 2020 06:13
pure javascript implemented base64 encoding/decoding library.
;
(
function () {
'use strict'
var root = this
var b64
if (typeof exports !== 'undefined') {
@molivier
molivier / gist:271bba5d67de1583a8e3
Last active June 28, 2024 22:38
Set $GOPATH on Mac OSX : bash_profile
# Edit ~/.bash_profile
export GOPATH=/Users/$USER/go
export PATH=$GOPATH/bin:$PATH
# Reload profile : source ~/.bash_profile