Skip to content

Instantly share code, notes, and snippets.

@noisemaster
noisemaster / index.html
Created February 14, 2018 04:28
Flexbox columned interface
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700');
body {
font-family: 'Roboto';
@noisemaster
noisemaster / keybase.md
Created October 5, 2017 01:09
keybase.md

Keybase proof

I hereby claim:

  • I am noisemaster on github.
  • I am peridot (https://keybase.io/peridot) on keybase.
  • I have a public key whose fingerprint is 788D A7A5 5A52 98A4 3A80 61D8 A0C2 B216 2D5E 8833

To claim this, I am signing this object:

Installing the latest possible version of Erlang on Windows Subsystem for Linux on the Anniversary Update

wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && sudo dpkg -i erlang-solutions_1.0_all.deb # Adds repo to ubuntu
sudo apt-get update
sudo apt-get install esl-erlang=1:18.3 
# installs a version of erlang that plays nice with this verision of WSL
# you might have to remove some packages to install this version, so feel free to uninstall those packages
# you can see these errors in the below code block
sudo rm /usr/bin/erl # This prevents a symlink error that happens when you install this version of erlang
sudo ln -s /usr/lib/erlang/bin/erl /usr/bin/erl # this resymlinks the correct erlang file
git init
git add -A
git commit -m "message"
git push origin master
git pull origin master
git clone https://github.com/.../...