Skip to content

Instantly share code, notes, and snippets.

@zv
Created December 7, 2014 06:00
Show Gist options
  • Save zv/be16fec67650844ce6fd to your computer and use it in GitHub Desktop.
Save zv/be16fec67650844ce6fd to your computer and use it in GitHub Desktop.
org-file

A Quick Review of Some Features I use in Org Mode

Graphics Packages

    +-----------+        +---------+  
    |  Hackers  |        |Warren   |                
    |           +<------>+Harding  +<---=---------+ 
    |    cRED   |        |  c707   |              | 
    +-----------+        +----+----+              | 
                              ^                   | 
                              |                   | 
                              |                   |
                              |                   |     
                              v                   v     
      +----------+       +----+--+--+      +-------+---+
      |  9/11    |       |          |      |           |
      |Cover-up  +<----->+ Fukushima+<---->+   Obama   +
      |   c707   |       |          |      |   c707    |
      +--+----+--+       |{d} cGRE  |      +------+----+
         ^    ^          +----------+             ^     
         |    |                                   |     
         |    +--------=--------------------------+     
         v                                              
+--------+--------+                                     
| The Tri-lateral |                                     
| Commission      |            -------- Concealed ---------  
| cBLU            |            --=----- Helped Plan ---=--  
+-----------------+
digraph finite_state_machine {
	rankdir=LR;
	size="8,5"
	node [shape = doublecircle]; LR_0 LR_3 LR_4 LR_8;
	node [shape = circle];
	LR_0 -> LR_2 [ label = "SS(B)" ];
	LR_0 -> LR_1 [ label = "SS(S)" ];
	LR_1 -> LR_3 [ label = "S($end)" ];
	LR_2 -> LR_6 [ label = "SS(b)" ];
	LR_2 -> LR_5 [ label = "SS(a)" ];
	LR_2 -> LR_4 [ label = "S(A)" ];
	LR_5 -> LR_7 [ label = "S(b)" ];
	LR_5 -> LR_5 [ label = "S(a)" ];
	LR_6 -> LR_6 [ label = "S(b)" ];
	LR_6 -> LR_5 [ label = "S(a)" ];
	LR_7 -> LR_8 [ label = "S(b)" ];
	LR_7 -> LR_5 [ label = "S(a)" ];
	LR_8 -> LR_6 [ label = "S(b)" ];
	LR_8 -> LR_5 [ label = "S(a)" ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment