src ⇒ brew deps --tree wireshark
wireshark
|- pkg-config
Error: undefined method `include?' for #<Dependency: "pkg-config" [:build]>
Please report this bug:
https://github.com/mxcl/homebrew/wiki/troubleshooting
/usr/local/Library/Homebrew/formula.rb:368:in `canonical_name'
/usr/local/Library/Homebrew/formulary.rb:161:in `factory'
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: Quicksilver [15721] | |
Path: /Applications/Quicksilver.app/Contents/MacOS/Quicksilver | |
Identifier: com.blacktree.Quicksilver | |
Version: 1.0.0:arc (4000) | |
Code Type: X86-64 (Native) | |
Parent Process: launchd [306] | |
User ID: 501 | |
Date/Time: 2013-07-30 20:23:15.912 +0800 | |
OS Version: Mac OS X 10.8.4 (12E55) |
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: Python [59285] | |
Path: /System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python | |
Identifier: Python | |
Version: 2.5.6 (2.5.6a0) | |
Code Type: X86 (Native) | |
Parent Process: Plex Media Server [59284] | |
User ID: 501 | |
PlugIn Path: /Users/USER/Library/Application Support/Plex Media Server/*/Framework.bundle/Contents/Resources/Platforms/MacOSX/i386/Frameworks/libxml2.2-osx.dylib | |
PlugIn Identifier: libxml2.2-osx.dylib |
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
## Plugins built against commit bb8ec2ef2588e818e062af467d4d49945e102777 or later are 64 bit only. Set the QSVersion to ensure these plugins don't show up in the plugin updater | |
qsversion = info.get('QSRequirements',{}).get('version','') | |
if qsversion == '' or hex(qsversion) < 0x4001: | |
qsversion.setdefault('QSRequirements',{})['version'] = '4001' |
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
2013-02-22 18:53:06.382 Quicksilver[29383:303] *** -[JKArray objectAtIndex:]: index (18446744073709551615) beyond bounds (1) | |
2013-02-22 18:53:06.384 Quicksilver[29383:303] ( | |
0 CoreFoundation 0x00007fff91b070a6 __exceptionPreprocess + 198 | |
1 libobjc.A.dylib 0x00007fff934bc3f0 objc_exception_throw + 43 | |
2 CoreFoundation 0x00007fff91b9b229 -[NSException raise] + 9 | |
3 ExceptionHandling 0x00000001002b365b NSExceptionHandlerExceptionRaiser + 210 | |
4 libobjc.A.dylib 0x00007fff934bc3f0 objc_exception_throw + 43 | |
5 CoreFoundation 0x00007fff91b06e7c +[NSException raise:format:] + 204 | |
6 Firefox Module 0x0000000103b2e2e0 sqlite3_uri_parameter + 1278 | |
7 QSCore 0x0000000100197b5b -[QSProxyObject resolvedObject] + 43 |
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
#import <Foundation/Foundation.h> | |
int main(int argc, const char * argv[]) | |
{ | |
@autoreleasepool { | |
// insert code here... | |
NSURL *url = [NSURL fileURLWithPath:@"file://localhost/usr/bin/"]; | |
NSMutableArray *a = [NSMutableArray array]; |
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
// | |
// main.m | |
// Threading | |
// | |
// Created by Patrick Robertson on 12/02/2013. | |
// Copyright (c) 2013 Patrick Robertson. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
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
/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Support/lsregister -kill -r -domain local -domain system -domain user |
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: Quicksilver [29345] | |
Path: /Applications/Quicksilver.app/Contents/MacOS/Quicksilver | |
Identifier: com.blacktree.Quicksilver | |
Version: ß71 (3938) | |
Code Type: X86-64 (Native) | |
Parent Process: ??? [1] | |
User ID: 501 | |
Date/Time: 2013-01-09 15:59:13.336 -0800 | |
OS Version: Mac OS X 10.8.2 (12C3006) |
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
patrick$ cat a.php | |
<?php | |
echo (TRUE ? "a" : (TRUE ? "b" : "c"))."\n"; | |
?> | |
patrick$ php a.php | |
a |