A Guide to the Modern Development Stack
By Alven Diaz
Intro goes here.
var number = { | |
primes: [], | |
computeSieve: function(max) { | |
var composites = [], primes = []; | |
for ( var composite = 2; composite < max; composite++ ) { | |
this.computeComposite(primes, composites, composite, max); | |
} | |
return primes; |
defaults write com.apple.dock expose-animation-duration -float 0.1 && killall Dock |
JavaScript
Wordlist ver 0.732 - EXPECT INCOMPATIBLE CHANGES; | |
acrobat africa alaska albert albino album | |
alcohol alex alpha amadeus amanda amazon | |
america analog animal antenna antonio apollo | |
april aroma artist aspirin athlete atlas | |
banana bandit banjo bikini bingo bonus | |
camera canada carbon casino catalog cinema | |
citizen cobra comet compact complex context | |
credit critic crystal culture david delta | |
dialog diploma doctor domino dragon drama |
import random | |
def flip(): | |
result = random.randrange(2) | |
if result == 0: | |
print "Heads" | |
else: | |
print "Tails" |
call pathogen#infect() | |
let &t_Co=256 | |
set history=700 | |
set laststatus=2 | |
filetype plugin on | |
filetype indent on |
execute pathogen#infect() | |
filetype plugin on | |
filetype indent on | |
let mapleader = "," | |
set autoread | |
set nocompatible | |
set visualbell |
URL: https://coderwall.com/p/euwpig/a-better-git-log | |
So, are you tired of this old and bored git log screen? | |
Picture | |
How about this one, instead? | |
Picture |