blob: e1b690d2684cc92288e3c75bb14a6c765f4e6beb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
|
digraph tvl {
node [fontname = "JetBrains Mono"];
overlap = false;
splines = polyline;
TVL [style="bold" href="http://tvl.fyi"];
tazjin -> TVL [style="bold"];
// people
subgraph {
Irenes [href="https://www.pluralpride.com/"];
adisbladis [href="http://nixos.expert/"];
amjoseph;
andi [label="andi-" href="https://andreas.rammhold.de/"];
aurora [href="https://nonegenderleftfox.aventine.se/"];
benjojo [href="https://benjojo.co.uk/"];
cynthia [href="https://cynthia.re/"];
edef [href="https://edef.eu/files/edef.hs"];
ericvolp [href="https://ericv.me"];
espes;
eta [href="https://theta.eu.org/"];
etu [href="https://elis.nu/"];
ezemtsov [href="https://github.com/ezemtsov"];
firefly [href="http://firefly.nu/"];
flokli [href="https://flokli.de/"];
fzakaria [href="https://fzakaria.com/"];
ghuntley [href="https://ghuntley.com/"];
grfn [href="http://gws.fyi"];
implr [href="https://twitter.com/implring"];
isomer [href="https://www.lorier.net/"];
j4m3s [href="https://github.com/j4m3s-s"];
jusrin [href="https://jusrin.dev/"];
kn;
lassulus;
leah2 [href="https://leahneukirchen.org/"];
lukegb [href="https://lukegb.com/"];
marcusr [href="http://marcus.nordaaker.com/"];
mdjnsn;
ncl;
nikky [href="http://nikky.moe/"];
nyanotech [href="https://twitter.com/nyanotech"];
Profpatsch [href="http://profpatsch.de/"];
qyliss [href="https://alyssa.is"];
seven [href="https://open.spotify.com/user/so7"];
spacekookie [href="https://spacekookie.de/"];
sterni [href="https://sterni.lv/"];
tazjin [href="https://tazj.in/"];
wpcarro [href="https://wpcarro.dev/"];
yuuko;
}
// companies (blue)
subgraph {
node [color="#4285f4" fontcolor="#4285f4"];
spotify [href="https://www.spotify.com/"];
google [href="https://www.google.com/"];
}
// communities? (red)
subgraph {
node [color="#db4437" fontcolor="#db4437"];
eve [href="https://www.eveonline.com/"];
nix [href="https://nixos.org/nix/"];
tvix [href="https://code.tvl.fyi/tree/tvix"];
ircv3 [href="https://ircv3.net/"];
muccc [label="µccc" href="https://muc.ccc.de/"];
afra [label="AfRA" href="https://afra-berlin.de/"];
}
// special
subgraph {
baby [color="pink" fontcolor="pink" href="https://cynthia.re/s/baby"];
unspecific [color="grey" fontcolor="grey"];
}
// primary edges (how did they end up in TVL?)
subgraph {
// Direct edges
nix -> TVL;
tvix -> TVL;
spotify -> tazjin;
google -> tazjin;
eve -> tazjin;
unspecific -> tazjin;
edef -> tazjin;
ezemtsov -> tazjin;
// via nix
adisbladis -> nix;
jusrin -> nix;
ghuntley -> nix;
flokli -> nix;
andi -> nix;
Profpatsch -> nix;
lassulus -> nix;
etu -> nix;
// via tvix
j4m3s -> tvix;
amjoseph -> tvix;
// via edef
benjojo -> edef;
espes -> edef;
firefly -> edef;
leah2 -> aurora;
ncl -> edef;
qyliss -> edef;
// via spotify
seven -> spotify;
// via google
Irenes -> google;
isomer -> google;
lukegb -> google;
wpcarro -> google;
fzakaria -> google;
mdjnsn -> google;
// random primary
grfn -> wpcarro;
aurora -> eve;
cynthia -> benjojo;
eta -> unspecific;
ericvolp -> lukegb;
marcusr -> unspecific;
implr -> lukegb;
afra -> unspecific;
nikky -> afra;
spacekookie -> qyliss;
kn -> flokli;
sterni -> Profpatsch;
yuuko -> ncl;
}
// secondary edges (how are they connected otherwise?)
subgraph {
edge [weight=0 style="dotted" color="grey" arrowhead="none"];
// ircv3
eta -> ircv3;
firefly -> ircv3;
// µccc
leah2 -> muccc;
// random
leah2 -> edef;
lukegb -> isomer;
eta -> firefly;
cynthia -> firefly;
cynthia -> lukegb;
implr -> google;
nyanotech -> google;
lukegb -> benjojo;
espes -> benjojo;
espes -> aurora;
qyliss -> nix;
grfn -> nix;
edef -> nix;
spacekookie -> afra;
qyliss -> afra;
ezemtsov -> nix;
}
// baby
subgraph {
edge [weight=0 style="dotted" color="pink" arrowhead="none"];
cynthia -> baby;
eta -> baby;
}
}
|