Skip to content

Instantly share code, notes, and snippets.

View chadfurman's full-sized avatar

Chad Furman chadfurman

View GitHub Profile
https://media.giphy.com/media/FjfMN9MwuqvJe/giphy.gif - suspect is hatless, I repeat hatless
https://media.giphy.com/media/l0ExpaDR2IOTB2dAQ/giphy.gif - Dabbing mr. peanut
http://www.reactiongifs.com/r/trmp1.gif - Yeah Right Trump Faces
https://i.imgur.com/7XHSM7K.gif - Shitposting loudly
https://www.youtube.com/watch?v=DtRNg5uSKQ0 - fix it
http://i.imgur.com/GieYD.gif - well, hello there game changer
http://i.imgur.com/VF1p5XN.gif
https://i.imgur.com/eSVPDfw.gif - Parakeet explosion
https://media3.giphy.com/media/BWjTRoBsEKnII/giphy-downsized.gif - Top Men
https://i.imgur.com/MgtuAZQ.gif - Cold blooded
<?php
/*
Plugin Name: Shoestrap Custom Templates
Plugin URI: http://shoestrap.org
Description: This plugin replaces the default templates with our custom ones using the hooks provided by the <a href="http://shoestrap.org/downloads/shoestrap">Shoestrap</a> theme
Version: 1.00
Author: Aristeides Stathopoulos
Author URI: http://aristeides.com
*/
@dajoho
dajoho / phpcs
Created October 4, 2012 11:39
Install PHPCS OSX
sudo cp /private/etc/php.ini.default /private/etc/php.ini;
sudo php /usr/lib/php/install-pear-nozlib.phar;
pear config-set php_ini /private/etc/php.ini;
pecl config-set php_ini /private/etc/php.ini;
sudo pear upgrade-all;
sudo pear install PHP_CodeSniffer;
----
nano /private/etc/php.ini;
include_path Zeile einkommentieren & umändern in:
@sfate
sfate / vim-on-heroku.sh
Created June 7, 2012 14:39 — forked from naaman/vim-on-heroku.sh
vim on heroku
#!/usr/bin/env bash
curl https://s3.amazonaws.com/heroku-jvm-buildpack-vi/vim-7.3.tar.gz --output vim.tar.gz
mkdir vim && tar xzvf vim.tar.gz -C vim
export PATH=$PATH:/app/vim/bin