Skip to content

Instantly share code, notes, and snippets.

View itod's full-sized avatar

Todd Ditchendorf itod

View GitHub Profile
@itod
itod / extract_iphoto_originals.applescript
Last active April 8, 2022 14:55
Recursively extract Original photos from an iPhoto library
set _srcPath to ((get path to desktop) & "Backup:Pictures" as string)
set _destPath to ((get path to desktop) & "Out" as string)
on processDir(_parent)
tell application "Finder"
set _parentName to (get name of _parent as string)
set _kids to (get every item of _parent whose name is not ".")
if "Thumbs" is equal to _parentName then
return
else if "Originals" is equal to _parentName then
@itod
itod / Update_CFBundleVersion.sh
Last active December 10, 2015 03:48
Update CFBundleVersion
if [ $CONFIGURATION = "Debug" ]; then
exit 0;
fi
TARGET = "$PROJECT_DIR/res/conf/XXX-Info.plist"
echo $TARGET
if [ ! -f "$TARGET" ]; then
echo "missing file $TARGET"
exit 1;
fi
@itod
itod / Update_CFBundleVersion.sh
Last active December 12, 2015 00:58
Update CFBundleVersion
if [ $CONFIGURATION = "Debug" ]; then
exit 0;
fi
NEW_VERSION=`svnversion -n ./ | /usr/bin/perl -pe 's/(\d+:)?(\d+)[MS]*$/$2/eg'`
echo $NEW_VERSION;
/usr/libexec/PListBuddy -c "Set CFBundleVersion $NEW_VERSION" "$SOURCE_ROOT/Info.plist"
@itod
itod / debug_logging.h
Created February 13, 2013 19:23
Debug logging
#ifdef NDEBUG
#define TDLog(fmt, ...) while (0) {}
#else
#define TDLog(fmt, ...) do { NSLog(fmt, ##__VA_ARGS__); } while (0)
#endif
@itod
itod / gmail_userscript.js
Created February 14, 2013 07:07
Fluid Gmail Userscript
window.fluid.dockBadge = '';
setTimeout(updateDockBadge, 1000);
setTimeout(updateDockBadge, 3000);
setInterval(updateDockBadge, 5000);
function updateDockBadge() {
var newBadge = '';
// loop thru anchor tags
var anchorEls = document.getElementsByTagName('a');
@itod
itod / expr.g
Last active December 15, 2015 05:19
Simple ParseKit Expression Language grammar
@symbols = '!=' '<=' '>=';
@start = expr;
expr = orExpr;
orExpr = andExpr orTerm*;
orTerm = 'or' andExpr;
andExpr = relExpr andTerm*;
andTerm = 'and' relExpr;
@itod
itod / gist:5229175
Created March 23, 2013 20:08
Use ParseKit's `PKTokenizer` class to tokenize HLA-style hex numbers like `$00FF_FFFF` and binary numbers like `%0001_0101`
NSString *s = @"$00FF_FFFF %0001_0101";
PKTokenizer *t = [PKTokenizer tokenizerWithString:s];
// add support for HLA-style hex numbers like $00FF_FFFF
[t.numberState addPrefix:@"$" forRadix:16];
[t.numberState addGroupingSeparator:'_' forRadix:16];
[t setTokenizerState:t.numberState from:'$' to:'$'];
// add support for HLA-style binary numbers like %0001_0101
[t.numberState addPrefix:@"%" forRadix:2];
@itod
itod / coregraphics_scaffold.py
Last active December 18, 2015 23:49
A little Python CoreGraphics scaffolding.
#!/usr/bin/python
from Quartz.CoreGraphics import *
from Quartz.ImageIO import *
def write_image_to_file(ctx, path):
img = CGBitmapContextCreateImage(ctx)
url = CFURLCreateWithFileSystemPath(None, path, kCFURLPOSIXPathStyle, True)
dest = CGImageDestinationCreateWithURL(url, "public.png", 1, None);
CGImageDestinationAddImage(dest, img, None);
@itod
itod / twitter_compose_undo_bug.md
Last active December 25, 2015 17:09
twitter.com "Compose" undo bug report

###SUMMARY: Twitter.com "compose" text area undo granularity is seriously broken (far too coarse-grained).

###CONTEXT: OS X 10.8.5

Any Browser of:

  • Chrome Version 31.0.1650.8 beta
  • Safari Version 6.0.5 (8536.30.1)
  • Firefox 24