Skip to content

Instantly share code, notes, and snippets.

@Zaidos
Zaidos / prime.js
Last active December 19, 2015 13:39
Prime Number Utilities
var number = {
primes: [],
computeSieve: function(max) {
var composites = [], primes = [];
for ( var composite = 2; composite < max; composite++ ) {
this.computeComposite(primes, composites, composite, max);
}
return primes;
@Zaidos
Zaidos / ToC.md
Last active January 2, 2016 06:29
Open Source for the .NET Developer

Open Source for the .NET Developer

A Guide to the Modern Development Stack

By Alven Diaz

Introduction

Intro goes here.

@Zaidos
Zaidos / Expose
Last active August 29, 2015 13:58
Faster Expose and Mission Control Animations
defaults write com.apple.dock expose-animation-duration -float 0.1 && killall Dock
@Zaidos
Zaidos / Ideas.md
Last active August 29, 2015 13:58
Sketch Ideas
  • Cup of coffee
  • Skyline
  • Headphones
  • Hot air balloons
  • Rainy day
  • Lake / Cabin
  • Airplanes
  • Planets
  • Table with Chairs
  • Bicyclist / Motorcycle
@Zaidos
Zaidos / JavaScript.md
Last active August 29, 2015 14:00
Resources

JavaScript

@Zaidos
Zaidos / List.txt
Created July 9, 2014 17:50
Tirosh’s mnemonic word list
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
@Zaidos
Zaidos / flip.py
Last active August 29, 2015 14:07
Python Coin Flip
import random
def flip():
result = random.randrange(2)
if result == 0:
print "Heads"
else:
print "Tails"
@Zaidos
Zaidos / .vimrc
Created March 23, 2015 20:26
VIM Config
call pathogen#infect()
let &t_Co=256
set history=700
set laststatus=2
filetype plugin on
filetype indent on
@Zaidos
Zaidos / .vimrc
Last active December 23, 2017 08:01
vimrc dotfile
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