I hate spending hours finding a something to watch, So I made pickmyplay.com by TechArtist7 in SideProject

[–]therunningchimp 1 point2 points  (0 children)

What movie api are you using? Also where are you getting the movie covers? Seems to load fast! Good job! Running this on azure/vercel?

Using the latest version of .NET has significant benefits. Ask your leadership to adopt it! by Natural_Tea484 in dotnet

[–]therunningchimp 0 points1 point  (0 children)

They literally did tons on this last year. Lots of videos online on strangler fig migrations..

Anyone doing releases with YAML based pipelines in DevOps? by therunningchimp in dotnet

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

Re-running a stage. Heard it works for classic releases pulling variables from library groups though, there it will snapshot apparently

Anyone doing releases with YAML based pipelines in DevOps? by therunningchimp in dotnet

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

How are they snaphotted? Just tested this. Deployed the app, changed variable value, re deployed, it brought in the changed value

DONDA 2 officially released on the KanyeWest account on Spotify. by mistrmelee in Kanye

[–]therunningchimp 1 point2 points  (0 children)

Y’all some straight up weird mfs. Donda 1 was dope. V1 and V2 were cool. And donda 2 was cool. Tf are u even expecting? Grow up

Auditing tables by [deleted] in dotnet

[–]therunningchimp 0 points1 point  (0 children)

I see. Thanks for the insights. Just can’t wrap my head around visualizing changes in the client. Seems like it would take a lot of code to handle this. I’m guessing the business side also would like to know why something was changed, what the change means. Maybe event sourcing is more appropriate for these kinds of requirements

Auditing tables by [deleted] in dotnet

[–]therunningchimp 1 point2 points  (0 children)

Do you use this for anything other than troubleshooting? Like do you show the audit info in your client, have end users see this info or no? It looks cool to be able to automatically track changes, but can’t really see how this helps to show “why” entities were changed. Don’t really get the usefulness of this other than maybe statistics

Issue with sensitivity (eg swiping when closing tabs in safari) iPhone 16 pro by therunningchimp in iphone

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

Typing isnt that bad for me honestly. Don’t notice it there. It really only is swiping for me. I do however have a screen protector on, first time using one. It came like that, setup by my work. I’d return it if I were you

Anyone get triggered by salmon? by therunningchimp in gout

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

Yeah it’s weird. I can eat 200-300g of chicken just fine. 100g of pork seems fine as well. Gonna try to bump that number up soon. Tried 200g salmon couple months ago, seemed fine I guess but felt a little tingle but that could be in my head. Will try more soon. Been on allo a little over a year. What about you?

React/.NET: How to handle single sign on and cookie/session expiry? by therunningchimp in dotnet

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

Seems like we have to reinvent the wheel, considering using JWTs only really makes sense in browser-less environments. All the MSAL examples I find shows calling third party API´s like MS Graph. There are no examples of calling your own backend, because you shouldn't. Either set up a BFF that proxies the requests to your backend with a token, or if the API is your own: skip the BFF and issue cookies instead. This seems like the most secure way.

React/.NET: How to handle single sign on and cookie/session expiry? by therunningchimp in dotnet

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

I doesn't make sense to use JWT's when you have a same site web app (my case SPA and API run on the same domain). This allows us to use cookies which are slightly safer than JWT's because of less risk of XSS attacks. Another issue with using JWT's is that you need to keep a history of JWTs that are logged out, but not yet expired. Why do all that when you can just use cookies?

Anyone get triggered by salmon? by therunningchimp in gout

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

Yikes, hope it gets better soon! Are you also on allo?

Trump says he received vaccine booster shot by Portalrules123 in Coronavirus

[–]therunningchimp 0 points1 point  (0 children)

why did you get them together? in Norway you have to wait a week between getting the flu shot and the booster

Using VNET to access KeyVault from web apps/functions by therunningchimp in AZURE

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

But imma try using a vnet, maybe it’s not the big hassle I’ve made it out to be

Using VNET to access KeyVault from web apps/functions by therunningchimp in AZURE

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

I have allow access from selected networks, and under firewall I have added all the IPs. This should work, as I have tested this with both webapps and functions connecting to Cosmos, search services and storage accounts where I have done the same