this repo has no description

add a bunch of new apps

Changed files
+26 -3
cmd
recordcollector
+13 -2
cmd/recordcollector/main.go
···
var ignorePrefixes = []string{
"app.bsky",
"chat.bsky",
-
"blue.flashes",
"social.pinksky",
"jp.5leaf",
}
var labelPrefixes = map[string]string{
// nsid.prefix // Label from defs
-
"app.popsky": "app-popsky",
+
"social.popfeed": "social-popfeed",
"blue.badge": "blue-badge",
"blue.zio.atfile": "blue-zio-atfile",
"chat.roomy": "chat-roomy",
···
"social.grain": "social-grain",
"net.anisota": "net-anisota",
"buzz.bookhive": "buzz-bookhive",
+
"link.woosh": "link-woosh",
+
"st.snowpo": "st-snowpo",
+
"my.skylights": "my-skylights",
+
"io.zzstoatzz.status": "io-zzstoatzz-status",
+
"app.yoten": "app-yoten",
+
"blue.flashes": "blue-flashes",
+
"place.atwork": "place-atwork",
+
"at.monomarks": "at-monomarks",
+
"net.wafrn": "net-wafrn",
+
"community.nooki": "community-nooki",
+
"org.xcvr": "org-xcvr",
+
"app.lanyards": "app-lanyards",
}
//go:embed schema.sql
+13 -1
genlabeldefs.py
···
import json
collections = {
-
'Popsky': ('app-popsky', 'pop culture hub'),
+
'Popfeed': ('social-popfeed', 'pop culture hub'),
'PinkSea': ('com-shinolabs-pinksea', 'oekaki on atproto'),
'WhiteWind': ('com-whtwnd', 'markdown blog service'),
'Smoke Signal': ('events-smokesignal', 'manage events and RSVPs'),
···
'Grain': ('social-grain', 'a photo sharing platform'),
'Anisota': ('net-anisota', 'a new, experimental way to use social media'),
'BookHive': ('buzz-bookhive', 'manage, organize, and review your books anywhere'),
+
'Woosh': ('link-woosh', 'effortlessly share everything you create, curate, and sell'),
+
'Snowpost': ('st-snowpo', 'a simple, minimalist writing platform'),
+
'Skylights': ('my-skylights', 'a simple, minimalist writing platform'),
+
'Status': ('io-zzstoatzz-status', 'a personal status tracker built on at protocol'),
+
'Yōten': ('app-yoten', 'a social tracker for your language learning journey'),
+
'Flashes': ('blue-flashes', 'a photo viewing client for u'),
+
'at://work': ('place-atwork', 'Your Career. Your Data. Your Place.'),
+
'Monomarks': ('at-monomarks', 'a place for sharing and discovering interesting links'),
+
'Wafrn': ('net-wafrn', 'a federated social media inspired by Tumblr'),
+
'Nooki': ('community-nooki', 'a federated social media inspired by Tumblr'),
+
'xcvr': ('org-xcvr', 'hyper-real-time communication on atproto'),
+
'Lanyards': ('app-lanyards', 'one link to make your research life easier to share'),
# 'name': ('nsid-with-dashes', 'description'),
}