The ConnectionAdapter defines two callbacks :checkout
(connect) and :checkin
(disconnect).
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.set_callback :checkout, :after do
raw_connection
end
The ConnectionAdapter defines two callbacks :checkout
(connect) and :checkin
(disconnect).
ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.set_callback :checkout, :after do
raw_connection
end
# add this into application.rb | |
initializer_file = Rails.root.join('config', 'initializers', 'my_initializer.rb') | |
reloader = ActiveSupport::FileUpdateChecker.new([initializer_file]) do | |
load initializer_file | |
end | |
ActiveSupport::Reloader.to_prepare do | |
reloader.execute | |
end |
# add AWS credentials to ENV variables or modify the script to pass in credentials | |
require 'thread' | |
require 'aws-sdk' | |
# settings | |
region = 'my-region' | |
bucket = 'my-bucket' | |
prefix = 'my-prefix' | |
acl = "private" | |
parallel = 25 |
{ | |
"ensure_newline_at_eof_on_save": true, | |
"font_size": 12.0, | |
"trim_trailing_white_space_on_save": true | |
} |
require 'net/http' | |
require 'json' | |
class Client | |
def call(method, url, path=nil, headers={}, body=nil, timeout=60) | |
net_class = Object.const_get("Net::HTTP::#{constantize(method)}") | |
uri = URI("#{url}#{path}") |
require 'find' | |
biggest_file_by_ext = {} | |
Find.find('.') do |path| | |
next if File.directory?(path) | |
# get file info | |
ext = File.extname(path) | |
next unless ext.length > 0 | |
# get file size | |
size = File.size(path) |
Program: /Users/roberto/workspace/intellij_run_cmd | |
Arguments: "mix test $FilePathRelativeToProjectRoot$:$SelectionEndLine$" |
# download erlang 19: <http://erlang.org/download/otp_src_19.3.tar.gz> & untar | |
# download patch: <https://github.com/erlang/otp/commit/a64c4d806fa54848c35632114585ad82b98712e8.diff> | |
# apply patch | |
patch < a64c4d806fa54848c35632114585ad82b98712e8.diff | |
# ensure that openssl is installed in [email protected]/{version} | |
brew install openssl | |
# compile |
-module(list_bench). | |
-compile([export_all]). | |
main(Count) -> | |
Values = lists:foldl(fun(C, Acc) -> | |
[C, C, C, C, C, C, C, C, C, C | Acc] | |
end, [], lists:seq(1, Count)), | |
{TimeDict0, ResultDict} = timer:tc(?MODULE, count_dict, [Values]), |