+4
cmd/recordcollector/main.go
+4
cmd/recordcollector/main.go
···
35
}
36
37
var labelPrefixes = map[string]string{
38
"com.whtwnd": "com-whtwnd",
39
"events.smokesignal": "events-smokesignal",
40
"fm.teal": "fm-teal",
···
42
"im.flushing": "im-flushing",
43
"place.stream": "place-stream",
44
"sh.tangled": "sh-tangled",
45
"xyz.statusphere": "xyz-statusphere",
46
}
47
···
35
}
36
37
var labelPrefixes = map[string]string{
38
+
// NSID prefix // Label
39
+
"app.popsky": "app-popsky",
40
+
"com.shinolabs.pinksea": "com-shinolabs-pinksea",
41
"com.whtwnd": "com-whtwnd",
42
"events.smokesignal": "events-smokesignal",
43
"fm.teal": "fm-teal",
···
45
"im.flushing": "im-flushing",
46
"place.stream": "place-stream",
47
"sh.tangled": "sh-tangled",
48
+
"so.sprk": "so-sprk",
49
"xyz.statusphere": "xyz-statusphere",
50
}
51
+3
genlabeldefs.py
+3
genlabeldefs.py
···
3
import json
4
5
collections = [
6
('com-whtwnd', 'WhiteWind', 'markdown blog service (com.whtwnd.*)'),
7
('events-smokesignal', 'Smoke Signal', 'manage events and RSVPs (events.smokesignal.*)'),
8
('fm-teal', 'teal.fm', 'your music, beautifully tracked (fm.teal.*)'),
···
10
('im-flushing', 'Flushes', 'The Decentralized Toilet Network of Planet Earth & Simulation 12B (im.flushing.*)'),
11
('place-stream', 'Streamplace', 'live video on the AT Protocol (place.stream.*)'),
12
('sh-tangled', 'Tangled', 'tightly-knit social coding (sh.tangled.*)'),
13
('xyz-statusphere', 'Statusphere', 'atproto quick start (xyz.statusphere.*)'),
14
]
15
···
3
import json
4
5
collections = [
6
+
('app-popsky', 'Popsky', 'pop culture hub (app.popsky.*)'),
7
+
('com-shinolabs-pinksea', 'PinkSea', 'oekaki on atproto (com.shinolabs.pinksea.*)'),
8
('com-whtwnd', 'WhiteWind', 'markdown blog service (com.whtwnd.*)'),
9
('events-smokesignal', 'Smoke Signal', 'manage events and RSVPs (events.smokesignal.*)'),
10
('fm-teal', 'teal.fm', 'your music, beautifully tracked (fm.teal.*)'),
···
12
('im-flushing', 'Flushes', 'The Decentralized Toilet Network of Planet Earth & Simulation 12B (im.flushing.*)'),
13
('place-stream', 'Streamplace', 'live video on the AT Protocol (place.stream.*)'),
14
('sh-tangled', 'Tangled', 'tightly-knit social coding (sh.tangled.*)'),
15
+
('so-sprk', 'Spark', 'short-form video/photo app (so.sprk.*)'),
16
('xyz-statusphere', 'Statusphere', 'atproto quick start (xyz.statusphere.*)'),
17
]
18