This file contains 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
Sampling process 2264 for 3 seconds with 1 millisecond of run time between samples | |
Sampling completed, processing symbols... | |
Analysis of sampling OutBank (pid 2264) every 1 millisecond | |
Process: OutBank [2264] | |
Path: /Applications/OutBank.app/Contents/MacOS/OutBank | |
Load Address: 0x10d210000 | |
Identifier: de.stoegerit.OutBankMac | |
Version: 2.0.1 (21596) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [139] |
This file contains 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: OutBank [38853] | |
Path: /Applications/OutBank.app/Contents/MacOS/OutBank | |
Identifier: de.stoegerit.OutBankMac | |
Version: 2.0.1 (21596) | |
App Item ID: 451208372 | |
App External ID: 13569665 | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [139] | |
Date/Time: 2013-01-28 14:49:48.504 +0100 |
This file contains 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
#!/usr/bin/ruby | |
require 'rubygems' | |
require 'json' | |
require 'net/http' | |
require 'net/https' | |
def jsonResponseForURL(inURL) | |
uri = URI.parse(inURL) | |
http = Net::HTTP.new(uri.host, uri.port) |
This file contains 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
Date/Time: 2013-04-20 20:32:44 +0200 | |
OS Version: 10.8.4 (Build 12E33a) | |
Architecture: x86_64 | |
Report Version: 11 | |
Command: GarageBuy | |
Path: /Applications/Internet/GarageBuy.app/Contents/MacOS/GarageBuy | |
Version: 3.1 (324) | |
Parent: launchd [173] |
This file contains 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
- (BOOL)outlineView:(NSOutlineView *)outlineView isGroupItem:(id)inItem | |
{ | |
return [inItem isKindOfClass:[NSDictionary class]];<<app crashing on this line | |
} | |
Crash Report: | |
Incident Identifier: B905C1A8-0B07-4084-9B5B-1993F5BEE0EA | |
CrashReporter Key: [TODO] | |
Hardware Model: MacBookAir5,2 |
This file contains 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
Then, if codesign verifies the app and storeagent says “Unsigned App”, then do this: | |
$ cd /System/Library/Frameworks/Security.framework | |
$ sudo mv PlugIns Versions/Current/PlugIns | |
$ sudo ln -s Versions/Current/PlugIns . | |
and reboot. If that makes the problem go away, you're seeing the same problem we are. |
This file contains 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
Sampling process 51185 for 3 seconds with 1 millisecond of run time between samples | |
Sampling completed, processing symbols... | |
Analysis of sampling OutBank (pid 51185) every 1 millisecond | |
Process: OutBank [51185] | |
Path: /Applications/OutBank.app/Contents/MacOS/OutBank | |
Load Address: 0x10a145000 | |
Identifier: de.stoegerit.OutBankMac | |
Version: 2.4.3 (32715) | |
Code Type: X86-64 | |
Parent Process: launchd [162] |
This file contains 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
Sampling process 55496 for 3 seconds with 1 millisecond of run time between samples | |
Sampling completed, processing symbols... | |
Analysis of sampling GitHub Desktop (pid 55496) every 1 millisecond | |
Process: GitHub Desktop [55496] | |
Path: /Applications/GitHub Desktop.app/Contents/MacOS/GitHub Desktop | |
Load Address: 0x10f89d000 | |
Identifier: com.github.GitHub | |
Version: Bae's Branch (210) | |
Code Type: X86-64 | |
Parent Process: ??? [1] |
This file contains 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
private void fireDoneEvent(Iterator<QueueJobObserver> it) | |
{ | |
if (it.hasNext()) | |
{ | |
QueueJobObserver observer = it.next(); | |
fireDoneEvent(it); | |
observer.jobDone(this); | |
} | |
} |
OlderNewer