Skip to content

Instantly share code, notes, and snippets.

View mathieugagne's full-sized avatar

Mathieu Gagné mathieugagne

View GitHub Profile
@mathieugagne
mathieugagne / Gemfile
Last active December 29, 2015 17:58 — forked from pcreux/Gemfile
Rails + Unicorn + Heroku
group :production do
gem 'unicorn'
# Enable gzip compression on heroku, but don't compress images.
gem 'heroku-deflater'
# Heroku injects it if it's not in there already
gem 'rails_12factor'
end
#!/usr/bin/ruby1.9.1 -Kw
# -*- coding: utf-8 -*-
class Edge
attr_accessor :src, :dst, :length
def initialize(src, dst, length = 1)
@src = src
@dst = dst
@length = length
Source: http://stackoverflow.com/a/14775172/2033014
Step 1
Create the file /usr/share/applications/sublime-handler.desktop
[Desktop Entry]
Name=Sublime Text 2 URL Handler
GenericName=Text Editor
Comment=Handle URL Scheme txmt://
@mathieugagne
mathieugagne / .bash_aliases
Last active December 18, 2015 00:39
.bash_aliases
# Rspec to keep color option
alias spec='spec --color --format specdoc'
# Rails server
alias railss='rails s thin --debugger'
alias railsss='sublime -a . ; rails s thin --debugger'
alias migrate="rake db:migrate && rake db:migrate RAILS_ENV=test"
alias hardreset="rake db:drop && rake db:migrate && rake db:seed && rake db:test:prepare"
# bundle
[user]
name = Mathieu Gagné
email = mathieu@motioneleven.com
[diff]
[color]
ui = auto
[alias]
st = status
ci = commit
co = checkout
@mathieugagne
mathieugagne / spawn-fcgi
Created March 13, 2013 15:34
/etc/init.d/spawn-fcgi
#!/bin/bash
### BEGIN INIT INFO
# Provides: spawn-fcgi
# Required-Start: $all
# Required-Stop: $all
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: starts FastCGI for PHP
# Description: starts FastCGI for PHP using start-stop-daemon