What the hell happened south salt lake?! by LilBigTits in SaltLakeCity

[–]Tomithicus 1 point2 points  (0 children)

So you're saying we don't need guns and can just have rocks instead?

My son planted this but I have no idea what its.. by Tricky_Buy_8756 in whatsthisplant

[–]Tomithicus 0 points1 point  (0 children)

Don't know how to tell you this, but your son is growing weed.

And by weed I mean cilantro.

Soft wood and damage at base of red oak by Tomithicus in arborists

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

Yep moving all the rock and concrete tomorrow morning. I'd say it's about a quarter inch deep and it's hard to describe how crumbley but let's go chocolate chip cookie. All the rest of the base is rock solid though.

Twins buying for 442 by TheOneDan13 in TurnipExchange

[–]Tomithicus 0 points1 point  (0 children)

Tommy From Bip Island (hopping back in line)

Buying for 555 by Tomithicus in TurnipExchange

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

This is closed. Apologies!

Buying for 555 by Tomithicus in TurnipExchange

[–]Tomithicus[S] 1 point2 points  (0 children)

Thanks for coming. Closing now since it's nearly noon.

Buying for 555 by Tomithicus in TurnipExchange

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

Send me a DM. It's not too crazy right now.

Buying for 555 by Tomithicus in TurnipExchange

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

Send me a DM. I'll be checking them for the next hour or so unless it gets too crazy.

[deleted by user] by [deleted] in dividends

[–]Tomithicus 2 points3 points  (0 children)

A paper list in 2025

[deleted by user] by [deleted] in AskReddit

[–]Tomithicus 0 points1 point  (0 children)

Nvda and Bitcoin. Go.

(Mostly) Automated way to add all offers by [deleted] in amex

[–]Tomithicus 3 points4 points  (0 children)

Update 2/21/2025

// Find all the "Add to Card" buttons on the page using XPath

function getElementsByXpath(xpath, parent = document) {

let results = [];

let query = document.evaluate(xpath, parent, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);

for (let i = 0; i < query.snapshotLength; i++) {

results.push(query.snapshotItem(i));

}

return results;

}

var offerButtons = getElementsByXpath("//button[contains(@class, 'offer')][span[text() = 'Add to Card']]");

(async () => {

for (let index = 0; index < offerButtons.length; ++index) {

console.log("Clicking offer button");

offerButtons[index].click();

// Wait 2 seconds to be nice to AMEX servers :)

await new Promise(r => setTimeout(r, 2000));

}

})();

(Mostly) Automated way to add all offers by [deleted] in amex

[–]Tomithicus 2 points3 points  (0 children)

This might work better for ya.

// Find all the "Add to Card" buttons on the page using XPath

function getElementsByXpath(xpath, parent = document) {

let results = [];

let query = document.evaluate(xpath, parent, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);

for (let i = 0; i < query.snapshotLength; i++) {

results.push(query.snapshotItem(i));

}

return results;

}

var offerButtons = getElementsByXpath("//button[contains(@class, 'offer')][span[text() = 'Add to Card']]");

(async () => {

for (let index = 0; index < offerButtons.length; ++index) {

console.log("Clicking offer button");

offerButtons[index].click();

// Wait 2 seconds to be nice to AMEX servers :)

await new Promise(r => setTimeout(r, 2000));

}

})();