Skip to content

Instantly share code, notes, and snippets.

View pangloss's full-sized avatar
😃

Darrick Wiebe pangloss

😃
View GitHub Profile

Make it real

Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discussions around concrete examples, not handy-waving abstractions. Don't say you did something, provide a URL that proves it.

Ship it

Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.

Do it with style

@pangloss
pangloss / index.html
Created March 4, 2012 02:35 — forked from bunkat/index.html
Swimlane Chart using d3.js
<html>
<head>
<title>Swimlane using d3.js</title>
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.v2.js"></script>
<script type="text/javascript" src="randomData.js"></script>
<style>
.chart {
shape-rendering: crispEdges;
}
@pangloss
pangloss / pacer_loop_test.rb
Created July 20, 2011 22:24 — forked from pdlug/pacer_loop_test.rb
Pacer loop test
require 'bundler/setup'
require 'pacer'
require 'pacer-neo4j'
#graph = Pacer.tg
graph = Pacer.neo4j('/tmp/test-neo4j')
c1 = graph.create_vertex(name: 'Concept 1')
c2 = graph.create_vertex(name: 'Concept 2')
@pangloss
pangloss / pacer_loop_test.rb
Created July 20, 2011 16:49 — forked from pdlug/pacer_loop_test.rb
Pacer loop test
require 'bundler/setup'
require 'pacer'
graph = Pacer.tg
c1 = graph.create_vertex(name: 'Concept 1')
c2 = graph.create_vertex(name: 'Concept 2')
c2a = graph.create_vertex(name: 'Concept 2a')