brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
:+1: | |
:-1: | |
:airplane: | |
:art: | |
:bear: | |
:beer: | |
:bike: | |
:bomb: | |
:book: | |
:bulb: |
/** | |
* Return a timestamp with the format "m/d/yy h:MM:ss TT" | |
* @type {Date} | |
*/ | |
function timeStamp() { | |
// Create a date object with the current time | |
var now = new Date(); | |
// Create an array with the current month, day and time |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
(function(){ | |
setInterval(function(){ | |
var e = $('div#lightbox-footer-right > a'); | |
if(typeof e == 'object'){ | |
e.click(); | |
} | |
}, 10 * 1000); |
(function() { | |
var CSSCriticalPath = function(w, d, opts) { | |
var opt = opts || {}; | |
var css = {}; | |
var pushCSS = function(r) { | |
if(!!css[r.selectorText] === false) css[r.selectorText] = {}; | |
var styles = r.style.cssText.split(/;(?![A-Za-z0-9])/); | |
for(var i = 0; i < styles.length; i++) { | |
if(!!styles[i] === false) continue; | |
var pair = styles[i].split(": "); |
set nocompatible " Disable vi-compatibility | |
set t_Co=256 | |
colorscheme xoria256 | |
set guifont=menlo\ for\ powerline:h16 | |
set guioptions-=T " Removes top toolbar | |
set guioptions-=r " Removes right hand scroll bar | |
set go-=L " Removes left hand scroll bar | |
set linespace=15 |
Beautify | |
Brackets Color Palette | |
Brackets Git | |
Brackets Print Margin | |
Brackets Sort Text | |
Code Highlighter Switcher | |
colorHints | |
CSScomb Brackets plugin | |
Disable Autoclose Tags | |
EditorConfig |
/* Check if it is april fools day */ | |
var aprilFools = { | |
month: 3, | |
date: 1 | |
} | |
function isItAprilFoolDay() { | |
var now = new Date(); | |
return (now.getMonth() == aprilFools.month && now.getDate() == aprilFools.date); | |
} |
DB_HOST=mysql | |
DB_DATABASE=homestead | |
DB_USERNAME=homestead | |
DB_PASSWORD=secret |