Back

Version 102

5/31/2023
async function leadgenerator(req: express.Request, res: express.Response) {
const feedUrls = [
"https://hrishikesh.substack.com/feed",
"https://bijan.substack.com/feed",
"https://uses.substack.com/feed",
"https://spencerchang.substack.com/feed",
"https://maxread.substack.com/feed",
"https://johnwest.substack.com/feed",
"https://kylechayka.substack.com/feed",
"https://www.garbageday.email/feed",
"https://warzel.substack.com/feed",
"https://www.henrikkarlsson.xyz/feed",
"https://cooldudezone.substack.com/feed",
"https://robwalker.substack.com/feed",
"https://jomc.substack.com/feed",
];
var tanaPaste = "%%tana%%\n- leads";
for (var i = 0; i < 3; i++) {
const article = await @elan.getRandomArticleParagraphs(feedUrls);
tanaPaste += "\n - [" + article.title + "](" + article.link +
")\n - quote::" + article.content;
}
return res.send(tanaPaste);
}
Updated: October 23, 2023