Skip to content

Instantly share code, notes, and snippets.

View toidang92's full-sized avatar

Bá Tới toidang92

  • Hồ Chí Minh City
  • 08:45 (UTC +07:00)
  • LinkedIn in/toidang92
View GitHub Profile
@toidang92
toidang92 / bootstrap-em.less
Created February 19, 2016 10:05 — forked from jasny/bootstrap-em.less
Use em or rem font-size in Bootstrap 3
/**
* 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
@toidang92
toidang92 / gist:212f7d5da6ae36c4cda1
Created March 12, 2016 11:18
Change author of many commits
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
@toidang92
toidang92 / sync-postgres-mina.rb
Created March 12, 2016 20:24 — forked from nicolai86/sync-postgres-mina.rb
sync down the content of a postgresql database used by a rails application using mina.
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
@toidang92
toidang92 / active_admin_actions.rake
Created March 12, 2016 20:42 — forked from zorab47/active_admin_actions.rake
Rake task to list ActiveAdmin resource and page actions
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|
chmod 700 .ssh
sudo chmod 640 authorized_keys
sudo chown username .ssh
sudo chown username .ssh/authorized_keys
@toidang92
toidang92 / PG_RESTORE
Last active September 14, 2016 07:40
pg_restore --verbose --clean --no-acl --no-owner -d anbc_dev < ...path...
@toidang92
toidang92 / getVideoId.js
Created March 20, 2016 06:52 — forked from c3ry5/getVideoId.js
Regex Map/loop for getting the video id from youtube, vimeo, vine and instagram
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
},
@toidang92
toidang92 / gist:7abf44b1b8b79f8c7717
Created March 20, 2016 08:50 — forked from glaucocustodio/gist:5985229
Rails 4 , Rails Admin and Rich
# 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.
@toidang92
toidang92 / gist:772c727dbf4359818554
Created March 20, 2016 10:40 — forked from darcy/gist:2896009
MongoDB Trigram Search
// 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) {
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)