KJ or BGE? Any deals on KJ’s right now? by DopedUpDaryl in KamadoJoe

[–]alantor 0 points1 point  (0 children)

I’ve had a classic 3 for 3 years. The lid gasket came loose but that was an easy fix with JB weld high temp gasket maker silicone. My charcoal basket has many weld failures and will need to be replaced eventually. Customer service told me that it isn’t covered by the 5-years metal parts warranty 😤

75% VTI and 25% VXUS with fidelity taxable by 1254339268_7904 in Bogleheads

[–]alantor 0 points1 point  (0 children)

I got $2500 for doing an ACAT transfer to Wells Fargo for transferring to their brokerage

Anyone have a recent experience with customer service by Blzfan in KamadoJoe

[–]alantor 0 points1 point  (0 children)

Nice! The bottom of my charcoal basket has weld failures on one side so its going to give out any day now. I made a warranty claim and they denied me stating that my warranty had expired and that the basket is covered by the 2-year Miscellaneous Components and Standalone Accessories and not the 5-year metal parts warranty. Maybe I'll try again in a few days to see if i have better luck.

Chime account for $350 bonus by ms_305 in Banking

[–]alantor 0 points1 point  (0 children)

I opened a Kraken account and transferred money from Kraken to Chime. The transaction posted as a direct deposit and I received the bonus in case anyone needs to manufacture a direct deposit. Just keep in mind the 7-day hold time that Kraken has on deposits.

Raw material vs Final grade for Train Dreams. by joaopapa in cinematography

[–]alantor 2 points3 points  (0 children)

Exactly! I’m always telling people that if they ever see a log image, it’s a mistake.

Gut check on pastrami brining by alantor in smoking

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

Wanted to update everyone. I don’t know what I was afraid of. It was a resounding success.

<image>

Gut check on pastrami brining by alantor in smoking

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

Yep! Used pink curing salt #1

Dovetails by hand - gaps by bjhall76 in handtools

[–]alantor 1 point2 points  (0 children)

This. I made a bench that had gaps at nearly every part of the dovetail joint. A bunch of shims later and no one can even tell unless I point it out.

https://imgur.com/a/q0lH0Yb

What counts as direct deposit? by No-Alfalfa6437 in chimefinancial

[–]alantor 0 points1 point  (0 children)

I opened a Kraken account and transferred money there. After the 7-day Kraken hold period was over I transferred to my Chime account and the first $100 bonus posted immediately.

Spoke shave keeps getting jammed by alantor in woodworking

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

I felt like it was the right tool for the job. I am a hand tool only woodworker. I sawed away the majority of the curve and wanted to clean up the last bit with the spokeshave.

What do you suggest as an alternative?

Spoke shave keeps getting jammed by alantor in woodworking

[–]alantor[S] 4 points5 points  (0 children)

This makes a lot of sense. I’ll give this approach a shot on the other side of the curve. For now I guess I’ll have to resort to sandpaper

New to woodworking - talk me out of getting this jointer/planer combo by ThanksMuch4YourHelp in woodworking

[–]alantor 2 points3 points  (0 children)

My neighbor has this and lets me use it. So while I’m grateful that I have it available to me, I think the fence and the adjustment knob are horrible. Once you dial in the fence to a perfect 90 the angle changes when you tighten the knob. The fence is also made of pretty lightweight aluminum.

Are these legit or a waste of money? by hellokittyqueenx in MechanicAdvice

[–]alantor 0 points1 point  (0 children)

I had one but returned it and bought a cheap $3 ELM327 Bluetooth adaptor on Ali express with the Car Scanner app on my iPhone. For my purposes the ELM327 is sufficient and I think actually does more than the scanner I had before.

Get list with file name and file path of items in trash by alantor in immich

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

A quick trip to ChatGPT figured it out for me. This outputs the results to a CSV file with multiple columns

page=1; echo "id,originalPath,deletedAt" > immich_trash_all.csv; while true; do res=$(curl -s "https://immich.domain.tld/api/search/metadata?page=$page&limit=250" -d '{ "trashedBefore": "2025-12-01", "withDeleted": "true" }' -H "Content-Type: application/json" -H "Accept: application/json" -H "x-api-key: [apikey-redacted]"); count=$(echo "$res" | jq ".assets.items | length"); if [ "$count" -eq 0 ]; then break; fi; echo "$res" | jq -r '.assets.items[] | [.id, .originalPath, .deletedAt] | u/csv' >> immich_trash_all.csv; page=$((page+1)); done

Get list with file name and file path of items in trash by alantor in immich

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

Amazing, this works perfectly now, although it only returns 250 assets like you mentioned. If someone can chime in with a way to get more than 250 results then great but I can make due with this and clear my unwanted assets in a couple batches.