Skip to content

Instantly share code, notes, and snippets.

@afomi
afomi / gist:dfdb2e02cd8a246ac2d9
Created January 6, 2015 05:39
Graphviz: Rails Request Cycle
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
"browser" ->
"http_request" ->
"server" ->
"routes" ->
"controller" ->
"model" -> "controller"
"controller" -> "response"
"response" -> "view" -> "html"
@afomi
afomi / gist:c6c3534b735d6f2eca53
Created January 6, 2015 05:40
Graphviz: From Sales Leads and Product Strategy through Code Delivery in Agile Scrum Cycles
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
crm_salesforce -> backlog
backlog -> pivotal_trello_jira
roadmap -> backlog
backlog -> epics
epics -> stories
backlog -> features
backlog -> chores
backlog -> sprint
@afomi
afomi / gist:91f243d931f5db25b533
Created January 6, 2015 05:41
Graphviz: Preparing to Code
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
cd_to_a_project ->
open_sublime ->
open_github ->
rails_s ->
mongod
update_a_file_in_a_chrome_extension_repo ->
grunt_build ->
@afomi
afomi / gist:890dc055f334f9fe9068
Created January 6, 2015 05:42
Graphviz: Mapping Communication Patterns
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
send_a_link ->
user_clicks_on_link ->
page_opens ->
users_sees_page;
send_an_image_in_HipChat ->
users_sees_page;
}
@afomi
afomi / gist:2e57bc001587d39593d4
Created January 6, 2015 05:43
Graphviz: Make Features Earn their Place
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
"task manually performed outside a system" ->
"task processed well-defined outside the system" ->
"productized: partially automated inside the system" ->
"forced-behavior: how users bend a system to their will" ->
"productized: fully automated inside the system" ->
"forced-behavior2: how users bend a system to their will" ->
"preemptive intelligence"
}
@afomi
afomi / gist:3dc80442bd08738e179c
Created January 6, 2015 05:43
CPORD - The basics steps of GTD
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
collect ->
process ->
organize ->
review ->
do
}
</script>
@afomi
afomi / gist:9aa9633942c3c7c82e6f
Last active August 29, 2015 14:12
Graphviz: Noodling out my own workflow
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
compound=true;
idea -> paper
paper -> inbox
org_tools -> pivotal_tracker
org_tools -> textfiles
@afomi
afomi / gist:2ce351fcba2dd719d861
Created January 6, 2015 05:45
Graphviz: Tripartite Object Modeling
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
compound=true;
subgraph cluster_1 {
node [style=filled];
b0 -> b1 -> b2 -> b3;
label = "process #1";
color=blue;
@afomi
afomi / gist:d49dab7bc147a8d4406d
Created January 6, 2015 05:46
Graphviz: Design Process via Communicating Design
<script type="text/vnd.graphviz" id="graphviz">
digraph G {
"personas" ->
"content inventory & data model" ->
"workflows & sitemap" ->
"mockups" ->
"screen designs" ->
"working, tested software"
}
</script>
@afomi
afomi / gist:298acf782a5efd95ada3
Created January 6, 2015 05:47
Graphviz: Initial tests with Graphviz using viz.js
<h2>
Hello Graphviz World"
</h2>
<p>
Initial tests with Graphviz using viz.js
</p>
<script type="text/vnd.graphviz" id="graphviz">
digraph G {