Skip to content

Instantly share code, notes, and snippets.

@afomi
afomi / gist:b85a6e83240ebe467912
Last active August 29, 2015 14:10
EMail as Interface
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
"from" -> "email"
"to" -> "email"
"subject" -> "email"
"body" -> "email"
"time" -> "email"
"email" -> "server"
"server" -> "service"
"service" -> "trello"
@afomi
afomi / developing-software-graphviz
Last active August 29, 2015 14:10
developing-software-graphviz
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
"make card" ->
"estimate card" ->
"pick up card (started)" ->
"commit something" ->
"tests pass locally" ->
"push to github" ->
"open WIP pull request" ->
"semaphore build for 10+ ????????" ->
@afomi
afomi / gist:3e7042f6782c94b027bf
Last active August 29, 2015 14:11
Tahi Data Model - 2014-12-10
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
graph[overlap=false, splines=true]
"Affiliation" [shape=Mrecord, label="{Affiliation|id :integer\luser_id :integer\lname :string\lstart_date :date\lend_date :date\lcreated_at :datetime\lupdated_at :datetime\lemail :string\l}"]
"ApiKey" [shape=Mrecord, label="{ApiKey|id :integer\laccess_token :string\lcreated_at :datetime\lupdated_at :datetime\l}"]
"Attachment" [shape=Mrecord, label="{Attachment|id :integer\lfile :string\lattachable_id :integer\lattachable_type :string\lcreated_at :datetime\lupdated_at :datetime\ltitle :string\lcaption :string\lstatus :string\l}"]
"Author" [shape=Mrecord, label="{Author|id :integer\lfirst_name :string\llast_name :string\lcreated_at :datetime\lupdated_at :datetime\lposition :integer\lpaper_id :integer\lactable_id :integer\lactable_type :string\l}"]
"Comment" [shape=Mrecord, label="{Comment|id :integer\lbody :text\lcreated_at :datetime\lupdated_at :datetime\lcommenter_id :integer\ltask_id :integer\lentities :j
@afomi
afomi / gist:d08b046ecbb9dfbca546
Last active August 29, 2015 14:11
Tahi Environment
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
graph [compound=true];
bugsnag -> "pivotal tracker" [label="processing user feedback and data", ltail="cluster3"];
master -> "feature branch"
"pivotal tracker" -> "feature branch"
"feature branch" -> master
master -> release [label="git branch release-branch"];
@afomi
afomi / tuio.md
Last active August 29, 2015 14:12
TUIO Things

TUIO

Prerequisites

  • ensure Java is installed
  • download TuioSimulator and unzip it
  • using the command line, cd into the TuioSimulator directory, then run:
java -jar TuioSimulator.jar 
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
"reactivision" -> "tuio events"
"tuio events" -> "stream"
"stream" -> "client"
"client" -> ruby
"client" -> javascript
}
</script>
@afomi
afomi / holcratic_structure.html
Last active August 29, 2015 14:12
Holcratic Structure
<p>
Holcratic Structure
<br>
Date: 26 Jan 2014
</p>
<p>
Description: Organizational needs into Roles
</p>
@afomi
afomi / image-lifecycle.html
Last active August 29, 2015 14:12
Image Lifecycle
<h3>
Image Lifecycle
</h3>
<p>
Description: noodling out my own workflow around images
</p>
<p>
Date: 23 Oct 2014
@afomi
afomi / blog_objects
Last active August 29, 2015 14:12
Graphviz: Blog Objects
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
project -> project
project -> entry
entry -> image
entry -> link
entry -> place
}
</script>
@afomi
afomi / modeling_gtd
Last active August 29, 2015 14:12
Graphviz: Modeling GTD
<h1>
Personal Workflow
</h1>
<p>
Charting different aspects of my personal workflow; from Idea through Completion, and beyond. Then, repeat.
</p>
<script type="text/vnd.graphviz" id="graphviz">
digraph G {