Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env ruby
# @see http://stackoverflow.com/a/11522507
if ARGV.empty?
$stdout.puts "Usage: cleanup.rb dump.sql table_a [table_b ...]"
else
args = ARGV.reverse
file = args.pop
output_file = "#{file.gsub(File.extname(file), '')}-cleanup.sql"
@areina
areina / emacs-email-setup.md
Created October 12, 2012 15:00
Manage your email in emacs with mu4e

Manage your gmail account in emacs with mu4e

There're a lot of combinations to manage your email with emacs, but this works for me. I've a backup and I can manage my daily email.

The stack:

  • emacs
  • offlineimap
  • mu
  • mu4e
;; only the first time:
;; $ sbcl
;; (ql:quickload "cffi")
---
(load "~/development/cl-libusb/package.lisp")
(in-package :cl-libusb)
installation in ubuntu 11.10
$ cd ~/sources
$ git clone https://github.com/djcb/mu.git
$ cd mu
$ sudo apt-get install libtool libgmime-2.4-dev libxapian-dev
$ autoreconf -i
$ configure
$ make
$ make install
@areina
areina / ubuntu-stumpwm
Created March 6, 2012 08:27
Ubuntu 11.10 Unity and Stumpwm
/usr/share/xsessions/gnome-stumpwm.desktop
[Desktop Entry]
Name=Stumpwm Unity
Comment=Tiling window manager
TryExec=/usr/bin/gnome-session
Exec=gnome-session --session=stumpwm
Type=XSession
@areina
areina / unifyrepotips
Created February 8, 2012 10:55
Pasos que s'han fet per unificar els repos d'ubiquo.
* Unificar els repos (tret de http://stackoverflow.com/questions/277029/combining-multiple-git-repositories)
Here's a solution I gave here:
First do a complete backup of your phd directory: I don't want to be held responsible for your losing years of hard work! ;-)
$ cp -r phd phd-backup
Move the content of phd/code to phd/code/code, and fix the history so that it looks like it has always been there (this uses git's filter-branch command):
$ cd phd/code
@areina
areina / ubiquo_in_jruby
Created February 16, 2010 10:16
Install ubiquo with jruby
install jdk and jre
install jruby with rvm
rvm install jruby -v 1.4.0
use jruby
rvm jruby
install rails
gem install rails -v 2.3.2
install columnize (ruby-debug needs it)
gem install columnize
install ruby-debug