Skip to content

Instantly share code, notes, and snippets.

View cbrunnkvist's full-sized avatar

Conny Brunnkvist cbrunnkvist

View GitHub Profile
@cbrunnkvist
cbrunnkvist / unholy_sqlite_reorder.sh
Created October 3, 2011 11:15
Change row sequence of an SQLite table and reset/regenerate id (PK) column accordingly
#!/bin/sh
set -e
if [ ! -w "$1" ] ; then
echo "Usage: $0 [sqlite.db]"
exit 1
fi
sqlite3 -echo -bail $1 << __EOF
BEGIN TRANSACTION;
@cbrunnkvist
cbrunnkvist / sample-progress-indicator.py
Created September 21, 2011 09:09
Simplest fake progress indicator
#!/usr/bin/env python
# Update some incrementing counter to give feedback about progress
import time
import sys
try:
for i in range(101):
print i,
sys.stdout.flush()
time.sleep(0.01)
@cbrunnkvist
cbrunnkvist / upgrade_vbox_guest_additions.sh
Created September 13, 2011 10:09
Upgrading VirtualBox Guest Additions inside a running Vagrant box
#!/bin/sh
# For simplicity's sake I dump this file in the project folder and execute
# it from the VM straight out of /vagrant -> could run as part of box/basebox buildout.
alias apt-get="sudo apt-get"
alias mount="sudo mount"
alias umount="sudo umount"
# Oh. Start by making .vbox_version contain the desired version string.
VBOX_VERSION=$(cat /home/vagrant/.vbox_version)
From 636f9f7d31acf1ac75d7e5db4cf968c4ff376dc0 Mon Sep 17 00:00:00 2001
From: Conny Brunnkvist <[email protected]>
Date: Mon, 20 Jun 2011 18:43:51 +0100
Subject: [PATCH] Just a little wrapper script for maintenance tasks
---
all-apps-all-envs.sh | 15 +++++++++++++++
1 files changed, 15 insertions(+), 0 deletions(-)
create mode 100755 all-apps-all-envs.sh
@cbrunnkvist
cbrunnkvist / .bashrc
Created April 26, 2011 13:06
Make RVM work when installed outside (=not in) $HOME even if called from cron
export rvm_path=/psg/ruby/rvm
export rvm_scripts_path=$rvm_path/scripts
[[ -s "$rvm_scripts_path/rvm" ]] && . "$rvm_scripts_path/rvm" # using rvm 1.6.4
@cbrunnkvist
cbrunnkvist / mongrel_cluster_ctl.1_9.diff
Created November 16, 2010 19:37
mongrel_cluster-1.0.5/bin/mongrel_cluster_ctl Ruby 1.9(.2) compatibility patch
53c53
< when "start":
---
> when "start"
56c56
< when "stop":
---
> when "stop"
59c59
< when "restart":
@cbrunnkvist
cbrunnkvist / push-config-submodule.sh
Created November 8, 2010 17:24
Script for push & synch of updates to git submodule
#!/bin/sh
set -x
git pull
git submodule update
pushd config/private/
git stash
git checkout master
git pull
git stash pop
git add .
@cbrunnkvist
cbrunnkvist / my.cnf
Created October 19, 2010 10:47
#mysql Ver 14.14 Distrib 5.1.38, for apple-darwin9.5.0 (i386) using readline 5.1
[mysqld]
#Port number to use for connections.
port=3306
#### Values to lower while debugging timeout errors ####
#The number of seconds the server waits for activity on a connection before closing it
#wait_timeout=10
#The number of seconds the server waits for activity on an interactive connection before closing it.
#interactive_timeout=10
#The number of seconds the mysqld server is waiting for a connect packet before responding with 'Bad handshake'
@cbrunnkvist
cbrunnkvist / gist:602983
Created September 29, 2010 15:45
Rails ActiveRecord aware fork() wrapper
# Rails ActiveRecord aware fork() wrapper
$child_pids = []
def wait_for_child(pid=nil)
begin
pid, child_result = (pid.nil? ? Process.wait2 : Process.waitpid2(pid))
unless child_result.exitstatus.zero?
$child_pids.each {|child_pid| Process.kill('TERM', child_pid) rescue true}
raise "Child PID:#{pid} exited with status #{child_result.exitstatus} - batch aborting"
end
rescue Errno::ECHILD
@cbrunnkvist
cbrunnkvist / Adding-Bundler-compat-patches-for-Rails-2-3-8.patch
Created July 2, 2010 11:54
Adds bundler loader to Rails 2.3.x projects
From ce29c8fe3a51a4652c0942e4995bdebd0871dc06 Mon Sep 17 00:00:00 2001
From: Conny Brunnkvist <[email protected]>
Date: Tue, 22 Jun 2010 12:02:58 +0100
Subject: [PATCH] Adding Bundler-compat patches for Rails 2.3.8
---
config/boot.rb | 16 +++++++++++++++-
config/preinitializer.rb | 21 +++++++++++++++++++++
2 files changed, 36 insertions(+), 1 deletions(-)
create mode 100644 config/preinitializer.rb