this repo has no description

add a bunch of new apps

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