Skip to content

Instantly share code, notes, and snippets.

@phoebebright
phoebebright / brew pyqt failed output
Created January 1, 2011 01:29
Output + Brew Doctor
The-Black-Book-2:Formula phoebebr$ brew install pyqt
==> Downloading http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-mac-gpl-4.8.2.tar.gz
File already downloaded and cached to /Users/phoebebr/Library/Caches/Homebrew
==> python2.7 ./configure.py --confirm-license --bindir=/usr/local/Cellar/pyqt/4.8.2/bin --destdir=/usr/local/Cellar/pyqt/4.8.2/lib/python --sipdi
==> make
g++ -c -pipe -O2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.5 -fPIC -Wall -W -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.7.1/mkspecs/macx-g++ -I. -I/usr/local/Cellar/qt/4.7.1/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.7.1/include/QtCore -I/usr/local/Cellar/qt/4.7.1/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.7.1/include/QtGui -I/usr/local/Cellar/qt/4.7.1/lib/QtDeclarative.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.7.1/include/QtDeclarative -I/usr/local/Cellar/qt/4.7.1/include -I/usr/local/Cellar/sip/4.12/include -I
@phoebebright
phoebebright / pyqtproblem2
Created January 1, 2011 10:47
Further problem installing pyqt with brew
The-Black-Book-2:Formula phoebebr$ brew install pyqt
==> Downloading http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-mac-gpl-4.8.2.tar.gz
File already downloaded and cached to /Users/phoebebr/Library/Caches/Homebrew
==> python2.7 ./configure.py --confirm-license --bindir=/usr/local/Cellar/pyqt/4.8.2/bin --destdir=/usr/local/Cellar/pyqt/4.8.2/lib/python --sipdi
==> make
g++ -c -pipe -O2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.5 -fPIC -Wall -W -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.7.1/mkspecs/macx-g++ -I. -I/usr/local/Cellar/qt/4.7.1/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.7.1/include/QtCore -I/usr/local/Cellar/qt/4.7.1/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.7.1/include/QtGui -I/usr/local/Cellar/qt/4.7.1/lib/QtDeclarative.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.7.1/include/QtDeclarative -I/usr/local/Cellar/qt/4.7.1/include -I/usr/local/Cellar/sip/4.12/include -I
@phoebebright
phoebebright / brew pyqt failed output 3
Created January 1, 2011 17:15
Back to the first error I think
The-Black-Book-2:~ phoebebr$ brew install pyqt
==> Downloading http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-
File already downloaded and cached to /Users/phoebebr/Library/Caches/Homebrew
==> python2.7 ./configure.py --confirm-license --bindir=/usr/local/Cellar/pyqt/4
==> make
g++ -c -pipe -O2 -arch x86_64 -Xarch_x86_64 -mmacosx-version-min=10.5 -fPIC -Wall -W -DQT_NO_DEBUG -DQT_DECLARATIVE_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/local/Cellar/qt/4.7.1/mkspecs/macx-g++ -I. -I/usr/local/Cellar/qt/4.7.1/lib/QtCore.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.7.1/include/QtCore -I/usr/local/Cellar/qt/4.7.1/lib/QtGui.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.7.1/include/QtGui -I/usr/local/Cellar/qt/4.7.1/lib/QtDeclarative.framework/Versions/4/Headers -I/usr/local/Cellar/qt/4.7.1/include/QtDeclarative -I/usr/local/Cellar/qt/4.7.1/include -I/usr/local/Cellar/sip/4.12/include -I/usr/local/Cellar/python/2.7.1/Frameworks/Python.framework/Versions/2.7/include/python2.7 -
@phoebebright
phoebebright / brew doctor
Created December 2, 2011 12:52
Error with brew install memchached
Phoebe-Brights-iMac:~ phoebebr$ brew doctor
Your system is raring to brew.
@phoebebright
phoebebright / index.html
Created July 5, 2012 12:27
D3 axis scale simple example
<html>
<head>
<title>D3 Axis Example</title>
<script src="http://d3js.org/d3.v2.js"></script>
</head>
<body>
<script>
var width = 400,
@phoebebright
phoebebright / index.html
Created July 5, 2012 13:30
d3 csv nest simple example
<html>
<head>
<title>D3 Simple Nest and CSV Example</title>
<script src="http://d3js.org/d3.v2.js"></script>
</head>
<body>
<script>
@phoebebright
phoebebright / index.html
Created July 6, 2012 09:14
d3 sortKeys in nest function
<html>
<head>
<title>D3 Simple Nest Example</title>
<script src="http://d3js.org/d3.v2.js"></script>
</head>
<body>
<script>
@phoebebright
phoebebright / index.html
Created July 6, 2012 10:23
d3 date axis simple example
<html>
<head>
<title>D3 Axis Example</title>
<script src="http://d3js.org/d3.v2.js"></script>
</head>
<body>
<script>
var width = 700,
@phoebebright
phoebebright / index.html
Created July 6, 2012 16:34
d3 axis label prettified and using extent
<html>
<head>
<title>D3 Axis Example</title>
<script src="http://d3js.org/d3.v2.js"></script>
<style type="text/css">
.axis path,
.axis line {
fill: none;
@phoebebright
phoebebright / index.html
Created July 12, 2012 09:01
d3 nested nest from csv data
<html>
<head>
<title>D3 Nested Nest Example</title>
<script src="http://d3js.org/d3.v2.js"></script>
</head>
<body>
<script>