Skip to content

Instantly share code, notes, and snippets.

View chilijung's full-sized avatar
👋
Focusing

Howard Chi chilijung

👋
Focusing
View GitHub Profile
@chilijung
chilijung / .gitignore
Last active August 29, 2015 13:59
twTown1982 in map
*.old
twVote1982.topo.json
@chilijung
chilijung / README.md
Last active August 29, 2015 13:59
Map in d3.js
@chilijung
chilijung / gist:7078187
Last active December 26, 2015 02:19
git alias in command
alias ga='git add -A'
alias gp='git push'
alias gl='git log'
alias gs='git status'
alias gd='git diff'
alias gm='git commit -m'
alias gma='git commit -am'
alias gb='git branch'
alias gc='git checkout'
alias gra='git remote add'
@chilijung
chilijung / detect.js
Created April 27, 2013 11:23
detect IE in js
(function ($) {
"use strict";
// Detecting IE
var oldIE;
if ($('html').is('.ie6, .ie7, .ie8')) {
oldIE = true;
}
if (oldIE) {