Skip to content

Instantly share code, notes, and snippets.

View skatkov's full-sized avatar
🏠
Working from home

Stanislav (Stas) Katkov skatkov

🏠
Working from home
View GitHub Profile
@skatkov
skatkov / fix-extlz4.sh
Created May 25, 2025 14:40
Fix exltz4 gem installation
#!/bin/bash
set -e
echo "Simple comprehensive fix for extlz4 gem installation..."
# Create temporary directory
TEMP_DIR=$(mktemp -d)
cd "$TEMP_DIR"
echo "Downloading extlz4 gem..."
@skatkov
skatkov / method_call_detection.rb
Created May 20, 2025 09:53
Method detection code
# Raises an error when method is called, unless it was called by known caller.
#
# In your class:
#
# include MethodCallDetection
# detect_method_calls_of :method_to_detect do |trace|
# next true if trace[0].match?('path/of/direct_call.rb:123')
# next true if trace.any? { _1.match?('path/of/call_somewhere.rb') }
# end
module MethodCallDetection
@skatkov
skatkov / settings.json
Last active April 20, 2025 17:05
zed.settings.json
{
"ui_font_family": "FiraCode Nerd Font Mono",
"buffer_font_family": "FiraCode Nerd Font Mono",
"theme": {
"mode": "system",
"light": "Alabaster",
"dark": "One Dark"
},
"lsp": {
"golangci-lint": {
@skatkov
skatkov / choosy
Last active June 7, 2025 21:47 — forked from cesarolea/choosy
Open browser based off of certain rules (like choosy for macOS)
#!/bin/bash
URL=$1
DOMAIN=$(echo "$URL" | awk -F[/:] '{print $4}')
# Read the list of domains from the file
DOMAIN_LIST=$(cat /home/sk/.config/url-list.txt)
# Check if the domain is in the list
if echo "$DOMAIN_LIST" | grep -q "$DOMAIN"; then
@skatkov
skatkov / pull_request_template.md
Created September 14, 2024 21:15
Pull Requst Template

What

Replace this with a description of the changes that you are making. To help reviewers easily understand the changes, please add before/after screenshots or a short demo video recording of the feature/bugfix here.

Why

Replace this with a reason for the changes you are making.

Checklist

@skatkov
skatkov / create_pr.sh
Last active September 14, 2024 21:17 — forked from slavingia/create_pr.sh
Create a (draft) pull request using GitHub CLI
#!/bin/bash
# Create a (draft) pull request using GitHub CLI.
# It assigns the PR to the current user, fills in the title from the first commit,
# and uses the PR template file for the description.
set -euo pipefail
# Colors for output
RED='\033[0;31m'
@skatkov
skatkov / class_load_detector.rb
Created June 22, 2024 22:46
Detect when class was loaded
loader.on_load("MyDynamicClass") do |klass, _abspath|
puts "MyDynamicClass was loaded and now we can do stuff with it"
klass.prepend(MyFix)
end
@skatkov
skatkov / forever.sh
Created November 28, 2023 10:48
run tests forever (until they fail)
while bundle exec rake test; do :; done
@skatkov
skatkov / spellcheck.yml
Created May 25, 2023 21:36
Spell Checking with codespell and misspell
name: Spell Checking
on: [pull_request]
jobs:
codespell:
name: Check spelling with codespell
runs-on: ubuntu-latest
strategy:
matrix:
@skatkov
skatkov / application_job.rb
Created May 11, 2023 13:54
Store sample of sql when ActiveRecord::QueryCanceled occured
class ApplicationJob < ActiveJob::Base
include ActiveSupport::Rescuable
# PG::QueryCanceled will be wrapped with ActiveRecord::QueryCanceled errors and it's a direct
# descendant of ActiveRecord::StatementInvalid error.
rescue_from ActiveRecord::StatementInvalid do |exception|
# It's hard to know, on which queries we're seeing statement timeouts -- so we are making this explicit in AppSignal error.
Appsignal::Transaction.current.set_sample_data("custom_data", sql_statement: exception.sql)
raise exception
end