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
| CFAbsoluteTime startTime = CFAbsoluteTimeGetCurrent(); | |
| CVImageBufferRef cameraFrame = CMSampleBufferGetImageBuffer(sampleBuffer); | |
| int bufferWidth = CVPixelBufferGetWidth(cameraFrame); | |
| int bufferHeight = CVPixelBufferGetHeight(cameraFrame); | |
| int maxTextureSize; | |
| glGetIntegerv(GL_MAX_TEXTURE_SIZE, &maxTextureSize); | |
| bufferWidth = MIN(bufferWidth, maxTextureSize); // bad access here? for maxTextureSize |
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
| # Copies the selected tweet's URL from Twitter.app, and | |
| # opens corresponding page for Aaron Swartz's Twitter Viewer. | |
| # | |
| # Original by John Gruber: https://gist.github.com/1440914 | |
| # This version by Daniel Jalkut | |
| # | |
| # I'm hooking this up to a keyboard shortcut specifically in Twitter.app, | |
| # using my scripting utility FastScripts. | |
| # | |
| # Requires "Access for Assistive Devices" to be enabled. |
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
| # Uncrustify 0.59 | |
| # | |
| # General options | |
| # | |
| # The type of line endings | |
| newlines = auto # auto/lf/crlf/cr | |
| # The original size of tabs in the input |
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
| KEYWORDS="TODO:|FIXME:|\?\?\?:|\!\!\!:" | |
| find "${SRCROOT}" \( -name "*.h" -or -name "*.m" \) -print0 | xargs -0 egrep --with-filename --line-number --only-matching "($KEYWORDS).*\$" | perl -p -e "s/($KEYWORDS)/ warning: \$1/" |
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 | |
| echo "Stripping PPC from Growl framework..." | |
| cd "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/Contents/Frameworks/Growl.framework/Versions/Current" | |
| lipo ./Growl -verify_arch ppc | |
| if test $? -ne 1 ; then | |
| lipo ./Growl -remove ppc -output ./Growl | |
| 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
| - (void)loadDefaultSettings | |
| { | |
| NSMutableDictionary *defaults = [NSMutableDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Default-Settings" ofType:@"plist"]]; | |
| // other setup... | |
| [[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithDictionary:defaults]]; | |
| } | |
| - (void)resetDefaultSettings |
NewerOlder