dev at forge in /usr/local/Cellar/gtkmm/2.24.4 on master [!]
$ pkg-config --modversion gtkmm-2.4
2.24.4
dev at forge in /usr/local/Cellar/gtkmm/2.24.4 on master [!]
$ pkg-config --print-errors gtkmm-2.4
Package xcb-shm was not found in the pkg-config search path.
Perhaps you should add the directory containing `xcb-shm.pc'
to the PKG_CONFIG_PATH environment variable
This file contains hidden or 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
# not sure if it works yet... | |
tweetLocation2 = ({place: {name: placename}, coordinates: {coordinates: coords}, user: {location: loc}}) -> | |
geocode = (coordinates) -> | |
(coordinates? console.log "replace this function w/ a call to twitter reverse geocode api - #{coordinates}") ? false | |
placename ? (geocode coords) ? loc ? "somewhere" | |
# works | |
# remember tweet coords are long, lat |
This file contains hidden or 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
/////////////////////////////////////////////////// | |
// console javascript to download images listed in | |
// json file generated by tumblr-scraper | |
// https://github.com/kristopolous/tumblr-scraper | |
// | |
// uses Artoo! I'm lazy, probably massive overkill | |
// http://medialab.github.io/artoo/save/ | |
// | |
// requires chrome | |
// images stored in usual download folder |
This file contains hidden or 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
Will from OpenTrons takes the stage… | |
Hi. | |
It’s an open source lab robot for biotech | |
Mentions carlson curves to legitimize notion that biotech is experiencing crazy growth + innovation | |
What kind of innovations? |
This file contains hidden or 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
# Place in ~/.gitignore_global | |
# then run | |
# $ git config --global core.excludesfile '~/.gitignore_global' | |
############################################################### | |
Sublime Text # | |
################ | |
*.sublime-project | |
*.sublime-workspace |
This file contains hidden or 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
require 'formula' | |
class Gtkmm < Formula | |
homepage 'http://www.gtkmm.org/' | |
url 'http://ftp.gnome.org/pub/GNOME/sources/gtkmm/2.24/gtkmm-2.24.4.tar.xz' | |
sha256 '443a2ff3fcb42a915609f1779000390c640a6d7fd19ad8816e6161053696f5ee' | |
bottle do | |
sha1 "12abc3e448a6419e147fa394388f9bace5151fb3" => :mavericks | |
sha1 "418cbdad18035d6ed5ca13ad580017c5ed05f901" => :mountain_lion |
This file contains hidden or 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
dev at forge in ~/Projects/OpenCFU on macos_compat [?] | |
$ brew install gtkmm | |
==> Installing dependencies for gtkmm: libsigc++, glibmm, gtk+, cairomm, pangomm, atkmm | |
==> Installing gtkmm dependency: libsigc++ | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/libsigc++-2.3.1.mavericks.bottle | |
Already downloaded: /Library/Caches/Homebrew/libsigc++-2.3.1.mavericks.bottle.tar.gz | |
==> Pouring libsigc++-2.3.1.mavericks.bottle.tar.gz | |
🍺 /usr/local/Cellar/libsigc++/2.3.1: 619 files, 13M | |
==> Installing gtkmm dependency: glibmm | |
==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/glibmm-2.40.0.mavericks.bottle.t |
OpenCFU doesn't compile on OS.X without some changes to the makefile.
@qgeissmann & @zamanlh got it to work:
@LuisZaman sez:
"try: autoreconf; ./configure --without-gui; then see if you have makefile to clear openmp from!"
Better yet, @qgeissmann suggested fixing the Makefile.am itself.
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<!-- source: http://labs.nortd.com/lasersaur/bom-1403-suppliers-usd --> | |
<head> | |
<title>Lasersaur</title> | |
<link rel="stylesheet" type="text/css" media="screen" href="/lasersaur/css/style.css"> | |
<script type="text/javascript" language="javascript" src="/scripts/jquery.js"></script> | |
<script type="text/javascript"> | |
var _gaq = _gaq || []; |
This file contains hidden or 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 BackerPoller = function() { | |
this.currentCount = this.scanCount(); | |
this.audioElement = document.createElement('audio'); | |
this.audioElement.setAttribute('src', 'https://dl.dropbox.com/u/3736314/kickstarter_backer_poller/kickbacker.wav'); | |
} | |
BackerPoller.prototype.scanCount = function() { | |
return $('.project-stats li:nth-child(3)').text().match(/\d+/)[0]; | |
} |