Skip to content

Instantly share code, notes, and snippets.

@vanzaj
Created October 13, 2017 02:54
Show Gist options
  • Save vanzaj/91698e59a2d649e5167b38317d3be8b1 to your computer and use it in GitHub Desktop.
Save vanzaj/91698e59a2d649e5167b38317d3be8b1 to your computer and use it in GitHub Desktop.
OFS topics viz
digraph G {
rankdir=LR;
OFS [shape=box];
HW [shape=box];
Coding [shape=box];
AltEdu [shape=box];
edu_trends [shape=box, label="Edu\nTrends"];
current_state [shape=box, label="Current\nState"];
OFS -> HW;
OFS -> Coding;
OFS -> AltEdu;
OFS -> edu_trends;
OFS -> current_state;
HW -> BYOD;
HW -> Shop;
Coding -> Students;
Coding -> Teachers;
Students -> "ES/MS";
Students -> HS;
Teachers -> "CS\nMath\nDesign";
Teachers -> "Science\nHumanities\nArt";
AltEdu -> "Mixed\nages";
AltEdu -> "Unstructred\nTime";
AltEdu -> "School\ndecisions";
AltEdu -> "Volunteer\nTeaching";
edu_trends -> Personalized;
edu_trends -> "Micro-assessment";
current_state -> "Future vision";
current_state -> "Biggest Risks";
current_state -> Experiments;
}
// dot -Tpdf ofs.dot -o ofs.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment