This is all from http://bost.ocks.org/mike/map/ , with some of my own modification.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function ($) { | |
"use strict"; | |
// Detecting IE | |
var oldIE; | |
if ($('html').is('.ie6, .ie7, .ie8')) { | |
oldIE = true; | |
} | |
if (oldIE) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.old | |
twVote1982.topo.json |
This is a bar chart in d3.js
Tutorial original from: http://bost.ocks.org/mike/bar/2/
A basic bar chart in svg.
Playing with svg g tags.
tutoial original from http://tutorials.jenkov.com/svg/index.html
Shapes in svg
Paths in svg.
Marker in svg.
OlderNewer