This file contains 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
/** | |
* Use em or rem font-size in Bootstrap 3 | |
*/ | |
@font-size-root: 14px; | |
@font-unit: 0rem; // Pick em or rem here | |
// Convert all variables to em |
This file contains 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 filter-branch --env-filter 'if [ "$GIT_AUTHOR_EMAIL" = "incorrect@email" ]; then | |
GIT_AUTHOR_EMAIL=correct@email; | |
GIT_AUTHOR_NAME="Correct Name"; | |
GIT_COMMITTER_EMAIL=$GIT_AUTHOR_EMAIL; | |
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"; fi' -- --all |
This file contains 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
RYAML = <<-BASH | |
function ryaml { | |
ruby -ryaml -e 'puts ARGV[1..-1].inject(YAML.load(File.read(ARGV[0]))) {|acc, key| acc[key] }' "$@" | |
}; | |
BASH | |
namespace :sync do | |
task :db do | |
isolate do | |
invoke :environment |
This file contains 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
task :active_admin_actions => :environment do | |
skip_resources = [ 'Dashboard' ] | |
namespace = ActiveAdmin.application.namespace(:admin) | |
pages = namespace.resources.select { |r| r.is_a? ActiveAdmin::Page } | |
resources = namespace.resources.select { |r| r.respond_to? :resource_class } | |
resource_actions = | |
resources.each_with_object({}) do |resource, actions| |
This file contains 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
pg_restore --verbose --clean --no-acl --no-owner -d anbc_dev < ...path... |
This file contains 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
getVideoId = { | |
siteMap : { | |
"youtube" : { | |
r : /(youtu\.be\/|youtube\.com\/(watch\?(.*&)?v=|(embed|v)\/))([^\?&"'>]+)/, | |
id : 5 | |
}, | |
"vimeo" : { | |
r : /https?:\/\/(?:www\.)?vimeo.com\/(?:channels\/(?:\w+\/)?|groups\/([^\/]*)\/videos\/|album\/(\d+)\/video\/|)(\d+)(?:$|\/|\?)/, | |
id : 3 | |
}, |
This file contains 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
# Following https://github.com/sferik/rails_admin/wiki/Theming-and-customization I have created a custom js to load rich base, in this way I get the assets included on top of page | |
# /assets/javascripts/rails_admin/custom/ui.js | |
//= require rich/base | |
//= require_self | |
# File upload at Rails 4 | |
# How rich still uses 'attr_accessible' and I didnt want use attr_protected gem I had to overrode RichFile class to comment attr_accessible, I just created /models/rich/rich_file.rb with the same content from rich gem and commented out attr_acessible line. | |
This file contains 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
// THIS SHOULD WORK AS COPY/PASTE into mongo console | |
var games = ["here is a test", "small test", "another game"]; | |
var query = 'here is testing a test'; | |
////////////////////////////////////////////// | |
// 1. util functions | |
var intersect = function(arr1, arr2) { |
This file contains 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
Sort Keywords by Word Count | |
^[^\s]*$ matches exactly 1-word keyword | |
^[^\s]*\s[^\s]*$ matches exactly 2-word keyword | |
^[^\s]*\s[^\s]* matches keywords of at least 2 words (2 and more) | |
^([^\s]*\s){2}[^\s]*$ matches exactly 3-word keyword | |
^([^\s]*\s){4}[^\s]*$ matches 5-words-and-more keywords (longtail) |
OlderNewer