+2
-1
cmd/recordcollector/main.go
+2
-1
cmd/recordcollector/main.go
···
35
}
36
37
var labelPrefixes = map[string]string{
38
-
// NSID prefix // Label
39
"app.popsky": "app-popsky",
40
"blue.badge": "blue-badge",
41
"blue.zio.atfile": "blue-zio-atfile",
···
58
"com.wamellow": "com-wamellow",
59
"social.grain": "social-grain",
60
"net.anisota": "net-anisota",
61
}
62
63
//go:embed schema.sql
···
35
}
36
37
var labelPrefixes = map[string]string{
38
+
// nsid.prefix // Label from defs
39
"app.popsky": "app-popsky",
40
"blue.badge": "blue-badge",
41
"blue.zio.atfile": "blue-zio-atfile",
···
58
"com.wamellow": "com-wamellow",
59
"social.grain": "social-grain",
60
"net.anisota": "net-anisota",
61
+
"buzz.bookhive": "buzz-bookhive",
62
}
63
64
//go:embed schema.sql
+2
-1
genlabeldefs.py
+2
-1
genlabeldefs.py
···
24
'Leaflet': ('pub-leaflet', 'social publishing / blogging'),
25
'Wamellow': ('com-wamellow', 'bluesky to discord notifications'),
26
'Grain': ('social-grain', 'a photo sharing platform'),
27
-
'Anisota': ('net-anisota', 'a speculative, iconoclastic social app'),
28
# 'name': ('nsid-with-dashes', 'description'),
29
}
30
···
24
'Leaflet': ('pub-leaflet', 'social publishing / blogging'),
25
'Wamellow': ('com-wamellow', 'bluesky to discord notifications'),
26
'Grain': ('social-grain', 'a photo sharing platform'),
27
+
'Anisota': ('net-anisota', 'a new, experimental way to use social media'),
28
+
'BookHive': ('buzz-bookhive', 'manage, organize, and review your books anywhere'),
29
# 'name': ('nsid-with-dashes', 'description'),
30
}
31