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
| resourceful/resource.js:184:13) | |
| error: at Function.Resource.runAfterHooks (/root/nodejitsu/node_modules/resourceful/lib/resourceful/resource.js:93:12) | |
| error: at Resource._request (/root/nodejitsu/node_modules/resourceful/lib/resourceful/resource.js:179:14) | |
| error: at Couchdb.view (/root/nodejitsu/node_modules/resourceful/lib/resourceful/engines/couchdb/index.js:143:5) | |
| error: at Request._onResponse [as _callback] (/root/nodejitsu/node_modules/resourceful/node_modules/cradle/lib/cradle.js:233:9) | |
| error: at Request.init.self.callback (/root/nodejitsu/node_modules/request/main.js:120:22) | |
| error: at Request.EventEmitter.emit (events.js:99:17) | |
| error: at Request.<anonymous> (/root/nodejitsu/node_modules/request/main.js:555:16) | |
| error: at Request.EventEmitter.emit (events.js:96:17) | |
| help: For help with this error contact Nodejitsu Support: |
This file has been truncated, but you can view the full file.
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
| ctionary autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug | |
| Jun 20 06:37:12 EArbuckles-iPod UIKitApplication:com.designshed.alienblue[0x9adc][315] <Notice>: objc[315]: Object 0xd774ee0 of class __NSCFString autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug | |
| Jun 20 06:37:12 EArbuckles-iPod UIKitApplication:com.designshed.alienblue[0x9adc][315] <Notice>: objc[315]: Object 0xd7747a0 of class __NSCFDictionary autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug | |
| Jun 20 06:37:12 EArbuckles-iPod UIKitApplication:com.designshed.alienblue[0x9adc][315] <Notice>: objc[315]: Object 0xd774e60 of class __NSCFDictionary autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug |
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
| Process: Xcode [5113] | |
| Path: /Applications/Xcode.app/Contents/MacOS/Xcode | |
| Identifier: com.apple.dt.Xcode | |
| Version: 5.0.1 (3335.23) | |
| Build Info: IDEApplication-3335023000000000~2 | |
| App Item ID: 497799835 | |
| App External ID: 84192765 | |
| Code Type: X86-64 (Native) | |
| Parent Process: launchd [415] | |
| Responsible: Xcode [5113] |
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
| #import <UIKit/UIKit.h> | |
| #include <IOKit/hid/IOHIDEventSystem.h> | |
| #include <IOKit/hid/IOHIDEventSystemClient.h> | |
| #include "CDTContextHostProvider.h" | |
| #include <stdio.h> | |
| #include <dlfcn.h> | |
| UIView *contextView; | |
| int IOHIDEventSystemClientSetMatching(IOHIDEventSystemClientRef client, CFDictionaryRef match); |
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
| #include <IOKit/hid/IOHIDLib.h> | |
| #include <IOKit/hid/IOHIDEventSystem.h> | |
| int main(int argc, char **argv, char **envp) { | |
| CFMutableDictionaryRef dict = IOServiceMatching("AppleMultitouchN1SPI"); | |
| CFDictionaryAddValue(dict, CFSTR(kIOHIDManufacturerKey), CFSTR("Apple Inc.")); | |
| io_iterator_t iter; | |
| mach_port_t port = kIOMasterPortDefault; |
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
| // | |
| // main.m | |
| // permission-changer | |
| // | |
| // Created by Ethan Arbuckle on 3/1/23. | |
| // | |
| #import <Foundation/Foundation.h> | |
| #include <dlfcn.h> | |
| #include <objc/runtime.h> |
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
| #import <CoreGraphics/CoreGraphics.h> | |
| #import <Foundation/Foundation.h> | |
| #import <objc/runtime.h> | |
| #import <objc/message.h> | |
| #import <dlfcn.h> | |
| __attribute__((constructor)) static void init(void) { | |
| Method bundleIdentifierMethod = class_getInstanceMethod(objc_getClass("NSBundle"), sel_registerName("bundleIdentifier")); | |
| IMP newImp = imp_implementationWithBlock(^(id self) { |
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
| #import <objc/runtime.h> | |
| #import <mach/mach.h> | |
| #import <malloc/malloc.h> | |
| #import <dlfcn.h> | |
| typedef struct { | |
| Class targetClass; | |
| void (^block)(id object, BOOL isSubclass, BOOL *stop); | |
| dispatch_semaphore_t semaphore; | |
| BOOL shouldStop; |
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
| // | |
| // main.m | |
| // | |
| // Created by ethanarbuckle | |
| // | |
| #import <Foundation/Foundation.h> | |
| #import <objc/runtime.h> | |
| #import <mach/mach.h> | |
| #import <execinfo.h> |
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
| // | |
| // main.m | |
| // breakpoints | |
| // | |
| // Created by @objc on 5/01/23. | |
| // | |
| #import <Foundation/Foundation.h> | |
| #include <mach/mach.h> | |
| #include <pthread.h> |
OlderNewer