Skip to content

Instantly share code, notes, and snippets.

View ccgus's full-sized avatar

August "Gus" Mueller ccgus

View GitHub Profile
import Cocoa
import ImageIO
import CoreGraphics
var cs = CGColorSpaceCreateDeviceRGB();
var bitmapOptions = CGBitmapInfo.byteOrder16Little.rawValue | CGImageAlphaInfo.premultipliedLast.rawValue;
var bitmapContext = CGContext(data: nil, width: 10, height: 10, bitsPerComponent: 16, bytesPerRow: 0, space: cs, bitmapInfo: bitmapOptions);
@ccgus
ccgus / gist:6c3c163ec7ec098bf618
Created February 17, 2016 21:12
11897314953572317650212638530309702051690633222946242004403237338917370055229707226164102903365288828535456978074955773144274431536702884341981255738537436786735932007069732632019159182829615243655295106467910866143117906321697788388961347865606003991487534332114549111600886798451548665128523401497730376000091254793939662231513836224178385427439…
118973149535723176502126385303097020516906332229462420044032373389173700552297072261641029033652888285354569780749557731442744315367028843419812557385374367867359320070697326320191591828296152436552951064679108661431179063216977883889613478656060039914875343321145491116008867984515486651285234014977303760000912547939396622315138362241783854274391783813871780588948754057516822634765923557697480511372564902088485522249479139937758502601177354918009979622602685950855888360815984690023564513234659447638493985
Hi August,
This is a courtesy email regarding Bug ID# 23538812.
Engineering has requested the following information in order to further investigate this issue:
- Please attach relevant crash logs to this bug report.
--- Crash Logs Instructions ---
https://developer.apple.com/bug-reporting/ios/crash/
#import <Carbon/Carbon.h>
static OSStatus handleAppFrontSwitched(EventHandlerCallRef inHandlerCallRef, EventRef inEvent, void *inUserData);
EventHandlerRef MySkankyGlobalFrontAppSwitchedHandlerRef;
@implementation JSTWhatever
@ccgus
ccgus / gist:bc20a40d5577aef73a7d
Created November 3, 2014 23:53
Stack Trace w/ Dropbox extension
Process: Acorn [1635]
Path: /Users/USER/*/Acorn.app/Contents/MacOS/Acorn
Identifier: com.flyingmeat.Acorn4
Version: 4.5.1 (8996)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Acorn [1635]
User ID: 501
Date/Time: 2014-11-01 20:32:18.860 -0500
@ccgus
ccgus / gist:27a76290cd12f6569922
Created October 29, 2014 04:21
Dropbox extension go boom
Thread 7:: Dispatch queue: com.apple.NSXPCConnection.user.com.getdropbox.dropbox.garcon.apple-extension-service
0 libsystem_kernel.dylib 0x00007fff8b6b652e mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8b6b569f mach_msg + 55
2 com.apple.CoreServices.CarbonCore 0x00007fff844c0aa9 _scsclient_CacheableGetDataWithStringKey + 195
3 com.apple.CoreServices.CarbonCore 0x00007fff844c09dd RemoteCacheable::GetWithStringKey(unsigned int, char const*, unsigned long*, unsigned int*) + 75
4 com.apple.CoreServices.CarbonCore 0x00007fff844c08ab _CSGetNamedData + 119
5 com.apple.CoreFoundation 0x00007fff8c962ec0 _CFPropertyListCopyShared + 176
6 com.apple.CoreFoundation 0x00007fff8ca7684d CFBundleCopyLocalizedStringForLocalization + 397
7 com.apple.Foundation 0x00007fff917dd315 -[NSBundle localizedStringForKey:value:table:] + 64
8 com.apple.Foundation 0x00007fff918af07e -[NSError(NSErrorPrivate) _cocoaErrorString:fromBundle:tableName:] + 693
SInt32 TSSystemVersion(void) {
static dispatch_once_t once;
static int TSSystemVersionVal = 0x00;
dispatch_once(&once, ^{
NSDictionary *d = [NSDictionary dictionaryWithContentsOfFile:@"/System/Library/CoreServices/SystemVersion.plist"];
NSString *prodVersion = [d objectForKey:@"ProductVersion"];
@ccgus
ccgus / gist:40b91ce357a4456561ad
Created August 21, 2014 20:46
Color Wheel Thing
var filter = [JSTQuickCIFilter quickFilterWithKernel:"""
bool isOdd(int v) {
float dividend = float(v) / 2.0;
return dividend != floor(dividend);
}
vec4 hsvToRgb(vec4 hsv) {
float h = hsv.r;
$ codesign -vd Acorn.app
Executable=/Users/gus/Downloads/Archives/Acorn.app/Contents/MacOS/Acorn
Identifier=com.flyingmeat.Acorn4
Format=bundle with Mach-O thin (x86_64)
CodeDirectory v=20200 size=43565 flags=0x0(none) hashes=2171+3 location=embedded
Signature size=8518
Timestamp=Jul 14, 2014, 12:47:45 PM
Info.plist entries=35
TeamIdentifier=WZCN9HJ4VP
Sealed Resources version=2 rules=12 files=452
@ccgus
ccgus / gist:7b04e62357a3d36f5ec7
Created August 5, 2014 23:00
Apple sample code
for (CIFaceFeature *f in features)
{
NSLog(NSStringFromRect(f.bounds));
// Should be NSLog(@"%@", NSStringFromRect(f.bounds)); for security reasons
if (f.hasLeftEyePosition)
NSLog("Left eye %g %g", f.leftEyePosition.x. f.leftEyePosition.y);
// Missing @ before opening quote
// Should be f.leftEyePosition.x,