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
Last login: Mon Nov 19 14:51:53 on ttys003 | |
Nolis-MacBook-Pro:Cbc-2.7.7_2 nsicad$ make install | |
Making install in ThirdParty/Glpk | |
test -z "/Users/nsicad/Documents/Cbc-2.7.7_2/lib" || /Users/nsicad/Documents/Cbc-2.7.7_2/ThirdParty/Glpk/install-sh -d "/Users/nsicad/Documents/Cbc-2.7.7_2/lib" | |
/bin/sh ./../../libtool --mode=install /usr/bin/install -c 'libcoinglpk.la' '/Users/nsicad/Documents/Cbc-2.7.7_2/lib/libcoinglpk.la' | |
/usr/bin/install -c .libs/libcoinglpk.1.8.2.dylib /Users/nsicad/Documents/Cbc-2.7.7_2/lib/libcoinglpk.1.8.2.dylib | |
(cd /Users/nsicad/Documents/Cbc-2.7.7_2/lib && { ln -s -f libcoinglpk.1.8.2.dylib libcoinglpk.1.dylib || { rm -f libcoinglpk.1.dylib && ln -s libcoinglpk.1.8.2.dylib libcoinglpk.1.dylib; }; }) | |
(cd /Users/nsicad/Documents/Cbc-2.7.7_2/lib && { ln -s -f libcoinglpk.1.8.2.dylib libcoinglpk.dylib || { rm -f libcoinglpk.dylib && ln -s libcoinglpk.1.8.2.dylib libcoinglpk.dylib; }; }) | |
/usr/bin/install -c .libs/libcoinglpk.lai /Users/nsicad/Documents/Cbc-2.7.7_2/lib/libcoinglpk.la | |
--------- |
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
\* Problem: TimberHarvestModel_0025p *\ | |
Maximize | |
Discounted_Net_Value: + 28320 FStand(4,1) + 19680 FStand(4,2) | |
+ 13626.6666666667 FStand(4,3) + 9173.33333333333 FStand(4,4) | |
+ 6162.96296296296 FStand(4,5) + 4140.24691358025 FStand(4,6) | |
+ 18960 FStand(5,1) + 13740 FStand(5,2) + 9946.66666666667 FStand(5,3) | |
+ 7102.22222222222 FStand(5,4) + 5031.11111111111 FStand(5,5) | |
+ 3520 FStand(5,6) + 26430 FStand(15,1) + 18480 FStand(15,2) | |
+ 12920 FStand(15,3) + 8977.77777777778 FStand(15,4) |
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
* Problem: TimberHarvestModel_0025p | |
* Class: MIP | |
* Rows: 464 | |
* Columns: 255 (249 integer, 249 binary) | |
* Non-zeros: 1421 | |
* Format: Free MPS | |
* | |
NAME TimberHarvestModel_0025p | |
ROWS | |
N Discounted_Net_Value |
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
* Problem: TimberHarvestModel_0025p | |
* Class: MIP | |
* Rows: 464 | |
* Columns: 255 (249 integer, 249 binary) | |
* Non-zeros: 1421 | |
* Format: Fixed MPS | |
* | |
NAME TimberHa | |
ROWS | |
N R0000001 |
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
# This LOOKS pretty straightforward, but it took awhile to sort out issues with | |
# py2cairo and pygobject, so I hope I've saved you some time :-) | |
# | |
# This assumes you already subscribe to a nice clean virtualenvwrapper workflow | |
# -- see https://gist.github.com/771394 if you need advice on getting there. | |
# There are some optional dependencies omitted, so if you're going to be doing | |
# heavy development with these libs, you may want to look into them. | |
# | |
# We go to some configure option pains to avoid polluting the system-level | |
# Python, and `brew link`ing Cairo which is keg-only by default. |
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
from qgis.core import * | |
from qgis.gui import * | |
from PyQt4.QtCore import * | |
from PyQt4.QtGui import QApplication | |
from PyQt4.QtXml import * | |
import sys | |
import xml.etree.ElementTree as ET | |
app = QgsApplication([], True) |
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
#!/bin/sh | |
# This script will migrate schema and data from a SQLite3 database to PostgreSQL. | |
# Schema translation based on http://stackoverflow.com/a/4581921/1303625. | |
# Some column types are not handled (e.g blobs). | |
SQLITE_DB_PATH=$1 | |
PG_DB_NAME=$2 | |
PG_USER_NAME=$3 |
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
#!/bin/bash | |
# -*- coding: utf-8 -*- | |
# | |
# Create QGIS for Mac OS X nightly build from github.com 'master' branch. | |
# Keep a number of dmg archives of previous builds as backups. | |
# | |
# Tested under Lion 10.7.4 and Snow Leopard 10.6.8, **run via sudo** | |
# Requires same kyngchaos.com framework setup and build environment as per |
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
var geojson = L.geoJson(data, { | |
// style for all vector layers (color, opacity, etc.) (optional) | |
getStyle: function (feature) { | |
return feature.properties && feature.properties.style; | |
}, | |
// function for creating layers for GeoJSON point features (optional) | |
pointToLayer: function (feature, latlng) { | |
return L.marker(latlng, { |
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
When one says "social coding" I ask "how social"? One measure of social-ness is the number of distinct collaborators. | |
The data is from the github.timeline dataset. The visualization uses D3 and is adapted from the Sunburst example. | |
Click http://bl.ocks.org/2866246 to view it in all its glory. |
NewerOlder