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 IMAGE_WIDTH = 128 | |
| var IMAGE_HEIGHT = 128 | |
| var NSUBSAMPLES = 2 | |
| var NAO_SAMPLES = 4 | |
| function vec(x, y, z) | |
| { | |
| this.x = x; | |
| this.y = y; | |
| this.z = z; |
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
| application/x-xpinstall xpi | |
| application/x-chrome-extension crx |
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 | |
| PREFIX=/path/to/prefix | |
| PATH=/bin:/sbin:/usr/bin:/usr/sbin:/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin | |
| # configure for iPhone device | |
| mkdir -p build_for_armv6 | |
| pushd build_for_armv6 | |
| ../configure --prefix=${PREFIX} \ | |
| --host=arm-apple-darwin \ | |
| --enable-static \ |
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
| function! s:Todo() | |
| call s:OpenBufferFromCommand('ditz todo', function('s:IssueCallback')) | |
| endfunction | |
| function! s:TodoAll() | |
| call s:OpenBufferFromCommand('ditz todo --all', function('s:IssueCallback')) | |
| endfunction | |
| function! s:Grep(args) | |
| call s:OpenBufferFromCommand(printf('ditz grep "%s"', a:args), function('s:IssueCallback')) |