Skip to content

Instantly share code, notes, and snippets.

@jasondavies
jasondavies / chunkParser.js
Last active October 11, 2015 04:27
Streaming CSV Parsing in D3
var d3 = require("../d3"), // Make sure this has this patch: https://github.com/mbostock/d3/pull/783
fs = require("fs");
var bufferSize = 1 << 20;
streamCSV("test.csv", row, done);
function row(d) {
console.log("this is a row", d);
}
@fat
fat / gist:3744369
Created September 18, 2012 17:10
all you probably really need
/*! normalize-all-you-really-need-tho.css v1.0.0 | MIT License */
html {
font-family: sans-serif; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
-ms-text-size-adjust: 100%; /* 2 */
}
body {
margin: 0;
<!doctype html>
<!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ -->
<html>
<head>
<title>iOS 8 web app</title>
<!-- CONFIGURATION -->