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
# frozen_string_literal: true | |
source "https://rubygems.org" | |
gem "prawn" | |
gem "prawn-qrcode" | |
gem "matrix" |
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
icon for twitter app | |
Find how to deploy | |
- heroku { node + cloudant couchdb } | |
- dotCloud { node + couchdb } | |
- nodster for nodejs; cloudant for couch | |
[done] | |
Clone into openlexington's github: http://github.com/openlexington/murlamapper.git | |
Sign up for a twitter account => lexpubart |
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
# brew update | |
# brew install couchdb | |
# sudo easy_install pip | |
# pip install couchapp | |
# brew install node | |
# curl http://npmjs.org/install.sh | sh | |
# git clone https://github.com/mheadd/muralmapper.git -b integration | |
# cd muralmapper | |
[TWITTER STUFF] |
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
$(function() { | |
// Github Repo JSON Endpoint | |
var endpoint = "http://github.com/api/v1/json/chaserx?callback=?"; | |
$.fn.sort = function() {return this.pushStack(jQuery.makeArray([].sort.apply(this, arguments)));}; | |
$.getJSON(endpoint, function(data) { | |
// Remove all the old projects! | |
$("#projects li").remove(); |
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
development: &global_settings | |
database: textual_development | |
host: 127.0.0.1 | |
port: 27017 | |
test: | |
database: textual_test | |
<<: *global_settings | |
production: |
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
#!/usr/bin/env ruby | |
# = Delighter - pull your twitter links into delicious. | |
# | |
# Takes the first link and submits it to delicious. The description | |
# will be the text up to the beginning of the link, the tags whatever | |
# hashtags are on the tweet. Let me know if you improve on this, it was | |
# pretty q&d. | |
# | |
# author: Ben Vandgrift <br/> |