Skip to content

Instantly share code, notes, and snippets.

View appins's full-sized avatar

Alex Anderson appins

View GitHub Profile
@appins
appins / .bash_profile
Last active December 19, 2019 22:21
A nice bash_profile script
#!/bin/bash
# Alex Anderson (c) 2016-2019, public domain
clear
#source ~/.bashrc
# Go to home dir
#cd ~
@appins
appins / button.coffee
Last active October 24, 2015 02:14
creates a button
a ->
newBtn = document.createElement "button"
newBtn.id = "myBtn"
newBtn.class = "Btn"
newBtn.innerHTML = "click this button"
newBtn.onclick = "alert(\"Hello\")"
document.body.appendChild newBtn