gvpack -u board.gv map.gv annotations.gv | neato -n -Tsvg > map.svg
echo "digraph {$( cat board.gv annotations.gv <(gvmap -e map.gv) | egrep -v "digraph|^}$")}" | neato -n -Tsvg > withgvmap.svg
| // Stages of evolution | |
| package main | |
| import ( | |
| "image/color" | |
| "log" | |
| "math" | |
| "os" | |
| "golang.org/x/image/font/opentype" |
| // https://blog.gardeviance.org/2014/07/a-quick-route-to-building-strategy.html | |
| package main | |
| import ( | |
| "html/template" | |
| "math/rand" | |
| "os" | |
| "time" | |
| ) |
| \version "2.22.2" | |
| \header { | |
| title = "Sally" | |
| composer = "Vasco Rossi" | |
| } | |
| harmonies = \chordmode { | |
| d2 d:maj7 | | |
| d1:7 | |
| package cmd | |
| import ( | |
| "encoding/json" | |
| "errors" | |
| "fmt" | |
| "net/http" | |
| ) | |
| type TimeTraveler struct { |
| package main | |
| import ( | |
| "log" | |
| "net/http" | |
| "net/url" | |
| "os" | |
| "path/filepath" | |
| "strings" |
| package main | |
| import ( | |
| "bytes" | |
| "encoding/json" | |
| "fmt" | |
| "log" | |
| "cuelang.org/go/cue" | |
| "cuelang.org/go/cue/load" |
| package main | |
| import ( | |
| "encoding/json" | |
| "log" | |
| "reflect" | |
| "testing" | |
| "time" | |
| "cuelang.org/go/cue" |