Post B4qzU8lj7Te6uZviQS by alice@mk.nyaa.place
 (DIR) More posts by alice@mk.nyaa.place
 (DIR) Post #B4qzU5vtfCzy7FfIMS by alice@mk.nyaa.place
       0 likes, 0 repeats
       
       hm, that's a new one: posting a revospring question+answer here and getting people answering that question in my repliesnot sure offhand how to avoid this
       
 (DIR) Post #B4qzU69Mr7m2n1y3MG by memdmp@catgirl.center
       0 likes, 0 repeats
       
       @alice@mk.nyaa.place if its just a one-off it's probably not worth doing anything aboutif it isn't, change the post format to a format that looks a bit like the below (i saw something similar somewhere and i don't remember where)@memdmp asked:"How many noodles fit into a bowl of cereal"Exactly 17.----Anonymous asked:"What is 3+7"Approximately pi × 3.
       
 (DIR) Post #B4qzU6KMCGZ3L76pUG by alice@mk.nyaa.place
       0 likes, 0 repeats
       
       @memdmp@catgirl.center wafrn asks most likelymakes sense, tho it's a lot of work to paste that manually every time - wafrn does that automatically so it's not a problem there
       
 (DIR) Post #B4qzU6SVhx5PkOvLCC by memdmp@catgirl.center
       0 likes, 0 repeats
       
       @alice@mk.nyaa.place >wafrn asks most likelyyeah it was that lmaoanyhow, one could make a small script like (below is for misskeyapi, tested on the shonk)if (typeof globalThis.process === 'undefined')globalThis.process={env:{AUTHORIZATION:prompt('auth')}}const qa = {  questioner: '@memdmp@catgirl.center',  question: 'How many noodles fit into a bowl of cereal',  answer: 'Exactly 17.',};const post = `$[border.width=8,color=0000 $[border.width=1,color=00aaff,radius=4 $[border.width=8,color=fff1 $[bg.color=fff1 ${qa.questioner==='Anonymous'||!qa.questioner ? '<i>Anonymous</i>' : qa.questioner} asked:${JSON.stringify(qa.question)}]]]]${qa.answer}`await fetch("https://instance.example/api/notes/create", {  "credentials": "include",  "headers": {    "Content-Type": "application/json",    "Authorization": process.env.AUTHORIZATION,  },  "body": JSON.stringify({    "text":               post,    "poll":               null,    "cw":                 "revospring example",    "localOnly":          false,    "visibility":         "public",    "reactionAcceptance": null  }),  "method": "POST",}).then(v=>console.log('Got back:',v));
       
 (DIR) Post #B4qzU8ZJrbimI67o5Q by memdmp@catgirl.center
       0 likes, 0 repeats
       
       @alice@mk.nyaa.place and here's how that ends up turning out:RE: https://catgirl.center/notes/akh72rk27ydy03vb
       
 (DIR) Post #B4qzU8lj7Te6uZviQS by alice@mk.nyaa.place
       0 likes, 0 repeats
       
       @memdmp@catgirl.center wait, how does it work? is this just for running locally?
       
 (DIR) Post #B4qzU8veWZaNPMZdtg by memdmp@catgirl.center
       0 likes, 0 repeats
       
       @alice@mk.nyaa.place just a JS fetch() wrapper for running in e.g. node or the browser console; i didn't bother adding prompting for actual fields in useam currently writing a AiScript Misskey Play thing for it because autism (i hate AiScript and am so close to making a TS to AiScript cross-compiler based on e.g. swc)
       
 (DIR) Post #B4qzU98Pl7nI2wXpmy by memdmp@catgirl.center
       0 likes, 0 repeats
       
       @alice@mk.nyaa.place have fun :3 (source)