Skip to content

Instantly share code, notes, and snippets.

@tonyfast
Created February 20, 2015 15:57
Show Gist options
  • Select an option

  • Save tonyfast/048fe7eaf579769997b0 to your computer and use it in GitHub Desktop.

Select an option

Save tonyfast/048fe7eaf579769997b0 to your computer and use it in GitHub Desktop.
A Development Process for Liberating Immutable Research and Development
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/mermaid/0.3.3/mermaid.full.min.js"></script>
<h1>A Development Process for Liberating Immutable Research and Development</h1>
<div class="mermaid">
graph LR;
what((What are you gonna do?)) --> hack[Hack with your best tools];
hack --> look((What does my research look like?))
look --> localhost[Local web host];
localhost --> static;
localhost --> dynamic;
static --> Jekyll;
Jekyll -->shares((Share Static Content));
dynamic -->shared((Share Dynamic Content));
dynamic --- Flask;
dynamic --- Django;
dynamic --- Sinatra;
shares --> gh[Github Pages];
shared --> ngrok[ngrok Reverse Proxy];
gh --> Feedback;
ngrok --> Feedback;
mature --> mstatic[Static];
mature --> mdynamic[Dynamic];
Feedback --> mature((Mature?));
mstatic --> text;
text --- Github;
text --- other;
mstatic --> blob;
blob --- Dropbox;
blob --- Box;
blob --- SwiftStack;
mdynamic --> service;
service --- Heroku;
service --- AppEngine;
service --- AWS;
Feedback -->|Iterate with feedback| hack;
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment