Skip to content

Instantly share code, notes, and snippets.

View tobiashm's full-sized avatar

Tobias H. Michaelsen tobiashm

View GitHub Profile
# config/boot.rb
if ENV["MANUAL_GC"].to_i == 1
GC.disable
Thread.new {
while true
sleep 2
GC.enable
GC.start
GC.disable
end
@kaeff
kaeff / .bowerrc
Last active June 6, 2025 19:18
How to use Bower with the Asset Pipeline in Rails
{
"directory" : "vendor/assets/components"
}