this repo has no description
0
fork

Configure Feed

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

add pronouns

+10 -1
+9
src/constants.ts
··· 46 46 "he/we": "he-we", 47 47 "they/we": "they-we", 48 48 "xe/xem": "xe-xem", 49 + "sun/suns": "sun-suns", 50 + "leaf/leafs": "leaf-leafs", 51 + "shiv/ver": "shiv-ver", 49 52 }; 50 53 51 54 export const URIs: Record<string, string> = { ··· 141 144 "they/we", 142 145 "at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kyilq67fyv2a": 143 146 "xe/xem", 147 + "at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kzfbgd3jpz2k": 148 + "sun/suns", 149 + "at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kzfbgi7is225": 150 + "leaf/leafs", 151 + "at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kzftskynd32l": 152 + "shiv/ver", 144 153 }; 145 154 146 155 export const DID = process.env.DID ?? "";
+1 -1
src/main.ts
··· 9 9 const agent = await getAgent(); 10 10 11 11 let cursorFirehose = 0; 12 - let cursorFile = fs.readFileSync("cursor.txt", "utf8"); 12 + const cursorFile = fs.readFileSync("cursor.txt", "utf8"); 13 13 14 14 const firehose = new Firehose({ cursor: cursorFile ?? "" }); 15 15 if (cursorFile) console.log(`Initiate firehose at cursor ${cursorFile}`);