Skip to content

Instantly share code, notes, and snippets.

View ealgase's full-sized avatar

Ellie Algase ealgase

  • Ann Arbor, Michigan
View GitHub Profile
@ealgase
ealgase / loading.sh
Created January 18, 2016 00:34
Loading bash
#!/bin/bash
while true; do for X in 'Ooooo' 'oOooo' 'ooOoo' 'oooOo' 'ooooO'; do echo -en "\b\b\b\b\b$X"; sleep 0.1; done; done
@ealgase
ealgase / simpleloadjs
Last active August 29, 2015 14:18
Run external JS
function load(url){(function (){var s = document.createElement('script');s.setAttribute('src', url);document.body.appendChild(s);})();};