Welcome again to everybody. Make yourselves at home. In the time-honoured tradition of our group, here is the weekly discussion thread.
☭ Matrix homeserver and space
☭ Theory discussion group on /c/theory@lemmygrad.ml
☭ Find theory on ProleWiki, marxists.org, Anna’s Archive


on top of lemmygrad I find a bunch of quotes. where do I find them on github?
All of them are loaded whenever you start the page. You can run this command on the browser console to print them out (but don’t run commands from strangers, please check it):
window.isoData.site_res.taglines.forEach((element) => {console.log(element.content)})I don’t know where else to find the taglines.
The api. For now: https://lemmygrad.ml/api/v3/site
Requires curl and jq:
curl -s https://lemmygrad.ml/api/v3/site | jq -r '.taglines[] | "\(.content)\n"'Thank you