Skip to content

Instantly share code, notes, and snippets.

View benoittgt's full-sized avatar
🏴

Benoit Tigeot benoittgt

🏴
View GitHub Profile
def self.checkout_max_connections(role:)
threads = []
before = nil
after = nil
pool_size = nil
base_connection_class.connected_to(role: role) do
before = connection_pool.stat
pool_size = connection_pool.size
end
pool_size.times do
@benoittgt
benoittgt / why_index_not_used.sql
Created January 6, 2023 16:29
Why index "index_events_on_project_id_kind_emitted_at" is not used?
DROP TABLE IF EXISTS events;
CREATE table events (
id serial PRIMARY KEY,
project_id BIGINT NOT NULL,
kind TEXT NOT NULL,
emitted_at TIMESTAMP NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
);
@benoittgt
benoittgt / faster_untappd_reviews.js
Created December 16, 2022 18:10
Faster Untappd review
document.querySelectorAll("a[href^='/admin/propose_edits']").forEach((link) => window.open(link, '_blank'))
@benoittgt
benoittgt / default_url_options.rb
Created August 11, 2022 13:39
Why default_url_options is not working?
# frozen_string_literal: true
require "bundler/inline"
require "json"
gemfile(true) do
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
@benoittgt
benoittgt / file.vim
Last active April 6, 2024 10:28
iamaputsemojidebugger
function! IAmAPutsEmojiDebugger()
ruby <<EOS
separator = rand(0x1F601..0x1F64F).chr('UTF-8')
VIM::command("normal! oputs '#{separator}' * (`tput cols`.to_i / 2)")
VIM::command('normal! oputs "#{__FILE__}:#{__LINE__}"')
VIM::command("normal! oputs '#{separator}' * (`tput cols`.to_i / 2)")
EOS
--- Setup
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";
DROP TABLE IF EXISTS planner_checksums CASCADE;
CREATE TABLE IF NOT EXISTS planner_checksums (
identifiers_checksum uuid,
attributes_checksum uuid,
version INT
);
CREATE INDEX planner_checksums_idx ON planner_checksums(identifiers_checksum);
puts Process.pid
_, w = IO.pipe
(0..).each do |n|
$stderr.puts "About to write 1KB of data into the pipe, written so far #{n * 1024}"
sleep 0.1
p w.write(Random.new.bytes(1024))
end
# lsof -n -P -r1 -c ruby | grep -e 'PIP' -e '===' -e 'COMMAND'

When we raise a ActiveRecord::PreparedStatementCacheExpired we don't know which query raise the exception. It can be tricky to find it when you don't have database logs. I would like to add a message to ActiveRecord::PreparedStatementCacheExpired with the STATEMENT.

In Postgresql:

DROP TABLE IF EXISTS abc CASCADE; 
DEALLOCATE FOO;
CREATE TABLE abc(i INT);
PREPARE FOO AS SELECT * FROM abc;
ALTER TABLE abc ADD COLUMN u INT;
# start FactoryBot id sequence at a different number. Naive approach.
# other idea https://github.com/thoughtbot/factory_bot/issues/350#issuecomment-14475441
FactoryBot.define do
factory :app do
sequence(:id) { |n| 1.to_s.ljust(self.instance.class.name.size, "0").to_i + n }
end
end
@benoittgt
benoittgt / totp_collision.rb
Created April 1, 2021 11:49
Test TOTP collision
# frozen_string_literal: true
require "bundler/inline"
gemfile(true) do
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem "rotp"