Skip to content

Instantly share code, notes, and snippets.

View jiv-e's full-sized avatar

Juho Viitasalo jiv-e

View GitHub Profile
@jiv-e
jiv-e / .bash_aliases
Last active December 22, 2015 02:29
Simple bash aliases for faster cd:ing up the directory tree
alias .='cd ..'
alias ..='cd ../..'
alias ...='cd ../../..'
<?php
date_default_timezone_set('Europe/London'); // Set this to your local timezone - http://www.php.net/manual/en/timezones.php
/**
* The root directory where the repos live.
*
* @var string
*/
$root_dir = '/your/root/dir/';