<img src='https://g.gravizo.com/svg? @startuml; class Object << general >>; Object <|--- ArrayList; note top of Object : In java, every class\nextends this one.; note "This is a floating note" as N1; note "This note is connected\nto several objects." as N2; Object .. N2; N2 .. ArrayList; class Foo;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<body> | |
<script src="//d3js.org/d3.v4.min.js"></script> | |
<script src="http://viz-js.com/bower_components/viz.js/viz-lite.js"></script> | |
<script src="https://github.com/magjac/d3-graphviz/releases/download/v0.1.0/d3-graphviz.min.js"></script> | |
<div id="graph" style="text-align: center;"></div> | |
<script> | |
var graphviz = d3.select("#graph").graphviz() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Adapted from: https://gist.github.com/leedm777/923706741c8296869e7d | |
# | |
# Forwards SSH agent into a Docker container running in the active | |
# docker-machine | |
# | |
PROGNAME=$(basename $0) |