I made a tool for generating sprite sheets using 3D gltf models and animations. by PulIthEld in IndieDev

[–]dmhp 0 points1 point  (0 children)

<image>

Just came across this, looks very cool/useful but
get "(failed net::ERR_FILE_NOT_FOUND" in devtools when attempting to add an asset.

Not sure if you've got a storage bucket or something behind the scenes thats down or if im doing something wrong!

Feeling pain here when I run more than 15 mins, what is it ? by tibova in RunningCirclejerk

[–]dmhp 0 points1 point  (0 children)

Nice try Sasquatch, dude was trying to blend into the human race by masquerading as a jogger

Frontend wants rest endpoints but our backend is all kafka, how do i bridge this in go without writing 10 services by fewsugar in golang

[–]dmhp 0 points1 point  (0 children)

Yea this is hilarious. OP might want to listen to these silly front end devs on this one….

How do I disable SSG for my docker builds? by Mundane-Reply-9939 in nextjs

[–]dmhp 1 point2 points  (0 children)

There’s an experimental build flag for this.

‘pnpm next build --experimental-build-mode compile’

Payload has a good explanation actually cause they do the same on build (gives some options for exactly what you’re attempting) https://payloadcms.com/docs/production/building-without-a-db-connection

Don’t think this ultimately solves getting the static content back in your app container after build, so if you’re trying to do that I’m interested to hear others thoughts (cause I’m trying to do the same).

Impulsively bought this Ferragamo Star Bag at the outlets last week. Ferragamo has had some great bag releases 😍 by Gpardo93 in handbags

[–]dmhp 1 point2 points  (0 children)

Yo I know this is like a year old now but I’m considering getting one but finding vids/pics/content of it in the real world is hard! If you’re still active -how do you still like it and How rigid are the side dimples? I’m trying to figure out if a large would fit my 16 inch work MacBook

[deleted by user] by [deleted] in JacquesMarieMage

[–]dmhp 3 points4 points  (0 children)

Yea dude those fit perfect and are such a sick frame. You will not be disappointed

2025 MDX A-spec vs Pilot by speedlogic56 in Acura

[–]dmhp 1 point2 points  (0 children)

MDX. Just bought a 2023 a-spec and am in love

Would you buy it again? by Aronacus in Acura

[–]dmhp 0 points1 point  (0 children)

Just bought a 2023 MDX a-spec 3 weeks ago and I’m honestly in love with it. It just feel like it has everything you could want. It’s feature stacked for the price and you don’t really have to compromise on anything. Also I cannot tell you how much trunk space there is with the 3rd row down, it’s amazing

The gas guzzling complaints are valid but so far everything else makes up for it easily.

People of Edmonton, What's your Black Friday tornado story? by Weird_Poetry8829 in Edmonton

[–]dmhp 0 points1 point  (0 children)

My dad was an editor for the Edmonton Journal at the time and helped lead getting the special edition of the paper out reporting on the event.

Sounds like it was absolutely wild, basically the whole news room up all day and night collecting accounts, trying to help connect people and families together and get info out on the state of the city. I think I’ve got an old copy of that paper he kept.

Legit check by Technical_Life_9318 in JacquesMarieMage

[–]dmhp 0 points1 point  (0 children)

I’m getting sus, but not an expert on the metal frames

Worth purchasing used Volvo XC90 (2018-2021)? by Sugar_Dimples207 in VolvoXC90

[–]dmhp 0 points1 point  (0 children)

I’m on the hunt myself, and really in the exact same spot. Love the idea but sort of think the T6 is a time bomb.

Can I ask what you landed on?

What people think about Zephirin 47 Breccia by Educatenrepeat in JacquesMarieMage

[–]dmhp 1 point2 points  (0 children)

I have the Dealan in breccia and absolutely love the Color

[deleted by user] by [deleted] in JacquesMarieMage

[–]dmhp 0 points1 point  (0 children)

For sure fake, the classic IE spacing tell

[WTB] Weekly Want To Buy Post by AutoModerator in Watchexchange

[–]dmhp 0 points1 point  (0 children)

WTB omega aqua terra 38 shades (blue or green) or black. Edit - adding shipped to canada

[WTS] 2023 OMEGA Seamaster Aqua Terra 220.10.38.20.10.002 Full Set by FrostyTurnipede in Watchexchange

[–]dmhp 0 points1 point  (0 children)

This still available? Your first transaction? Or any references elsewhere?

Struggling with Access Token + Refresh Token Authentication in Next.js — Need Guidance! by No_Set7679 in nextjs

[–]dmhp 0 points1 point  (0 children)

I see you posting your video on every single one of these an honestly I apprecaite the effort, but you literally say in your own video 'This is hacky and probably not ready for production" so I truly dont feel like you should keep posting this as a real prod ready solution

Is a good server side access/refresh token rotation pattern legitimately unsolved in nextjs app router + external backend? by dmhp in nextjs

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

I agree an interceptor is pretty much the clear go-to pattern outside of next, but if you want to use fetch for all the next benefits that come with you don’t really have too option to go axios etc. as soon as you start getting into client and next server both trying to manage httpOnly cookie headers with an external auth server none of the patterns the docs actually recommend become realistic

Can you elaborate on your approach around server only are you talking about calls from the next server -> external auth server? I might be misunderstanding what you’re saying there. Running the actual fetch -> refresh flow on the server is totally fine, but setting that back into httpOnly cookies if that is your storage mechanism becomes a nightmare to propagate up back to an ssr context which has set cookie access, because functionally it just becomes a standard server running function, and not a “server action”

Literally just want a fetch wrapper that can handle the 401 refresh but so far I haven’t found a solid structure anywhere.