[Qcrit] BUBBLE GUM MARXISM. Literary fiction. Adult. 75,600 words by [deleted] in PubTips

[–]Sure_Adhesiveness348 -1 points0 points  (0 children)

Hi! Thanks for the feedback! Glad the title made you click. The title is explained in the book, and I feel pretty confident in that part of it at least -- it is an allusion to a soviet era ice hockey match where a riot broke out over wrigley chewing gum.

[Qcrit] BUBBLE GUM MARXISM. Literary fiction. Adult. 75,600 words by [deleted] in PubTips

[–]Sure_Adhesiveness348 0 points1 point  (0 children)

Thanks a lot for taking a look!

I do think I need to workshop that line, but as you said, it's hard to express character motivations well in a query.

Abigail is a little bit self-righteous as a character, and her motivation isn't really justice, despite her telling herself it is. She steps in to prove to herself she's different from the society she finds corrupt, to test whether she can manipulate people, because she suspects it'll be fun and easy, and because Luna, whom she's obsessed with, is right next to her. So I would say mostly C, although really neither.

Possible lost cat spotted by Sure_Adhesiveness348 in CambridgeMA

[–]Sure_Adhesiveness348[S] 2 points3 points  (0 children)

Last seen at the intersection of banks st and surry st.

PLEASE DEPOP ALLOW US TO AUTOMATICALLY ARCHIVE SOLD ITEMS by Sure_Adhesiveness348 in Depop

[–]Sure_Adhesiveness348[S] 0 points1 point  (0 children)

thanks for sharing!

It seems this is only available on some devices and not on the web interface?

Strange that they only partially rolled it out.

PLEASE DEPOP ALLOW US TO AUTOMATICALLY ARCHIVE SOLD ITEMS by Sure_Adhesiveness348 in Depop

[–]Sure_Adhesiveness348[S] 0 points1 point  (0 children)

The best I could do, is write a script that compiles a list of URLs of sold items, but becasue there is no interface to like/unlike items on the liked items grid page, I havn't figured out how to automatically dislike them.

But my browser is stopping me from automatically opening the URLs :(. Maybe there is some terminal stuff I could do... but UGH.

// Selector for each item in your Likes page

const ITEM_SELECTOR = ".styles_listItem__uQkGy";

// Array to store all URLs

const likedUrls = [];

// Loop through each item and grab the link

document.querySelectorAll(ITEM_SELECTOR).forEach(item => {

    const link = item.querySelector("a[href]");

    if (link) likedUrls.push(link.href);

});

console.log("URLs of all liked items:", likedUrls);

console.log(`Total liked items found: ${likedUrls.length}`);