A simple BlueSky profile labeler that can be ran on Cloudflare Workers github.com/SocksTheWolf/SimpleBSkyLabeler
cf bsky profile label bluesky cloudflare workers
1
fork

Configure Feed

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

Add partial index to SQL query

this is very redundant, and won't do a whole lot more as we don't have revocations, but w/e

Signed-off-by: SocksTheWolf <132639882+SocksTheWolf@users.noreply.github.com>

authored by

SocksTheWolf and committed by
GitHub
89d1b381 270cc074

+3 -1
+3 -1
setup.sql
··· 3 3 account STRING UNIQUE NOT NULL, 4 4 time TIMESTAMP DEFAULT (STRFTIME('%Y-%m-%dT%H:%M:%fZ', 'NOW', 'localtime')) NOT NULL, 5 5 neg INTEGER DEFAULT 0 NOT NULL 6 - ); 6 + ); 7 + CREATE INDEX IF NOT EXISTS idx_labeled_non_removed ON labeled(neg) WHERE neg == 0; 8 + pragma optimize