Skip to content

Instantly share code, notes, and snippets.

View jlamarche's full-sized avatar

Jeff LaMarche jlamarche

View GitHub Profile
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG/MacGPG2 v2.0.20 (Darwin)
mQINBFIr39cBEADdFYA9sGl3jLvB1HIeIV7Eh4gv9O9l6KMfVsywJtIM/ySxYzAG
9Fv5Qs/Zi6gZSY9KcrzRLig/v/v69z3Ymfp4w+WpMRwnqVExaVR7TFSYqHWm2m3t
jrQtjym1OlppufGcps3UHn27lucpbBAumqcavV0W1TsiDoBfwbpsIqbYCDywOqFT
/jlqracbrQeA7byi/taGEpeTlaDnFcPWMsmbemnF10ZHDT3UR/n0fkh3Rmq/jP7U
g0lunmjjeaVjEhtn6bEuRdmbt+U/0Z3Jk1Hnw5kE9maFxj0LXOjZLnlLs0vwescf
z1lqJH82I6XrqM6YoLEahuYZXyEzhU49mecYUzqWJ67iPGOWYz0YB66v+KV7L6gn
tr1RqDfe5Se80ItIRYhcKn/Ja2A4BuS8LTb842DIPr1aaCnt5+FUAasTJgXkni+q
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wmismatched-method-attributes"
- (IBAction)selectAll:(id)sender
{
// do stuff
}
#pragma clang diagnostic pop
bl_info = {
"name": "Shape Key Extractor",
"author": "Jeff LaMarche",
"version": (1, 0),
"blender": (2, 6, 2),
"location": "View3D > Properties > Extract Shape Keys",
"description": "Export Shape Keys to Standalone Objects",
"warning": "",
"wiki_url": "",
"tracker_url": "",
@jlamarche
jlamarche / gist:4635497
Created January 25, 2013 15:56
crash log
Incident Identifier: 7DBF35AC-8ED5-40F2-9099-CD528AAC5CE7
CrashReporter Key: 532b8630842a92b6d7b2a263d019b453f81055dc
Hardware Model: iPad1,1
OS Version: iPhone OS 5.1.1 (9B206)
Kernel Version: Darwin Kernel Version 11.0.0: Sun Apr 8 21:51:26 PDT 2012; root:xnu-1878.11.10~1/RELEASE_ARM_S5L8930X
Date: 2013-01-25 10:45:31 -0500
Time since snapshot: 71 ms
Free pages: 594
Active pages: 1530
error: unable to create target: 'No available targets are compatible with this triple, see -version for the available targets.'
clang: error: clang frontend command failed due to signal 11 (use -v to see invocation)
Command /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/clang failed with exit code 245
8/17/10 10:29:46 AM com.apple.launchd.peruser.501[276] (com.apple.iPhoneSimulator:com.apple.managedconfiguration.profiled) Bug: launchd_core_logic.c:4598 (24108):2
8/17/10 10:29:46 AM com.apple.launchd.peruser.501[276] (com.apple.iPhoneSimulator:com.apple.managedconfiguration.profiled) Path monitoring failed on "/Users/jeff/Library/Application Support/iPhone Simulator/4.0.2/Library/ConfigurationProfiles/profiledRunning": No such file or directory
8/17/10 10:29:46 AM com.apple.launchd.peruser.501[276] (com.apple.iPhoneSimulator:com.apple.managedconfiguration.mdmd) Bug: launchd_core_logic.c:4598 (24108):2
8/17/10 10:29:46 AM com.apple.launchd.peruser.501[276] (com.apple.iPhoneSimulator:com.apple.managedconfiguration.mdmd) Path monitoring failed on "/Users/jeff/Library/Application Support/iPhone Simulator/4.0.2/Library/ConfigurationProfiles/MDMOutstandingActivities.plist": No such file or directory
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller {
// In the simplest, most efficient, case, reload the table view.
if (!self.tableView.editing)
[self.tableView reloadData];
}