tangled
alpha
login
or
join now
edavis.dev
/
recordcollector
18
fork
atom
this repo has no description
18
fork
atom
overview
issues
2
pulls
pipelines
add BookHive
Closes #1
Eric Davis
6 months ago
8f77d3f5
6573c9fa
+4
-2
2 changed files
expand all
collapse all
unified
split
cmd
recordcollector
main.go
genlabeldefs.py
+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",
0
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
···
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'),
0
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