Skip to content

Instantly share code, notes, and snippets.

View vkjdev's full-sized avatar

vkjdev vkjdev

View GitHub Profile
@vkjdev
vkjdev / README.md
Created July 25, 2016 18:25 — forked from KoGor/README.md
Marker animation along SVG <path> element with D3.js II

Marker animation along SVG "path" element with D3.js: animating "path" and marker movement synchronously.

@vkjdev
vkjdev / README.md
Created July 25, 2016 18:18 — forked from Mbrownshoes/README.md
My bike route to UofT.
@vkjdev
vkjdev / index.html
Created July 25, 2016 17:53 — forked from zross/index.html
Animate path on Leaflet map using D3 (Gimme!, Proletariat)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
<script src="http://d3js.org/d3.v3.min.js" type="text/javascript"></script>
<script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
<script src='https://api.tiles.mapbox.com/mapbox.js/v1.6.4/mapbox.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox.js/v1.6.4/mapbox.css' rel='stylesheet' />
@vkjdev
vkjdev / airbus_data.tsv
Created July 25, 2016 17:51 — forked from atmccann/airbus_data.tsv
Animated path multi-series line chart
date Airbus Boeing
2000-07-31 0 0
2000-08-31 -0.884 9.8912
2000-09-29 9.6685 32.1383
2000-10-31 32.5967 38.9245
2000-11-30 33.1492 41.4853
2000-12-29 30.7182 35.2113
2001-01-31 27.0718 19.8464
2001-02-28 24.3094 27.4264
2001-03-30 16.0773 14.1306
@vkjdev
vkjdev / .block
Created July 25, 2016 17:50 — forked from mbostock/.block
Point-Along-Path Interpolation
license: gpl-3.0
@vkjdev
vkjdev / README.md
Created July 25, 2016 17:47 — forked from KoGor/README.md
Marker animation along SVG <path> element with D3.js
@vkjdev
vkjdev / index.html
Created July 25, 2016 17:40 — forked from methodofaction/index.html
Animate path in D3
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<style type="text/css">
#line{
width: 700px;
margin: 20px 0;
height: 300px;
background: #eee;
@vkjdev
vkjdev / adbgr.sh
Created July 22, 2016 17:03 — forked from ruel/adbgr.sh
Script for building and running APK in android command line.
#!/bin/sh
# Version: 051613001
# This is used for debugging APKs. This command should be ran in the root directory of the project
# The name of the apk file is < ProjectName >-debug.apk and inside the bin directory
# Firstly, run ant debug
ant debug
@vkjdev
vkjdev / hello.go
Created July 19, 2016 22:43 — forked from dojiong/hello.go
gae http proxy
//GAE app的主体
package hello
import (
"appengine"
"appengine/urlfetch"
"bytes"
"encoding/gob"
"io"