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 'rubygems' | |
| require 'eventmachine' | |
| require 'em-http' # gem install em-http-request | |
| require 'yajl' # gem install yajl-ruby | |
| class String | |
| def bold | |
| "\033[1m#{self}\033[0m" | |
| end | |
| end |
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 'rubygems' | |
| require 'sqlite3' | |
| require 'active_record' | |
| ActiveRecord::Base.establish_connection( | |
| :adapter => 'sqlite3', :database => ':memory:' | |
| ) | |
| ActiveRecord::Schema.define(:version => 0) do | |
| create_table :users, :force => true do |t| |
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 'rubygems' | |
| require 'hmac-sha1' # on OS X: sudo gem install ruby-hmac | |
| require 'net/https' | |
| require 'base64' | |
| # | |
| # CHANGE ME: S3 access credentials go here, along with CloudFront Distribution ID | |
| # | |
| s3_access='' | |
| s3_secret='' |
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
| #!/bin/sh | |
| ## | |
| # This is a script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # Run in interactive mode with: | |
| # $ sh -c "$(curl -sL https://raw.github.com/gist/2108403/hack.sh)" | |
| # | |
| # or run it without prompt questions: |
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
| thumbnail: http://pds.exblog.jp/pds/1/201101/16/02/d0055302_13383029.jpg | |
| video: http://www.youtube.com/watch?v=UE27t_LJpx0 |
NOTE: This post now lives (and kept up to date) on my blog: http://hakunin.com/rails3-load-paths
Do nothing. All files in this dir are eager loaded in production and lazy loaded in development by default.
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 | |
| require 'gosu' # gem install gosu --no-document | |
| include Gosu | |
| $dimension, $splits = 200, 20 | |
| $size = $dimension.to_f / $splits.to_f | |
| class Worm | |
| attr_writer :dir | |
| def initialize() reset end |
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
| ################################################################################ | |
| # unicorn.sh | |
| ################################################################################ | |
| #!/usr/bin/env bash | |
| set -e | |
| PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games | |
| AS_USER="USER_NAME" |
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
| # Absolute switching | |
| xdotool set_desktop 0 | |
| xdotool set_desktop 1 | |
| xdotool set_desktop 2 | |
| xdotool set_desktop 3 | |
| # Relative switching | |
| xdotool set_desktop $(echo $(($(xdotool get_desktop) + 1))) | |
| xdotool set_desktop $(echo $(($(xdotool get_desktop) - 1))) |
OlderNewer