Skip to content

Instantly share code, notes, and snippets.

<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 {
@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"
}