- tmux:
brew install tmux
- a .muck configuration file
~/.muck
Should be a YAML file.
// ==UserScript== | |
// @name Production Application Warning | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://order.universitytees.com/* | |
// @match https://order.717ink.com/* | |
// @match https://order.onpointpromos.com/* | |
// @match http://sosa.717ink.com/* |
I hereby claim:
// ==UserScript== | |
// @name Production Application Warning | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://order.universitytees.com/* | |
// @match https://order.717ink.com/* | |
// @match https://order.onpointpromos.com/* | |
// @match http://sosa.717ink.com/* |
# features/support/wait_for_angular.rb | |
module WaitForAngularSync | |
def wait_for_angular_sync | |
Timeout.timeout(Capybara.default_max_wait_time) do | |
loop until finished_all_angular_async_requests? | |
end | |
end | |
def finished_all_angular_async_requests? |
defaults: &defaults | |
host: 192.168.33.30:9200 | |
development: | |
<<: *defaults | |
test: | |
<<: *defaults | |
production: |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "opscode-ubuntu-12.04" | |
config.vm.box_url = "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-12.04_chef-provisionerless.box" |
module Jekyll | |
class LessConverter < Converter | |
safe true | |
priority :high | |
def setup | |
return if @setup | |
require 'less' | |
@setup = true | |
rescue LoadError |