- Animals as Leaders if you haven't heard of this band you've been under a rock
- Behold.. The Arctopus / Dysrythmia with Colin Marston who plays a 12 string Warr in both bands
- Blotted Science with Ron Jarzombek (Spastic Ink), Alex Webster and Charlie Z
- Canvas Solaris
- Chimp Spanner
- CHON
- Cloudkicker / BM Sharp same guy, different projects, he has a lot of material, check into it.
- Evan Brewer's solo stuff is awesome
- Exivious with members of Textures and Cynic
- Jeff Hughell (ex-Brain Drill, now playing with Six Feet Under)
This file contains hidden or 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
var globals = { | |
naturals: ['C', 'D', 'E', 'F', 'G', 'A', 'B'], | |
degrees: ['R', 'm2', 'M2', 'm3', 'M3', 'P4', ['A4', 'D5'], 'P5', 'm6', 'M6', 'm7', 'M7'], | |
modeNames: ['Ionian', 'Dorian', 'Phrygian', 'Lydian', 'Mixolydian', 'Aeolian', 'Locrian'], | |
accidentals: {'-1': '♭', 0: '', 1: '♯'}, | |
scales: { | |
'Major': [2, 2, 1, 2, 2, 2, 1], | |
'Minor': [2, 1, 2, 2, 1, 2, 2], | |
'Harmonic Minor': [2, 1, 2, 2, 1, 3, 1], | |
'Diminished Arpeggio': [3, 3, 3, 3] |
This file contains hidden or 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
#!/usr/bin/env node | |
var fs = require('fs'), | |
path = require('path'), | |
http = require('http'), | |
exec = require('child_process').exec; | |
var globals = { | |
apiKey: '' | |
}; |
This file contains hidden or 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
#!/usr/bin/env bash | |
if [[ -z $1 ]]; then | |
echo "Needs an argument for file name." | |
exit | |
fi | |
RES=$(xdpyinfo | awk '/dimensions/{print $2}') | |
FPS="60" |
This file contains hidden or 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
#!/usr/bin/env node | |
const Promise = require('bluebird') | |
const http = require('http') | |
const url = require('url') | |
const path = require('path') | |
const fs = require('fs') | |
const port = process.argv[2] || 6969 | |
const readDir = Promise.promisify(fs.readdir) |
This file contains hidden or 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
#!/usr/bin/env node | |
'use strict'; | |
var prompt = require('prompt'); | |
var argv = require('minimist')(process.argv.slice(2), { | |
alias: { | |
h: 'help', | |
v: 'version', | |
s: 'string', | |
} |
This file contains hidden or 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
#!/usr/bin/env bash | |
declare player='' | |
declare -a supported=( 'mpc' ) | |
for x in "${supported[@]}"; do | |
if command -v "$x" &> /dev/null; then | |
player="$x" | |
break | |
fi |
This file contains hidden or 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
#!/usr/bin/env node | |
var fs = require('fs'); | |
var mkdirp = function(path) { | |
// TODO: handle non-UNIX paths | |
// TODO: optional trailing / | |
// TODO: as an array | |
var dirs = []; | |
if(arguments.length > 1) { | |
dirs = Array.prototype.slice.call(arguments, 0); |
This file contains hidden or 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
#!/usr/bin/env node | |
'use strict'; | |
var fs = require('fs'), | |
moment = require('moment'), | |
underscore = require('underscore'), | |
child_process = require('child_process'), | |
spawn = child_process.spawn, | |
exec = child_process.exec; |
This file contains hidden or 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
theme = {} | |
themes_dir = os.getenv("HOME") .. "/.config/awesome/themes/darkness" | |
theme.font = "Tewi 11" | |
theme.fg_normal = "#ffffff" | |
theme.fg_focus = "#596875" | |
theme.fg_urgent = "#6e464b" | |
theme.bg_normal = "#292929" | |
theme.bg_focus = "#252525" |