Skip to content

Instantly share code, notes, and snippets.

View codeblooded's full-sized avatar

Ben Reed codeblooded

View GitHub Profile
@codeblooded
codeblooded / apple-wbench.txt
Created March 2, 2013 02:38
WBench Results
Testing http://apple.com
At Fri Mar 1 20:38:32 2013
1 loops
Fastest Median Slowest Std Dev
---------------------------------------------------------------------------
Server performance:
Total application time Unable to be recorded
@codeblooded
codeblooded / osx_gcc_and_ruby.txt
Last active December 14, 2015 04:08
Attempt to Install Ruby 2.0.0-p0 on OS X fails with GCC. Using updated rbenv and ruby-build installed and upgraded through Homebrew.
$ export CC=gcc
$ rbenv install 2.0.0-p0
Downloading openssl-1.0.1e.tar.gz...
-> https://www.openssl.org/source/openssl-1.0.1e.tar.gz
Installing openssl-1.0.1e...
Installed openssl-1.0.1e to /Users/benvreed/.rbenv/versions/2.0.0-p0
Downloading ruby-2.0.0-p0.tar.gz...
-> http://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p0.tar.gz
Installing ruby-2.0.0-p0...
@codeblooded
codeblooded / brewdoctor_mono.txt
Created January 13, 2013 01:31
The issue I'm getting with mono framework and Homebrew.
Warning: /Library/Frameworks/Mono.framework detected
This can be picked up by CMake's build system and likely cause the build to
fail. You may need to move this file out of the way to compile CMake.
Warning: You have a non-Homebrew 'pkg-config' in your PATH:
/usr/bin/pkg-config => /Library/Frameworks/Mono.framework/Versions/2.10.9/bin/pkg-config
This was most likely created by the Mono installer. `./configure` may
have problems finding brew-installed packages using this other pkg-config.
@codeblooded
codeblooded / gist:4436519
Created January 2, 2013 18:04
Log from Rails Issue #8684
=> Booting WEBrick
=> Rails 4.0.0.beta application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
[2013-01-02 11:54:20] INFO WEBrick 1.3.1
[2013-01-02 11:54:20] INFO ruby 1.9.3 (2012-12-25) [x86_64-darwin11.4.0]
[2013-01-02 11:54:20] INFO WEBrick::HTTPServer#start: pid=31912 port=3000
Started GET "/" for 127.0.0.1 at 2013-01-02 11:55:07 -0600
@codeblooded
codeblooded / gist:3966376
Created October 27, 2012 21:29
Starting with Processing.org
/* The follow thru web */
int previousX = 0;
int previousY = 0;
boolean isDrawing = true;
void setup()
{
size(300, 300);
background(0);