Pronouns labels on Bluesky

add pronouns

Changed files
+10 -1
src
+9
src/constants.ts
···
"he/we": "he-we",
"they/we": "they-we",
"xe/xem": "xe-xem",
};
export const URIs: Record<string, string> = {
···
"they/we",
"at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kyilq67fyv2a":
"xe/xem",
};
export const DID = process.env.DID ?? "";
···
"he/we": "he-we",
"they/we": "they-we",
"xe/xem": "xe-xem",
+
"sun/suns": "sun-suns",
+
"leaf/leafs": "leaf-leafs",
+
"shiv/ver": "shiv-ver",
};
export const URIs: Record<string, string> = {
···
"they/we",
"at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kyilq67fyv2a":
"xe/xem",
+
"at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kzfbgd3jpz2k":
+
"sun/suns",
+
"at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kzfbgi7is225":
+
"leaf/leafs",
+
"at://did:plc:wkoofae5uytcm7bjncmev6n6/app.bsky.feed.post/3kzftskynd32l":
+
"shiv/ver",
};
export const DID = process.env.DID ?? "";
+1 -1
src/main.ts
···
const agent = await getAgent();
let cursorFirehose = 0;
-
let cursorFile = fs.readFileSync("cursor.txt", "utf8");
const firehose = new Firehose({ cursor: cursorFile ?? "" });
if (cursorFile) console.log(`Initiate firehose at cursor ${cursorFile}`);
···
const agent = await getAgent();
let cursorFirehose = 0;
+
const cursorFile = fs.readFileSync("cursor.txt", "utf8");
const firehose = new Firehose({ cursor: cursorFile ?? "" });
if (cursorFile) console.log(`Initiate firehose at cursor ${cursorFile}`);