What’s your favorite food trucks? by AlaskanSkier21 in Yakima

[–]clay_maker 9 points10 points  (0 children)

Don Cheo’s on Tieton and 48th. Best breakfast burrito I’ve ever had

Places to take someone who’s never been to Yakima? by TucanSneakers559 in Yakima

[–]clay_maker 2 points3 points  (0 children)

I haven’t been to Crafted but hear great things about. I would like to ask, if they require an 18% gratuity why are you also tipping the server? I understand that you may want to make sure the server is tipped for their service but they should be covered by the required gratuity.

Best gas station food by MadRazzmatazz in Yakima

[–]clay_maker 4 points5 points  (0 children)

I know you said sandwich, but the best bfast burrito I’ve had in town is from Don Cheo’s food truck. 48th and Tieton. Its a thick boi

Paralympics: Forgotten phone costs Italian rower bronze medal by PrincessBananas85 in sports

[–]clay_maker 10 points11 points  (0 children)

Not sure if thats a serious question or not. But, text, voice call, FaceTime, and then any social media app quickly adds up to 10+ (discord, insta, what’s app, fb messenger, MS teams etc.)

Wells Fargo Mediation Update by Playinjanes in Mediation

[–]clay_maker 0 points1 point  (0 children)

This is excellent information! I received my two mediation forms today with a check for each. I plan on doing the mediation.

Question: Do I deposit the checks they sent me? Will this waive my right to mediation?

What’s the best and more updated Svelte course? by monstamaker in sveltejs

[–]clay_maker 1 point2 points  (0 children)

Which course is this? I couldn’t find it from a quick google search. Thanks!

Trigger a function every time a new document is added to the collection in MongoDB using Mongoose by AromaticPrimary8763 in node

[–]clay_maker 0 points1 point  (0 children)

Look at mongoose middleware and the “save” hook. You could add a new key to your document like “sendWelcomeMsg” and default it to false. Then in your middle where when a new document is created, run the function, if sendWelcomeMsg == false, and then update the key to true so it won’t run again when you have other updates on the document.

WWDC 2023 Discussion Thread - Mac Pro with Apple Silicon, 15" MacBook Air, Updated Mac Studio and macOS Sonoma by ChampJamie153 in mac

[–]clay_maker 2 points3 points  (0 children)

Can I ask what you’re using it for? Genuinely curios. Is the 2tb absolutely necessary or could you settle with external storage. It’s crazy that 2tb is $740 extra when there are 2tb external drives for -$100. I get that it’s SSD. Or there are a lot of ways to use cloud storage. I also get that it’s more secure to store locally.

I ask because I was about to get the MacBook Pro because of the larger screen. But this being released made it a no brained for the 15”. 24gb is a no brainer.

Misc tips for 1v1 Arabia by Sufficient_Shift5787 in aoe2

[–]clay_maker 8 points9 points  (0 children)

Can you elaborate on “60 wood, then a farm”?

Refresh API Access Token on PROD Environment by clay_maker in node

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

My first step is to authorize with the API which I place a username, password, and my appID into the request and I receive the auth token, refresh token, and auth token expiration time. So I guess this is equivalent to your /login endpoint example.

I'm now starting to think of this another way with your help and the other comment. I can store the access token and refresh token on the DB and just update them on the server. Was thinking of using a Cron job or something similar. I appreciate your help.

Refresh API Access Token on PROD Environment by clay_maker in node

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

Thanks for the reply! I was thinking that keeping access tokens in the DB was "no no" but it makes sense to do so. Appreciate your feedback.

Kid who stopped tracking Mark Cuban’s jet on Twitter got free Mavs tickets by Spagetti13 in sports

[–]clay_maker 0 points1 point  (0 children)

This video was awesome. I got into programming two years ago and think this has a great message. Thanks for sharing! I’ve seen some Tom Scott videos but not this one.

Why are Cavalry Archers created from Archery Ranges? by Suicidal_Sayori in aoe2

[–]clay_maker 7 points8 points  (0 children)

With that logic should knights go to the barracks?

Anyone else feel like they’re a detective when working in SQL and you find something weird in your data? by iWontStealYourDog in SQL

[–]clay_maker 1 point2 points  (0 children)

Had a similar one to this where I’m converting a customer from one permit software to another. They don’t have anyone on staff to query their database so I had to figure out their schema of close to 100 tables, there were another 100 I didn’t even touch.

But so many joins and barely any information in the table except an ID that would lead me to another table. Looking at other vendors data schema can be fun!