scraping atproto for the most followed accounts

chore(site): filter sub 5 followed accounts

+6 -2
+1
.github/workflows/website.yml
··· 9 9 - main 10 10 paths: 11 11 - dist/* 12 + - site/* 12 13 13 14 jobs: 14 15 build:
+5 -2
site/build.js
··· 22 22 } 23 23 }); 24 24 25 - // nuke 0 followers accounts, this massively speeds up webload speeds 26 - if (filtered.followersCount === 0) return null; 25 + // nuke sub 5 followers accounts, this massively speeds up webload speeds 26 + // there are over 5000 sub 0 follower accounts. and most accounts there 27 + // are 1500 accounts with less than 5 accounts, most of which have 0 or 28 + // no posts, or were created but appear to be completely dead 29 + if (filtered.followersCount <= 5) return null; 27 30 28 31 return filtered; 29 32 })