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 | |
| # Sets Terminal to case insensitive | |
| # http://blog.nickburwell.com/blog/2008/11/mac-os-x-terminal-case-insensitive-auto | |
| echo "set completion-ignore-case On" >> ~/.inputrc | |
| # Disables the creation of .DS_Store files on external volumes | |
| # http://danilo.ariadoss.com/how-to-recursively-remove-ds_store-files-on-mac-os-x/ | |
| defaults write com.apple.desktopservices DSDontWriteNetworkStores true | |
| # Make Your Keyboard Keys Repeat Properly When Held Down | |
| # http://lifehacker.com/5826055/make-your-keyboard-keys-repeat-properly-when-held-down-in-mac-os-x-lion |
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
| /** | |
| * | |
| * Javascript color conversion | |
| * http://www.webtoolkit.info/javascript-color-conversion.html | |
| * | |
| **/ | |
| function HSV(h, s, v) { | |
| if (h <= 0) { h = 0; } | |
| if (s <= 0) { s = 0; } |
NewerOlder