Skip to content

Instantly share code, notes, and snippets.

View mathieugagne's full-sized avatar

Mathieu Gagné mathieugagne

View GitHub Profile
@mathieugagne
mathieugagne / colors.rb
Created February 21, 2014 19:28 — forked from nhocki/colors.rb
module Colors
def colorize(text, color_code)
"\033[#{color_code}m#{text}\033[0m"
end
{
:black => 30,
:red => 31,
:green => 32,
:yellow => 33,
div.loading {width:200px; height:200px; position:relative; float:left; margin:0 10px;}
div.one {background:#000;}
div.two {background:#09c;}
div.loading:after {display:block; content:"";
border-radius:2px;
height:2px; width:2px;
position:absolute;
margin:auto; left:0; top:0; right:0; bottom:0;
box-shadow:
@mathieugagne
mathieugagne / calc_v1.rb
Created April 22, 2014 17:12
Fluent Calculator
class Calc
DIGITS = [:zero, :one, :two, :three, :four, :five, :six, :seven, :eight, :nine]
def method_missing method
if DIGITS.include?(method)
DIGITS.index(method)
else
super
end
end
def main
remove_jbuilder
end
def remove_jbuilder
gemfile_lines =
"# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder\n" +
"gem 'jbuilder', '~> 2.0'\n"
gsub_file 'Gemfile', gemfile_lines, ''
@mathieugagne
mathieugagne / _sortable_header
Created April 30, 2014 00:36
Sortable Headers
3 files to add sorting to table headers.
/*==================================================
= Bootstrap 3 Media Queries =
==================================================*/
/*========== Mobile First Method ==========*/
/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
}
@mathieugagne
mathieugagne / amd-driver
Last active August 29, 2015 14:01
Open GL driver installation for ATI Radeon HD 7750
$ sudo sh /usr/share/ati/fglrx-uninstall.sh
$ sudo apt-get remove --purge fglrx fglrx_* fglrx-amdcccle* fglrx-dev*
$ sudo rm /etc/X11/xorg.conf
$ sudo apt-get install --reinstall libgl1-mesa-glx:i386 libgl1-mesa-dri:i386 xserver-xorg-core
$ sudo dpkg-reconfigure xserver-xorg
$ sudo reboot
$ mkdir ~/catalyst12.4/
$ cd ~/catalyst12.4/
Download the appropriate driver for your machine here from the AMD/ATI Website and move it in ~/catalyst12.4/
@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
@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