Make sure jQuery and Bootstrap's Tootip and Popover plugins are included: http://getbootstrap.com/javascript/ http://getbootstrap.com/customize/
Then add the following...
Make sure jQuery and Bootstrap's Tootip and Popover plugins are included: http://getbootstrap.com/javascript/ http://getbootstrap.com/customize/
Then add the following...
/* | |
* object.watch polyfill | |
* | |
* 2012-04-03 | |
* | |
* By Eli Grey, http://eligrey.com | |
* Public Domain. | |
* NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
*/ |
SublimeText3 Valid License without cracking! Just download/install then use this license.
Notice that it may not work on dev builds, but still works on 3083 build!
----- BEGIN LICENSE -----
Andrew Weber
Single User License
EA7E-855605
813A03DD 5E4AD9E6 6C0EEB94 BC99798F
# Ask for the user password | |
# Script only works if sudo caches the password for a few minutes | |
sudo true | |
# Install kernel extra's to enable docker aufs support | |
sudo apt-get -y install linux-image-extra-$(uname -r) | |
# Add Docker PPA and install latest version | |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 | |
sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list" |
Prerequisite
Installation
wget http://repo1.maven.org/maven2/org/clojure/clojure/1.6.0/clojure-1.6.0.zip
#sudo apt-get remove maven2 | |
sudo add-apt-repository "deb http://ppa.launchpad.net/natecarlson/maven3/ubuntu precise main" | |
sudo apt-get update | |
sudo apt-get install maven3 | |
#If you encounter this: | |
#The program 'mvn' can be found in the following packages: | |
# * maven | |
# * maven2 |
:: Make --no-ri --no-rdoc default gem install options (without documentation) | |
:: Possible variations: | |
:: For every user: | |
:: echo gem: --no-ri --no-rdoc > "%PROGRAMDATA%\gemrc" | |
:: Only for you | |
:: echo gem: --no-ri --no-rdoc >> "%USERPROFILE%\.gemrc" | |
:: | |
:: Note: In Windows, %PROGRAMDATA% is /etc on Linux | |
:: | |
:: But finally, the best way to do it. See: http://stackoverflow.com/a/7662245/1579985 |
class User | |
include Mongoid::Document | |
# herein might appear a metric shitton of fields | |
# but what you need to know for feature flags follows | |
field :feature_flags, :type => Hash, :default => {} | |
# likewise, this is only what you need for |
#./lib/patches/i18n_patch' | |
require 'i18n' | |
module I18n | |
class << self | |
def translate(*args) | |
res = super(*args) | |
res = res[nil, {}] if res.is_a? Proc | |
res |