Skip to content

Instantly share code, notes, and snippets.

View kjlape's full-sized avatar
🤝
nice to meet you

Kaleb Lape kjlape

🤝
nice to meet you
View GitHub Profile
@kjlape
kjlape / Dockerfile
Last active November 22, 2024 14:16
Self-Hosted Docker Registry with Kamal (as of version 2.2.2)
FROM registry:2
@kjlape
kjlape / Instructions.md
Last active October 23, 2024 14:17
A simple linter + pull request flow for GitHub Actions
  • Add lint.yml under .github/workflows/
  • Add the swiftlint stub under bin/
  • Don't forget to chmod +x bin/swiftlint
# neat one-liner to stick invalid records on top for instance if you're using fields_for to edit a nested collection of records
some_query.partition(&:invalid?).flatten
thing.audio.open do |file|
input = file.path
output = "#{file.path}.mp3"
filename = "#{thing.audio.filename}.mp3"
system("ffmpeg", "-i", input, output, exception: true)
thing.audio_mp3.attach(io: File.open(output), filename:, content_type: "audio/mpeg")
ensure
File.delete(output) if File.exist?(output)
end
@kjlape
kjlape / lint.yml
Last active April 6, 2023 16:12
GitHub action to create linter fix PRs against your PRs
name: lint
on:
pull_request:
push:
branches: [ master ]
jobs:
lint-js:
if: ${{ !startsWith(github.head_ref, 'dependabot/') }}
@kjlape
kjlape / net_http_follow_redirects.rb
Created March 21, 2023 19:45
Here's a little snippet that follows redirects up to a limit.
max_redirects = 3
# Follow redirects
response = max_redirects.times.lazy.filter_map {
puts "Requesting #{url}…"
response = Net::HTTP.get_response(URI(url))
case response
when Net::HTTPRedirection
url = response["location"]
nil
github_keys = accounts.map { |account|
Net::HTTP.get(URI("https://github.com/#{account}.keys"))
.lines(chomp: true)
.map { |line| "#{line} @#{account}" }
}.flatten
class RawQueryParam < SimpleDelegator
def to_query(key)
"#{key}=#{value}"
end
end
# …
whatever_url(@whatever, host: "bogus.dev", blah: RawQueryParam.new("{test}"))
# => "http://bogus.dev/whatever?blah={test}"
class WishlistFlowsTest < ActionDispatch::IntegrationTest
setup do
@builder = Builder.new
end
test "can make a wish" do
wisher = @builder.users(name: "George Wishington").create!
sign_in_as(wisher)
assert_changes "Wish.count" do
@kjlape
kjlape / seeders.rb
Last active December 11, 2021 02:20
module Seeders
class Base
def seed!(builder, findable_attributes, unstable_attributes = {})
builder.find_or_create_by!(findable_attributes) do |config|
config.assign_attributes(unstable_attributes)
end
end
end
class Builder