Compare commits
16 commits
d2b27df4c9
...
d2f07fb757
Author | SHA1 | Date | |
---|---|---|---|
d2f07fb757 | |||
ad86fdf9f5 | |||
7dc85fb4c9 | |||
d8633c27a5 | |||
74f0cf8f42 | |||
9cd5d17a0a | |||
4428ed2a6b | |||
0af08d12b7 | |||
7c773dd588 | |||
b5274a3d3e | |||
e5c61c8d2e | |||
5cfd5dbb9b | |||
bcc7019b2c | |||
5aea61d7a4 | |||
fa9556338a | |||
bb42ba9af9 |
1 changed files with 179 additions and 75 deletions
254
index.gv
254
index.gv
|
@ -1,3 +1,6 @@
|
||||||
|
# ╭───────╮
|
||||||
|
# │ Graph │
|
||||||
|
# ╰───────╯
|
||||||
digraph "index" {
|
digraph "index" {
|
||||||
bgcolor="transparent"
|
bgcolor="transparent"
|
||||||
color="#C0C000"
|
color="#C0C000"
|
||||||
|
@ -6,12 +9,18 @@ fontname="DejaVu Sans"
|
||||||
penwidth="2"
|
penwidth="2"
|
||||||
rankdir="RL"
|
rankdir="RL"
|
||||||
|
|
||||||
|
# ╭───────┬──────╮
|
||||||
|
# │ Graph │ Edge │
|
||||||
|
# ╰───────┴──────╯
|
||||||
edge [
|
edge [
|
||||||
fontcolor="#FF4040"
|
fontcolor="#FF4040"
|
||||||
fontname="DejaVu Sans"
|
fontname="DejaVu Sans"
|
||||||
style="filled"
|
style="filled"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# ╭───────┬──────╮
|
||||||
|
# │ Graph │ Edge │
|
||||||
|
# ╰───────┴──────╯
|
||||||
node [
|
node [
|
||||||
color="#C0C0C0"
|
color="#C0C0C0"
|
||||||
fontcolor="#FFFFFF"
|
fontcolor="#FFFFFF"
|
||||||
|
@ -27,36 +36,64 @@ style="filled"
|
||||||
edge [color="#008000"]
|
edge [color="#008000"]
|
||||||
node [fillcolor="#408040"]
|
node [fillcolor="#408040"]
|
||||||
|
|
||||||
subgraph "cluster/dev" { label="Dev"
|
# ╭────────╮
|
||||||
"plan" [label="Plan"]
|
# │ DevOps │
|
||||||
"code" [label="Code"]
|
# ╰────────╯
|
||||||
"build" [label="Build"]
|
|
||||||
"test" [label="Test"]
|
subgraph "cluster/devops" { label="DevOps"
|
||||||
|
|
||||||
|
"devops/dev/plan" -> "devops/ops/release" [style="invis"]
|
||||||
|
"devops/dev/test" -> "devops/ops/monitor" [style="invis"]
|
||||||
|
|
||||||
|
# ╭────────┬─────╮
|
||||||
|
# │ DevOps │ Dev │
|
||||||
|
# ╰────────┴─────╯
|
||||||
|
|
||||||
|
subgraph "cluster/devops/dev" { label="Dev"
|
||||||
|
"devops/dev/plan" [label="Plan"]
|
||||||
|
"devops/dev/code" [label="Code"]
|
||||||
|
"devops/dev/build" [label="Build"]
|
||||||
|
"devops/dev/test" [label="Test"]
|
||||||
}
|
}
|
||||||
|
|
||||||
"plan" -> "code" -> "build" -> "test" -> {
|
"devops/dev/plan" -> "devops/dev/code" -> "devops/dev/build" -> "devops/dev/test" -> "devops/dev/plan"
|
||||||
"plan"
|
|
||||||
"release"
|
# ╭────────┬─────╮
|
||||||
|
# │ DevOps │ Ops │
|
||||||
|
# ╰────────┴─────╯
|
||||||
|
|
||||||
|
subgraph "cluster/devops/ops" { label="Ops"
|
||||||
|
"devops/ops/release" [label="Release"]
|
||||||
|
"devops/ops/deploy" [label="Deploy"]
|
||||||
|
"devops/ops/operate" [label="Operate"]
|
||||||
|
"devops/ops/monitor" [label="Monitor"]
|
||||||
}
|
}
|
||||||
|
|
||||||
subgraph "cluster/ops" { label="Ops"
|
"devops/ops/release" -> "devops/ops/deploy" -> "devops/ops/operate" -> "devops/ops/monitor" -> "devops/ops/deploy"
|
||||||
"release" [label="Release"]
|
|
||||||
"deploy" [label="Deploy"]
|
# ╭────────╮
|
||||||
"operate" [label="Operate"]
|
# │ DevOps │
|
||||||
"monitor" [label="Monitor"]
|
# ╰────────╯
|
||||||
}
|
|
||||||
|
"devops/dev/test" -> "devops/ops/release"
|
||||||
|
"devops/ops/monitor" -> "devops/dev/plan"
|
||||||
|
|
||||||
"release" -> "deploy" -> "operate" -> "monitor" -> {
|
|
||||||
"deploy"
|
|
||||||
"plan"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
edge [color="#FF0000"]
|
edge [color="#FF0000"]
|
||||||
node [fillcolor="#303030"]
|
node [fillcolor="#303030"]
|
||||||
|
|
||||||
|
# ╭────────╮
|
||||||
|
# │ Social │
|
||||||
|
# ╰────────╯
|
||||||
|
|
||||||
subgraph "cluster/social" {
|
subgraph "cluster/social" {
|
||||||
label="Social"
|
label="Social"
|
||||||
|
|
||||||
|
# ╭────────┬──────╮
|
||||||
|
# │ Social │ Corp │
|
||||||
|
# ╰────────┴──────╯
|
||||||
|
|
||||||
subgraph "cluster/social/corp" {
|
subgraph "cluster/social/corp" {
|
||||||
label="Corp"
|
label="Corp"
|
||||||
|
|
||||||
|
@ -86,6 +123,10 @@ URL="https://youtube.com/@marc.beninca"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# ╭────────┬──────╮
|
||||||
|
# │ Social │ Open │
|
||||||
|
# ╰────────┴──────╯
|
||||||
|
|
||||||
subgraph "cluster/social/open" {
|
subgraph "cluster/social/open" {
|
||||||
label="Open"
|
label="Open"
|
||||||
|
|
||||||
|
@ -95,6 +136,10 @@ label="BlueSky"
|
||||||
URL="https://bsky.app/profile/marc.beninca.link"
|
URL="https://bsky.app/profile/marc.beninca.link"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
# ╭────────┬──────┬──────────╮
|
||||||
|
# │ Social │ Open │ KeyOxide │
|
||||||
|
# ╰────────┴──────┴──────────╯
|
||||||
|
|
||||||
subgraph "cluster/social/open/keyoxide" {
|
subgraph "cluster/social/open/keyoxide" {
|
||||||
label="KeyOxide"
|
label="KeyOxide"
|
||||||
|
|
||||||
|
@ -114,13 +159,45 @@ URL="https://keyoxide.org/aspe:keyoxide.org:WUD5YVN52J3RJ6CD4ZCWYL6S54"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# ╭────────┬─────────╮
|
||||||
|
# │ Social │ Support │
|
||||||
|
# ╰────────┴─────────╯
|
||||||
|
|
||||||
|
subgraph "cluster/social/support" {
|
||||||
|
label="Support"
|
||||||
|
|
||||||
|
"social/support/liberapay" [
|
||||||
|
fontcolor="#8080FF"
|
||||||
|
label="LiberaPay"
|
||||||
|
URL="https://liberapay.com/marc.beninca"
|
||||||
|
]
|
||||||
|
|
||||||
|
"social/support/patreon" [
|
||||||
|
fontcolor="#8080FF"
|
||||||
|
label="Patreon"
|
||||||
|
URL="https://patreon.com/marc_beninca"
|
||||||
|
]
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
subgraph "cluster/beninca.link" {
|
}
|
||||||
|
|
||||||
|
# ╭─────╮
|
||||||
|
# │ DNS │
|
||||||
|
# ╰─────╯
|
||||||
|
|
||||||
|
subgraph "cluster/dns" {
|
||||||
|
label="Domains"
|
||||||
|
|
||||||
|
# ╭─────┬─────────╮
|
||||||
|
# │ DNS │ Beninca │
|
||||||
|
# ╰─────┴─────────╯
|
||||||
|
|
||||||
|
subgraph "cluster/dns/beninca" {
|
||||||
label="beninca.link"
|
label="beninca.link"
|
||||||
URL="https://beninca.link"
|
URL="https://beninca.link"
|
||||||
|
|
||||||
"beninca.link/marc" [
|
"dns/beninca/marc" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="Marc"
|
label="Marc"
|
||||||
URL="https://marc.beninca.link"
|
URL="https://marc.beninca.link"
|
||||||
|
@ -128,132 +205,159 @@ URL="https://marc.beninca.link"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
subgraph "cluster/rwx.work" {
|
# ╭─────┬─────╮
|
||||||
|
# │ DNS │ RWX │
|
||||||
|
# ╰─────┴─────╯
|
||||||
|
|
||||||
|
subgraph "cluster/dns/rwx" {
|
||||||
label="rwx.work"
|
label="rwx.work"
|
||||||
URL="https://rwx.work"
|
URL="https://rwx.work"
|
||||||
|
|
||||||
"rwx.work/blog" [
|
"dns/rwx/blog" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="Blog"
|
label="Blog"
|
||||||
URL="https://blog.rwx.work"
|
URL="https://blog.rwx.work"
|
||||||
]
|
]
|
||||||
|
|
||||||
"rwx.work/forge" [
|
"dns/rwx/forge" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="Forge"
|
label="Forge"
|
||||||
URL="https://forge.rwx.work"
|
URL="https://forge.rwx.work"
|
||||||
]
|
]
|
||||||
|
|
||||||
"rwx.work/ilos" [
|
"dns/rwx/ilos" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="ILOS"
|
label="ILOS:\nIncremental Live\nOperating System"
|
||||||
URL="https://ilos.rwx.work"
|
URL="https://ilos.rwx.work"
|
||||||
]
|
]
|
||||||
|
|
||||||
"rwx.work/lsgm" [
|
subgraph "cluster/dns/rwx/lsgm" {
|
||||||
fontcolor="#8080FF"
|
label="LSGM:\nLive Scan Grub Menu"
|
||||||
label="LSGM"
|
|
||||||
URL="https://lsgm.rwx.work"
|
URL="https://lsgm.rwx.work"
|
||||||
]
|
|
||||||
|
|
||||||
"rwx.work/ofsp" [
|
"dns/rwx/lsgm/python" [label="Python"]
|
||||||
|
"dns/rwx/lsgm/shell" [label="Shell"]
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
"dns/rwx/ofsp" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="OFSP"
|
label="OFSP:\nOperating File\nSystem Profile"
|
||||||
URL="https://ofsp.rwx.work"
|
URL="https://ofsp.rwx.work"
|
||||||
]
|
]
|
||||||
|
|
||||||
"rwx.work/prj" [
|
"dns/rwx/prj" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="PRJ"
|
label="PRJ:\nPRJ"
|
||||||
URL="https://prj.rwx.work"
|
URL="https://prj.rwx.work"
|
||||||
]
|
]
|
||||||
|
|
||||||
"rwx.work/rtfd" [
|
"dns/rwx/rtfd" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="RTFD"
|
label="RTFD:\nRead The\nFancy Docs"
|
||||||
URL="https://rtfd.rwx.work"
|
URL="https://rtfd.rwx.work"
|
||||||
]
|
]
|
||||||
|
|
||||||
"rwx.work/rwx" [
|
subgraph "cluster/dns/rwx/rwx" {
|
||||||
fontcolor="#8080FF"
|
label="RWX:\nRead Write eXecute"
|
||||||
label="RWX"
|
|
||||||
URL="https://rwx.rwx.work"
|
URL="https://rwx.rwx.work"
|
||||||
]
|
|
||||||
|
|
||||||
"rwx.work/spcd" [
|
"dns/rwx/rwx/python" [label="Python"]
|
||||||
|
"dns/rwx/rwx/shell" [label="Shell"]
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
"dns/rwx/spcd" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="SPCD"
|
label="SPCD:\nShell to Python\nContinuous Deployment"
|
||||||
URL="https://spcd.rwx.work"
|
URL="https://spcd.rwx.work"
|
||||||
]
|
]
|
||||||
|
|
||||||
"rwx.work/srmp" [
|
"dns/rwx/srmp" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="SRMP"
|
label="SRMP:\nSoftware Repositories\nMirror Profile"
|
||||||
URL="https://srmp.rwx.work"
|
URL="https://srmp.rwx.work"
|
||||||
]
|
]
|
||||||
|
|
||||||
"rwx.work/todo" [
|
"dns/rwx/todo" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="TODO"
|
label="TODO:\nTO\nDO"
|
||||||
URL="https://todo.rwx.work"
|
URL="https://todo.rwx.work"
|
||||||
]
|
]
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
"rwx.work/forge/marc" [
|
"dns/rwx/forge/marc" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="Marc"
|
label="Marc"
|
||||||
URL="https://forge.rwx.work/marc.beninca"
|
URL="https://forge.rwx.work/marc.beninca"
|
||||||
]
|
]
|
||||||
"rwx.work/forge/marc" -> "rwx.work/forge"
|
"dns/rwx/forge/marc" -> "dns/rwx/forge"
|
||||||
|
|
||||||
{
|
{
|
||||||
"ofsp/python" [label="Python"]
|
"dns/rwx/ofsp/python" [label="Python"]
|
||||||
"ofsp/shell" [label="Shell"]
|
"dns/rwx/ofsp/shell" [label="Shell"]
|
||||||
} -> "rwx.work/ofsp"
|
} -> "dns/rwx/ofsp"
|
||||||
|
|
||||||
{
|
{
|
||||||
"rwx/ffmpeg" [label="FFMPEG"]
|
"dns/rwx/rtfd/forgejo" [label="Forgejo"]
|
||||||
"rwx/gource" [label="Gource"]
|
} -> "dns/rwx/rtfd"
|
||||||
"rwx/logo" [label="Logo"]
|
|
||||||
"rwx/python" [label="Python"]
|
|
||||||
"rwx/shell" [label="Shell"]
|
|
||||||
} -> "rwx.work/rwx"
|
|
||||||
|
|
||||||
|
# ╭─────┬─────┬─────┬────────╮
|
||||||
|
# │ DNS │ RWX │ RWX │ Python │
|
||||||
|
# ╰─────┴─────┴─────┴────────╯
|
||||||
{
|
{
|
||||||
"rwx/python/codium" [label="Codium"]
|
"dns/rwx/rwx/python/codium" [label="Codium"]
|
||||||
"rwx/python/freetube" [label="FreeTube"]
|
"dns/rwx/rwx/python/ffmpeg" [label="FFMPEG"]
|
||||||
"rwx/python/venvs" [label="Build VEnvs"]
|
"dns/rwx/rwx/python/freetube" [label="FreeTube"]
|
||||||
} -> "rwx/python"
|
"dns/rwx/rwx/python/gource" [label="Gource"]
|
||||||
|
"dns/rwx/rwx/python/logo" [label="Logo"]
|
||||||
|
"dns/rwx/rwx/python/venvs" [label="Build VEnvs"]
|
||||||
|
} -> "dns/rwx/rwx/python"
|
||||||
|
# ╭─────┬─────┬─────┬───────╮
|
||||||
|
# │ DNS │ RWX │ RWX │ Shell │
|
||||||
|
# ╰─────┴─────┴─────┴───────╯
|
||||||
{
|
{
|
||||||
"rwx/shell/cs" [label="CryptSetup"]
|
"dns/rwx/rwx/shell/cs" [label="CryptSetup"]
|
||||||
"rwx/shell/venv" [label="Use VEnv"]
|
"dns/rwx/rwx/shell/git" [label="Git"]
|
||||||
} -> "rwx/shell"
|
"dns/rwx/rwx/shell/venv" [label="Use VEnv"]
|
||||||
|
} -> "dns/rwx/rwx/shell"
|
||||||
|
|
||||||
|
# ╭─────┬─────┬──────╮
|
||||||
|
# │ DNS │ RWX │ SRMP │
|
||||||
|
# ╰─────┴─────┴──────╯
|
||||||
{
|
{
|
||||||
"srmp/alma" [label="Alma"]
|
"dns/rwx/srmp/alma" [label="Alma"]
|
||||||
"srmp/debian" [label="Debian"]
|
"dns/rwx/srmp/debian" [label="Debian"]
|
||||||
"srmp/docker" [label="Docker"]
|
"dns/rwx/srmp/docker" [label="Docker"]
|
||||||
"srmp/msys" [label="MSys"]
|
"dns/rwx/srmp/msys" [label="MSys"]
|
||||||
"srmp/pypi" [label="PyPI"]
|
"dns/rwx/srmp/pypi" [label="PyPI"]
|
||||||
"srmp/python" [label="Python"]
|
"dns/rwx/srmp/python" [label="Python"]
|
||||||
} -> "rwx.work/srmp"
|
} -> "dns/rwx/srmp"
|
||||||
|
|
||||||
|
# ╭─────┬─────┬──────┬────────╮
|
||||||
|
# │ DNS │ RWX │ SRMP │ Debian │
|
||||||
|
# ╰─────┴─────┴──────┴────────╯
|
||||||
{
|
{
|
||||||
"srmp/debian/codium" [label="Codium"]
|
"dns/rwx/srmp/debian/codium" [label="Codium"]
|
||||||
"srmp/debian/incus" [label="Incus"]
|
"dns/rwx/srmp/debian/incus" [label="Incus"]
|
||||||
} -> "srmp/debian"
|
} -> "dns/rwx/srmp/debian"
|
||||||
|
|
||||||
subgraph "cluster/tilde.link" {
|
# ╭─────┬───────╮
|
||||||
|
# │ DNS │ Tilde │
|
||||||
|
# ╰─────┴───────╯
|
||||||
|
subgraph "cluster/dns/tilde" {
|
||||||
label="tilde.link"
|
label="tilde.link"
|
||||||
URL="https://tilde.link"
|
URL="https://tilde.link"
|
||||||
|
|
||||||
"tilde.link/tm" [
|
"dns/tilde/tm" [
|
||||||
fontcolor="#8080FF"
|
fontcolor="#8080FF"
|
||||||
label="TrackMania"
|
label="TM:\nTrack Mania"
|
||||||
URL="https://tm.tilde.link"
|
URL="https://tm.tilde.link"
|
||||||
]
|
]
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue