diff --git a/cmd/recordcollector/main.go b/cmd/recordcollector/main.go --- a/cmd/recordcollector/main.go +++ b/cmd/recordcollector/main.go @@ -29,14 +29,13 @@ 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", @@ -59,6 +58,18 @@ "com.wamellow": "com-wamellow", "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 diff --git a/genlabeldefs.py b/genlabeldefs.py --- a/genlabeldefs.py +++ b/genlabeldefs.py @@ -3,7 +3,7 @@ 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'), @@ -26,6 +26,18 @@ 'Wamellow': ('com-wamellow', 'bluesky to discord notifications'), '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'), }