Skip to content

Instantly share code, notes, and snippets.

View tfwright's full-sized avatar
🧿

T. Floyd Wright tfwright

🧿
View GitHub Profile
@tfwright
tfwright / discourse
Last active August 29, 2015 14:09 — forked from marcoceppi/discourse
description "Discourse Application"
# automatically start
start on (local-filesystems and net-device-up IFACE!=lo)
chdir /home/discourse/discourse
env RAILS_ENV=production
pre-start exec mkdir -p logs
@tfwright
tfwright / agent.rb
Created December 3, 2013 20:47 — forked from regedarek/agent.rb
require 'faraday'
require 'forwardable'
module Soup
class Agent
extend Forwardable
def initialize(domain = 'https://www.soup.io/')
@agent ||= faraday(domain)
end
@tfwright
tfwright / build_vico.sh
Last active December 28, 2015 01:19 — forked from jmazzi/build_vico.sh
#!/bin/bash
set -ex
rm -rf ~/Code/vico
cd ~/Code
git clone https://github.com/vicoapp/vico.git
cd vico
make app
rm -rf /Applications/Vico.app
mv ~/Code/vico/build/Debug/Vico.app /Applications/Vico.app