Skip to content

Instantly share code, notes, and snippets.

View alekseyl's full-sized avatar
👨‍💻
Looking for a job

Aleksey Leshchuk alekseyl

👨‍💻
Looking for a job
View GitHub Profile
@alekseyl
alekseyl / virtual_attr.rb
Created December 13, 2016 08:49
virtual attributes example
# DB way
Shipment.scope
.joins(purchase: :product)
.select(["shipments.*","sum(purchases.items_count*products.gross_weight) as gross_weight"])
.group("shipments.id")
@alekseyl
alekseyl / all_keys.rb
Last active December 13, 2016 09:05
for medium article 'Rails fast collection render'
# nil means current_user is empty i.e. it's a guest
keys = [ [:user, :admin, :moderator, nil], [:ru, :en ] ]
# all combination of keys:
all_flatten_keys = keys.pop.product(*keys)
# [[:ru, :user], [:ru, :admin], [:ru, :moderator], [:ru, nil],
# [:en, :user], [:en, :admin], [:en, :moderator], [:en, nil]]
@alekseyl
alekseyl / prerender.rb
Created December 13, 2016 09:06
for medium article 'Rails fast collection render'
class Product <ActiveRecord::Base
after_commit :prerender
def prerender
keys = [ [:user, :admin, :moderator, nil], [:ru, :en ] ]
keys.pop.product(*keys).each do |lr|
# lr - locale + role
ApplicationController.render(
assigns: {locals: {product: self, role: lr[1], locale: lr[0]} },
inline: '<% render partial: "products/product", locals: @locals %>')
#of course products/_product.html.slim must start with
@alekseyl
alekseyl / cache_fine_tuning_example.conf
Created January 31, 2017 15:44
nginx fine cache tuning
proxy_cache_path /path/to/cache levels=1:2 keys_zone=my_cache:10m max_size=10g
inactive=60m use_temp_path=off;
server {
...
location / {
proxy_cache my_cache;
proxy_cache_revalidate on;
proxy_cache_min_uses 1;
proxy_cache_use_stale error timeout updating http_500 http_502 http_503
@alekseyl
alekseyl / digest_namespace.rb
Last active January 31, 2017 16:09
Digest on all files from folder in rails
def all_files_in(dir)
Dir[ File.join(dir, '**', '*') ].reject { |p| File.directory? p }
end
new_namespace = Digest::SHA256.hexdigest( all_files_in( 'app/views' )
.map{|fl| Digest::SHA256.file(fl).hexdigest }
.join )
#in controller:
before_action :resourceful_cache_headers
before_action :resourceless_cache_headers
before_action :skip_session
def skip_session
# if you need to deliver flash, or authencity token, or you explicitly need session
request.session_options[:skip] = true unless you_need_session
end
@alekseyl
alekseyl / nginx_cache_full_example.conf
Last active March 28, 2018 12:32
nginx/rails cache config example
proxy_cache_pass /path/to/cache levels= keys_zone=rails_cache:10m max_size=10g use_temp_path=off inactive=120m;
location / {
try_files $uri @rails;
}
location @rails {
# lets skip authorized user.
proxy_no_cache $cookie_remember_user_token;
proxy_cache_bypass $cookie_remember_user_token;
@alekseyl
alekseyl / run_async_with_rescue.rb
Created February 17, 2017 11:45
run_async_with_rescue example
def run_async_with_rescue( airbrake_params = {} )
backtrace = Kernel.caller
Thread.new do
begin
yield
rescue => e
e.set_backtrace( backtrace )
notice = Airbrake.build_notice(e, airbrake_params)
Airbrake.notify(notice) if notice
end
@alekseyl
alekseyl / devise_notification_threaded_example.rb
Last active February 17, 2017 12:24
deliver devise emails with threads
def send_devise_notification(notification, *args)
# don't forget email not sended without calling deliver
message = devise_mailer.send(notification, self, *args)
# this is the params you want to anylise when something crashes
add_to_airbrake_notice = attributes.slice('email', 'name', 'surname', 'cell', 'id')
# run message delivering
run_async_with_rescue(add_to_airbrake_notice) { message.deliver }
end
@alekseyl
alekseyl / conditional_location.conf
Last active February 21, 2017 11:52
Conditional location selection with try_files. It may be useful in cases of A\B version of a site running on same domain name. You can do sticky cookie with this example.
server {
set $versioned_location @version_one;
if ( $cookie_condition ) {
set $versioned_location @version_two;
}
if ( $cookie_site_version = "version_one" ) {
set $versioned_location @version_one;
}