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.
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.
| #!/bin/bash | |
| # | |
| # This script will mount /Users in the boot2docker VM using NFS (instead of the | |
| # default vboxsf). It's probably not a good idea to run it while there are | |
| # Docker containers running in boot2docker. | |
| # | |
| # Usage: sudo ./boot2docker-use-nfs.sh | |
| # |
| #!/bin/bash | |
| usage() | |
| { | |
| cat << EOF | |
| usage: $0 options | |
| This script set ownership for all table, sequence and views for a given database | |
| Credit: Based on http://stackoverflow.com/a/2686185/305019 by Alex Soto |
| (ns ingredient.core | |
| (:require [clojure.browser.repl] | |
| [om.core :as om :include-macros true] | |
| [sablono.core :as html :refer [html] :include-macros true] | |
| [cljs.core.async :refer [put! chan close! sliding-buffer]]) | |
| (:require-macros [cljs.core.async.macros :refer [go]])) | |
| (enable-console-print!) | |
| (def app-state |
| ;;; TODO - drag-enter and -exit events : Right now, a component doesn't receive events for other components | |
| ;;; If a component responds to drag-over, it won't "revert" state until the drag ends. | |
| ;; NOTE - compiles with om 0.1.7. Needs updating to 0.2+ | |
| (ns omdnd.ux | |
| (:require-macros | |
| [cljs.core.async.macros :refer [go alt!]] | |
| ) |
Multi-series line chart rendered using React and D3.
I hereby claim:
To claim this, I am signing this object:
| input { | |
| exec { | |
| type => "dstat" | |
| command => "dstat -cdngypms --nocolor 1 0" | |
| interval => 13 | |
| } | |
| exec { | |
| type => "apache-benchmark" |
| # A limited way to interact with the Heroku API. | |
| # | |
| # INSTALLATION: | |
| # 1. Create file in scripts folder in hubot folder | |
| # 2. Update package.json for hubot and add dependency on "sprintf": "0.1.1" | |
| # 3. Set heroku config variable HEROKU_USER to heroku user account to use | |
| # 4. Set heroku config variable HEROKU_APIKEY to heroku user account apikey (from My Account page) | |
| # | |
| # heroku status - Retrieve the most recent tweet from the @herokustatus account | |
| # heroku ps --app <appname> - Get process information for application |