— Draft —
Link for sharing: https://w3id.org/knowledge-space/
You might sometimes ask yourself questions like this:
— Draft —
Link for sharing: https://w3id.org/knowledge-space/
You might sometimes ask yourself questions like this:
| #!/usr/bin/env bash | |
| # based on http://chiu01.blogspot.com/2012/04/git-tip-using-graphviz-to-display.html | |
| # Use: ./GraphGit.sh [FromCommitish] [ToCommitish] | |
| echo 'digraph "git" {' > graph.dot | |
| git log --pretty='format: %h [label="%h\n%an <%ae>\n%ai\n%s" shape=box]' $1..$2 | perl -p -e 's/([0-9a-f]{7})/"\1"/' >> graph.dot | |
| git log --pretty='format: %h -> { %p }' $1..$2 | perl -p -e 's/([0-9a-f]{7})/"\1"/g' >> graph.dot | |
| echo '}' >> graph.dot | |
| dot -Tpng graph.dot -o graph.png |
| :plain | |
| [ | |
| - @movies.each do |movie| | |
| :plain | |
| { | |
| "name":"#{movie.name}", | |
| "description":"#{j(movie.description)}" | |
| }, | |
| ] |