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
| <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, target-densityDpi=device-dpi"/> |
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
| body{ | |
| foo: bar; | |
| } |
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
| numeralFlat=["I","IIb","II","IIIb","III","IV","Vb","V","VIb","VI","VIIb","VII"] | |
| numeralSharp=["I","I#","II","II#","III","IV","IV#","V","V#","VI","VI#","VII"] | |
| flat=["Ab","A","Bb","B","C","Db","D","Eb","E","F","Gb","G"] | |
| sharp=["G#","A","A#","B","C","C#","D","D#","E","F","F#","G"] | |
| bluesScaleMinor = (root, display = "flat") -> | |
| if display is "flat" or "sharp" | |
| rootIndex = flat.indexOf(root) | |
| else | |
| rootIndex = 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
| #!/bin/sh | |
| input="$1" | |
| # %%.* strips off everything after the first . in this string | |
| filename="${input%%.*}" | |
| textutil -convert html "$input" -output "$filename".html | |
| curl -d html="$filename".html http://wordoff.org/api/clean | |
| pandoc -f html -t markdown "$filename".html -o "$filename".markdown |
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/local/Cellar/todo-txt/2.9/bin/todo.sh -d /Users/ryan/todo.cfg ls |
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 ruby | |
| Kernel.exec("cd #{File.dirname(__FILE__)} && middleman build") |
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
| :s/<[^>]*>/\r&\r/g | |
| :g/^$/d |
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
| middleman init my_new_project --rack | |
| rvm --create --ruby-version use 1.9.3 | |
| rvm env . -- --env > .powenv |
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
| 0 1 2 3 4 5 6 7 8 9 10 11 | |
| ------------------------------------------------------------ | |
| I IIb II IIIb III IV Vb V VIb VI VIIb VII | |
| ------------------------------------------------------------ | |
| Ab A Bb B C Db D Eb E F Gb G | |
| A Bb B C Db D Eb E F Gb G Ab | |
| Bb B C Db D Eb E F Gb G Ab A | |
| B C Db D Eb E F Gb G Ab A Bb | |
| C Db D Eb E F Gb G Ab A Bb B | |
| Db D Eb E F Gb G Ab A Bb B C |
OlderNewer