This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#polyphonic midi input program with sustained notes | |
#experimental program by Robin Newman, November 2017 | |
#pitchbend can be applied to notes at any time while they are sounding | |
use_debug false | |
set :synth,:tb303 #initial value | |
set :pb,0 #pitchbend initial value | |
kill_list=[] #list to contain notes to be killed | |
on_notes=[] #list of notes currently playing | |
ns=[] #array to store note playing references |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>FabLabs in the World</title> | |
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
<script src='https://api.mapbox.com/mapbox.js/v2.2.3/mapbox.js'></script> | |
<link href='https://api.mapbox.com/mapbox.js/v2.2.3/mapbox.css' rel='stylesheet' /> | |
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> | |
<style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Modified commands | |
alias diff='colordiff' # requires colordiff package | |
alias grep='grep --color=auto' | |
alias more='less' | |
alias df='df -h' | |
alias du='du -c -h' | |
alias mkdir='mkdir -p -v' | |
alias nano='nano -w' | |
alias ping='ping -c 5' |