Skip to content

Instantly share code, notes, and snippets.

View ryandesign's full-sized avatar

Ryan Carsten Schmidt ryandesign

View GitHub Profile
@ryandesign
ryandesign / QupZilla-1.6.4.crash
Created April 14, 2014 19:37
QupZilla 1.6.4 crash log
Process: QupZilla [32931]
Path: /Applications/MacPorts/QupZilla.app/Contents/MacOS/QupZilla
Identifier: com.qupzilla.QupZilla
Version: 0
Code Type: X86-64 (Native)
Parent Process: launchd [295]
Responsible: QupZilla [32931]
User ID: 502
Date/Time: 2014-04-14 14:35:31.454 -0500
@ryandesign
ryandesign / QupZilla-1.6.4-new-window.crash
Created April 14, 2014 19:56
QupZilla 1.6.4 crashes when making a new window
Process: QupZilla [37145]
Path: /Applications/MacPorts/QupZilla.app/Contents/MacOS/QupZilla
Identifier: com.qupzilla.QupZilla
Version: 0
Code Type: X86-64 (Native)
Parent Process: launchd [295]
Responsible: QupZilla [37145]
User ID: 502
Date/Time: 2014-04-14 14:56:25.345 -0500
@ryandesign
ryandesign / config.log
Created November 4, 2014 02:14
config.log for php-5.6.3RC1 on OS X 10.6.8
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure --prefix=/Volumes/Data/macports/snowleopard --mandir=/Volumes/Data/macports/snowleopard/share/man --infodir=/Volumes/Data/macports/snowleopard/share/info --program-suffix=56 --includedir=/Volumes/Data/macports/snowleopard/include/php56 --libdir=/Volumes/Data/macports/snowleopard/lib/php56 --with-config-file-path=/Volumes/Data/macports/snowleopard/etc/php56 --with-config-file-scan-dir=/Volumes/Data/macports/snowleopard/var/db/php56 --disable-all --enable-bcmath --enable-ctype --enable-dom --enable-fileinfo --enable-filter --enable-hash --enable-json --enable-libxml --enable-pdo --enable-phar --enable-session --enable-simplexml --enable-tokenizer --enable-xml --enable-xmlreader --enable-xmlwriter --with-bz2=/Volumes/Data/macports/snowleopard --with-mhash=/Volumes/Data/mac
@ryandesign
ryandesign / config.log
Created November 4, 2014 02:15
config.log for php-5.6.3RC1 on OS X 10.6.8 with Ryan's patch from #68114
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by configure, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ ./configure --prefix=/Volumes/Data/macports/snowleopard --mandir=/Volumes/Data/macports/snowleopard/share/man --infodir=/Volumes/Data/macports/snowleopard/share/info --program-suffix=56 --includedir=/Volumes/Data/macports/snowleopard/include/php56 --libdir=/Volumes/Data/macports/snowleopard/lib/php56 --with-config-file-path=/Volumes/Data/macports/snowleopard/etc/php56 --with-config-file-scan-dir=/Volumes/Data/macports/snowleopard/var/db/php56 --disable-all --enable-bcmath --enable-ctype --enable-dom --enable-fileinfo --enable-filter --enable-hash --enable-json --enable-libxml --enable-pdo --enable-phar --enable-session --enable-simplexml --enable-tokenizer --enable-xml --enable-xmlreader --enable-xmlwriter --with-bz2=/Volumes/Data/macports/snowleopard --with-mhash=/Volumes/Data/mac
--- TUTORIAL.txt.orig 2011-11-02 00:47:43.000000000 -0500
+++ TUTORIAL.txt 2011-11-02 00:48:07.000000000 -0500
@@ -26,7 +26,7 @@
Some directories must be writable so that the webserver (assuming it
runs under a different user) can store files in there.
-$ chmod −R a+rwX webroot/media/{transfer,filter}
+$ chmod -R a+rwX webroot/media/{transfer,filter}
Expanding on the blog tutorial we add the following fields to our
@ryandesign
ryandesign / mongo-objc-driver-snprintf.diff
Created November 11, 2011 00:21
Fix mongo-objc-driver warning when compiled with gcc
warning: '0' flag ignored with precision and '%X' printf format
--- Sources/MODBinary.m.orig 2011-11-08 15:00:08.000000000 -0600
+++ Sources/MODBinary.m 2011-11-10 17:54:06.000000000 -0600
@@ -47,7 +47,7 @@
bufferString = malloc(([_data length] * 2) + 1);
count = [_data length];
for(ii = 0; ii < count; ii++) {
- snprintf(bufferString + (ii * 2), 3, "%0.2X", bytes[ii]);
+ snprintf(bufferString + (ii * 2), 3, "%.2X", bytes[ii]);
}
@ryandesign
ryandesign / project.pbxproj.diff
Created November 11, 2011 00:37
Fix MongoHub error "must have a 64bit int type" when using gcc
error: #error must have a 64bit int type
--- MongoHub.xcodeproj/project.pbxproj.orig 2011-11-10 18:00:13.000000000 -0600
+++ MongoHub.xcodeproj/project.pbxproj 2011-11-10 18:04:37.000000000 -0600
@@ -1480,6 +1480,7 @@
"$(inherited)",
"\"$(SRCROOT)\"/Frameworks",
);
+ GCC_C_LANGUAGE_STANDARD = c99;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREFIX_HEADER = MongoHub_Prefix.pch;
@ryandesign
ryandesign / ImportWindowController.m.diff
Created November 11, 2011 00:43
Fix MongoHub error "incompatible block pointer types initializing 'void (^)()', expected 'dispatch_block_t'" when using gcc
error: incompatible block pointer types initializing 'void (^)()', expected 'dispatch_block_t'
--- ImportWindowController.m.orig 2011-11-01 09:02:57.000000000 -0500
+++ ImportWindowController.m 2011-11-10 17:49:01.000000000 -0600
@@ -121,7 +121,7 @@
}
dispatch_queue_t myQueue = dispatch_queue_create("com.mongohub.mysql", 0);
- dispatch_async(myQueue, ^() {
+ dispatch_async(myQueue, ^ {
long long total = [self importCount:tableName];
@ryandesign
ryandesign / qupzilla_2012-01-05-195358.crash
Created January 6, 2012 01:56
qupzilla OS X crash after having accessed Help menu
Process: qupzilla [3995]
Path: /opt/local/Applications/QupZilla.app/Contents/MacOS/qupzilla
Identifier: com.yourcompany.qupzilla
Version: ??? (???)
Code Type: X86-64 (Native)
Parent Process: launchd [229]
Date/Time: 2012-01-05 19:53:57.100 -0600
OS Version: Mac OS X 10.6.8 (10K549)
Report Version: 6
@ryandesign
ryandesign / nodejs-0.6.7-main.log
Created January 23, 2012 03:30
node.js 0.6.8 build failure / 0.6.7 build success on Leopard i386
version:1
:msg:main ---> Computing dependencies for nodejs:msg:main
:debug:main Checking for conflicts against nodejs
:debug:main Searching for dependency: nodejs-devel
:debug:main Didn't find receipt, going to depspec regex for: nodejs-devel
:debug:main Searching for dependency: pkgconfig
:debug:main Found Dependency: receipt exists for pkgconfig
:debug:main Searching for dependency: python27
:debug:main Found Dependency: receipt exists for python27
:debug:main Searching for dependency: openssl