Retro Bulletin Board Systems on atproto. Web app and TUI. lazy mirror of alyraffauf/atbbs atbbs.xyz
forums python tui atproto bbs
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 7 lines 286 B view raw
1export { ATPROTO_APPS, type AtprotoApp } from "./shared"; 2import { ATPROTO_APPS, type AtprotoApp } from "./shared"; 3 4export function pickRandomApps(count: number): AtprotoApp[] { 5 const shuffled = [...ATPROTO_APPS].sort(() => Math.random() - 0.5); 6 return shuffled.slice(0, count); 7}