Skip to content

Instantly share code, notes, and snippets.

View nplusp's full-sized avatar
🌸

Mikita Pridorozhko nplusp

🌸
View GitHub Profile
@nplusp
nplusp / gist:6299f5cdca45b42506f76c64376f5e26
Created March 13, 2017 11:34
Speed up your bundle install
bundle config --global jobs 3 # Number of cores - 1
@nplusp
nplusp / gist:d46d9cd3f07673e21ecfbb626d6199ad
Created January 27, 2017 12:51
run scripts on Heroku
echo "puts User.count" | heroku run console --app=my-heroku-app --no-tty
cat some_script.rb | heroku run console --app=my-heroku-app --no-tty
heroku run bundle exec rails runner ./scripts/script.rb -a my-heroku-app
heroku run bash
# Hash in params
def product_params
properties_keys = params[:product].try(:fetch, :properties, {}).keys
params.require(:product).permit(:title, :description, properties: properties_keys)
end
# Nested hash in params
def item_params
params.require(:item).permit(values: permit_recursive_params(params[:item][:values]))
end
lsof -Pn -i4 | grep LISTEN
ps ax | grep PROCESS_NAME | awk '{print "kill -9 " $1}'
@nplusp
nplusp / nginx.conf
Created May 6, 2016 13:08 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
ru:
i18n:
transliterate:
rule:
ё: 'yo'
№: '#'
є: 'e'
ї: 'yi'
а: 'a'
б: 'b'
@nplusp
nplusp / counter_cache_migration.rb
Created February 18, 2016 09:27
Counter cache migration hack
class AddCommentsCountToPosts < ActiveRecord::Migration
def change
change_table :posts do |t|
t.integer :comments_count, default: 0
end
reversible do |dir|
dir.up { data }
end
end
@nplusp
nplusp / workaround.php
Created December 29, 2015 06:39 — forked from aspyct/workaround.php
The most undebuggable PHP snippet ever
<?php
define("true ", false);
function doIt() {
define(" false", true);
define("maybe", rand() & 1);
}
function  ($stupid="clever") {
if (assert_value($stupid)) {