Quick list of monitoring tools
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
// ==UserScript== | |
// @name Github Wiki Search | |
// @description Search wiki of the repository on Github. | |
// @namespace linyows | |
// @include https://github.com/* | |
// @namespace http://userscripts.org/scripts/show/129930 | |
// @author linyows <[email protected]> | |
// @version 1.4.0 | |
// ==/UserScript== |
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
source 'https://rubygems.org' | |
# Ruby Version on Heroku | |
ruby '2.0.0' | |
# Puma (App server) | |
gem 'puma' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
gem 'rails', '4.0.0' |
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
source 'https://rubygems.org' | |
gem 'airbrake' | |
gem 'bourbon' | |
gem 'coffee-rails' | |
gem 'delayed_job_active_record', '>= 4.0.0' | |
gem 'email_validator' | |
gem 'flutie' | |
gem 'high_voltage' | |
gem 'jquery-rails' |
Live (free): http://www.goread.io/ Source: https://github.com/mjibson/goread
- Runs on google app engine Go SDK
ssh -T [email protected]
# Attempt to SSH in to github
# Hi username! You've successfully authenticated, but GitHub does not provide
# shell access.
echo "$SSH_AUTH_SOCK"
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
git clone git://github.com/mattolson/middleman-zurb-template.git ~/.middleman/zurb-foundation | |
git clone git://github.com/skatkov/middleman-prototype.git ~/.middleman/prototype | |
git clone git://github.com/pixelsonly/middleman-phonegap.git ~/.middleman/middleman-phonegap | |
git clone git://github.com/pixelsonly/middleman-hamlsasscoffee.git ~/.middleman/middleman-hamlsasscoffee | |
git clone http://github.com/nathos/amicus.git ~/.middleman/amicus | |
git clone git://github.com/nathanlong/middleman-combined.git ~/.middleman/combined | |
gem install middleman | |
gem install middleman-ratchet |
Install fresh with the following:
bash -c "`curl -sL get.freshshell.com`"
Don't want to run our shell script? The installation is simple:
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
# Generate private key and certificate signing request | |
# see https://devcenter.heroku.com/articles/ssl-certificate-self | |
openssl genrsa -des3 -passout pass:x -out server.pass.key 2048 | |
openssl rsa -passin pass:x -in server.pass.key -out server.key | |
rm server.pass.key | |
openssl req -new -key server.key -out server.csr | |
openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt |
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 'rack' | |
require 'rack-legacy' | |
require 'rack-rewrite' | |
INDEXES = ['index.html','index.php', 'index.cgi'] | |
use Rack::Rewrite do | |
rewrite %r{(.*/$)}, lambda {|match, rack_env| | |
INDEXES.each do |index| | |
if File.exists?(File.join(Dir.getwd, rack_env['PATH_INFO'], index)) |