Skip to content

Instantly share code, notes, and snippets.

View 15Dkatz's full-sized avatar
👨‍🍳
Cooking up a course

David Katz 15Dkatz

👨‍🍳
Cooking up a course
View GitHub Profile
[
{
"name": "San Francisco",
"shops" : [
{
"name": "Tpumps",
"address": "1916 Irving St, San Francisco, CA 94122",
"menu": [
{
"name": "flavors",
@15Dkatz
15Dkatz / .block
Created February 3, 2017 22:21
Letter Count Bar Chart (d3v4)
license: mit
@15Dkatz
15Dkatz / .block
Created February 3, 2017 22:22
Letter Count Bar Chart (d3v4)
license: mit
@15Dkatz
15Dkatz / package.json
Last active February 4, 2017 19:59
package.json for webpack-es6-boilerplate
{
"name": "es6",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"start": "webpack-dev-server"
},
"babel": {
@15Dkatz
15Dkatz / index.js
Last active February 4, 2017 20:08
React boilerplate
import React, { Component } from 'react';
import ReactDOM from 'react-dom';
class App extends Component {
render() {
return (
<div>Hello, world from React and Webpack!</div>
)
}
}
@15Dkatz
15Dkatz / index.html
Created February 4, 2017 20:25
bundle/index.html for webpack-es6-boilerplate
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<script src="bundle.js"></script>
</body>
</html>
@15Dkatz
15Dkatz / .block
Last active February 8, 2017 22:35
Multi-Series Line Chart
license: gpl-3.0
@15Dkatz
15Dkatz / .block
Last active February 11, 2017 00:36
Lab3 - Multi-Series Line Chart
license: gpl-3.0
@15Dkatz
15Dkatz / .block
Created February 25, 2017 13:32
Parallel Coordinates
license: gpl-3.0
@15Dkatz
15Dkatz / .block
Last active February 25, 2017 13:34
Parallel Coordinates
license: gpl-3.0