Skip to content

Instantly share code, notes, and snippets.

@mengkuan
mengkuan / README.md
Created January 21, 2013 16:07 — forked from leucos/README.md

Deploying Ruby with Ansible

Define these variables somewhere and let it go :

  • ruby_current: the ruby version you want to deploy (e.g. "1.9.3-p374")
  • ruby_user: Under which account we want ruby to be installed (e.g. "myappuser"; "ruby" in this playbook)

Note : this playbook only works with '-i' in the sudo line since it requires the target user environment to be fully loaded

@justinwoo
justinwoo / fdata_bot.py
Last active December 10, 2015 10:59
moved to a repo due to inconvenience of gist layout: https://github.com/kimagure/framedata
#! /usr/bin/env python
# Justin Woo <[email protected]>
# ver: dev
# Usage:
# usage: chatbot.py [server] [nick] [channel]
# optional:
# -h, --help help
# required:
@chrisguitarguy
chrisguitarguy / dbal-nullable.php
Last active July 10, 2019 10:27
Just in case anyone was wondering how set allow a column to be nullable with Doctrine DBAL's Schema later.
<?php
use Doctrine\DBAL\Schema\Schema;
// assuming you're using composer...
$loader = require __DIR__ . '/vendor/autoload.php';
$schema = new Schema();
$users = $schema->createTable('users');
@mbemowski
mbemowski / ngGrid.js
Created September 17, 2012 13:49 — forked from dalcib/ngGrid.js
Angular Grid
/**
* Grid directive for angularJS, based on dalcib's Angular Grid https://gist.github.com/2630138
* It's events are more angular-style and it operates on special object NavigationVector. It allows
* to select a row and to add custom rows at the bottom (for example to notify, that there are no rows found)
* When creating NavigationVector object you should pass the scope in which it will be declared in order
* to properly bind $watch expressions. Thanks to this you will be able to update index, selected or even
* items properties and other properties will be updated to match the change you made.
*
* Example:
<table ng-grid="" width="100%">
@Mihailoff
Mihailoff / AnObj.php
Created September 11, 2012 18:17
PHP Anonymous Object
<?php
/**
* PHP Anonymous Object
*/
class AnObj
{
protected $methods = array();
public function __construct(array $options)
@witoldsz
witoldsz / TableModelSpec.js
Created March 10, 2012 23:25
Unit test for table model.
describe('table model', function() {
var hud, tableModel;
beforeEach(function(){
hud = jasmine.createSpyObj('hud', ['info']);
module('your-module-name', function($provide) {
$provide.value('hud', hud);
});
inject(function(tableModelFactory) {
@tzellman
tzellman / .gitconfig
Created March 1, 2012 09:45
Aliases in my .gitconfig
[alias]
wip = !"git add -A; git ls-files --deleted -z | xargs -0 git rm; git commit -m \"wip\""
unwip = !"git log -n 1 | grep -q -c wip && git reset HEAD~1"
rb = !"git wip;git rebase -i origin/master;git unwip"
pr = !"git fetch;git wip;git rebase --stat origin;git unwip;git heads"
head = !"git log -n1"
lost = !"git fsck | awk '/dangling commit/ {print $3}' | git show --format='SHA1: %C(yellow)%h%Creset %f' --stdin | awk '/SHA1/ {sub(\"SHA1: \", \"\"); print}'"
heads = !"git log origin/master.. --format='%Cred%h%Creset;%C(yellow)%an%Creset;%H;%Cblue%f%Creset' | git name-rev --stdin --always --name-only | column -t -s';'"
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative
fix = commit --amend -C HEAD
Base.TemplateContext = {};
Base.Views.Layout = Backbone.View.extend({
initialize: function() {
this.setViews(_.extend({}, this.views, this.options.views));
if (this.options.template) {
this.template = this.options.template;
}
this.templateContext = _.extend({}, Base.TemplateContext, this.templateContext);
@l1x
l1x / initial.sh
Created February 7, 2012 23:11
CentOS 6.2 x64
yum update -y
#services running after the default install
#btw who the fuck thinks that anybody need these?!
#[root@centos62 ~]# chkconfig | egrep ':on' | sed s-^-#-
#auditd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
#fcoe 0:off 1:off 2:on 3:on 4:on 5:on 6:off
#ip6tables 0:off 1:off 2:on 3:on 4:on 5:on 6:off
#iptables 0:off 1:off 2:on 3:on 4:on 5:on 6:off
#iscsi 0:off 1:off 2:off 3:on 4:on 5:on 6:off
@v1nc3ntlaw
v1nc3ntlaw / rbenv-install-system-wide.sh
Last active July 26, 2022 01:08
rbenv install ruby 1.9.3-p448 on Debian 6 Squeeze
# Update, upgrade and install development tools:
apt-get update
apt-get -y upgrade
apt-get -y install build-essential git-core curl libssl-dev \
libreadline5 libreadline5-dev \
zlib1g zlib1g-dev \
libmysqlclient-dev \
libcurl4-openssl-dev \
libxslt-dev libxml2-dev