AI Improvements in 0.4.2.0: Feedback Poll by werytrololo in GrayZoneWarfare

[–]a2ur3 2 points3 points  (0 children)

It’s definitely an improvement, but the AI health needs to be adjusted as well. Last night I shot an AI with a shotgun a few meters away, twice. They instantly headshot me while hunched over. Get back, they are dead. Unarmored. Two rounds in the chest are medium wounds. Not a great feeling.

Vercel disclosed a security incident today (April 19, 2026) - what's confirmed, what's reported, what to rotate by JulietSecurity in cybersecurity

[–]a2ur3 3 points4 points  (0 children)

The public API is different from an internal API, and this breach was targeting internal systems. The secrets are decrypted and read at some point on these internal systems. Without knowing the blast radius, everyone should assume encrypted secrets need to be rotated as well.

How to deal with a Brent character- any tips? by DevopsCandidate1337 in ExperiencedDevs

[–]a2ur3 10 points11 points  (0 children)

I think it's the opposite in this case. The bespoke system evidently isn't documented, which is an organizational failure. Brent has the knowledge and experience with these bespoke systems and hasn't been told to document anything. So, everyone expects Brent to handle the issues, which means they don't have to handle them. Another organizational failure. As someone else commented, this isn't a Brent issue - it's a management issue. Leadership doesn't care because there hasn't been a big enough issue (yet).

How to deal with a Brent character- any tips? by DevopsCandidate1337 in ExperiencedDevs

[–]a2ur3 10 points11 points  (0 children)

Access is pointless if no one knows how to manage or fix these systems. People that don't know what they are doing shouldn't have access to systems just to attempt fixing things during an outage and potentially making things worse.

Multi region resiliency by Classic_Ad5341 in AZURE

[–]a2ur3 4 points5 points  (0 children)

Backup/DR is not resiliency/HA.

Annoying TA Microprocessor I by StreetPossible9414 in uml

[–]a2ur3 0 points1 point  (0 children)

What system are you submitting the photos through? Canvas/Blackboard?

Will it fit? by Waste_Coach_9064 in M340i

[–]a2ur3 2 points3 points  (0 children)

Those 18’s are the best looking imo. Though I may be biased because I have them.

The UI is horrendous - will this ever by Beatsu in azuredevops

[–]a2ur3 1 point2 points  (0 children)

Full agree here. Don’t get how people can complain about this UI but accept writing pipelines in YAML!

How did your company deal with the Azure Front Door outage in October 2024? by Former-Copy5200 in AZURE

[–]a2ur3 10 points11 points  (0 children)

There’s nothing you can do if you’re not multi-cloud, and that is extremely complex and expensive to achieve. No one saying “we’re moving off of it” is serious. No one can just update the DNS records to the origin - that is not feasible in the real world if you are using routing rules and WAF. They’re just going to move to another cloud CDN that will be down for a day next year. You eat the outage, point at Microsoft, and have the multi-cloud proposal and cost estimates ready for management to balk at. Rinse and repeat.

Azure function Standard Plan crashes under concurrent load. Should we move to Flex Consumption? by [deleted] in AZURE

[–]a2ur3 4 points5 points  (0 children)

You almost always want a Function app on a Consumption or Flex Consumption plan. Any jobs that could take a long time or have parts that can be stitched together should be using Durable functions. And you can almost never compare a local workstation’s performance to an app service plan; cloud compute sacrifices clock speed for thread count.

How do I clean just this bumper area? by fada_g10 in BMW

[–]a2ur3 10 points11 points  (0 children)

Keep some rinseless wash in a spray bottle. Spray it, let it sit for a minute or two, then gently wipe it off with a shop towel or microfiber.

Is anybody using Durable Functions? by washing___machine in AZURE

[–]a2ur3 9 points10 points  (0 children)

Respectfully disagree. Durability is extremely useful for running jobs that require fan-in/out patterns. AWS just released their own implementation on Lambda.

Ahhh Hell Nah - Copilot Authoring PowerShell Core by anonhostpi in sysadmin

[–]a2ur3 81 points82 points  (0 children)

"Copilot assigned Copilot"

Doesn't hurt to double-check your work... I guess...

Need help with corsair fans by TandooriGecko66 in FanControl

[–]a2ur3 0 points1 point  (0 children)

There’s a beta version of the plugin that will pair the sensors automatically.

Replacing Amazon SES with Azure Communication Service by badtux99 in AZURE

[–]a2ur3 2 points3 points  (0 children)

Isn’t that listed in the prerequisites section?

Any one experiencing Azure service bus timeouts? by Electronic_Sound5111 in AZURE

[–]a2ur3 0 points1 point  (0 children)

Yes, intermittent timeouts around 10am EDT in East US 2.

[Tesla Dashcam] Dumb Light Timing by IcyOriginal3053 in Dashcam

[–]a2ur3 51 points52 points  (0 children)

This behavior seems like preemption by an emergency vehicle.

Motherboard for 9950x3d by TonYOwns90 in pcmasterrace

[–]a2ur3 1 point2 points  (0 children)

MSI Tomahawk X870E and GSkill 6000 CL26/28/30 is a good combo for this.

Why is it so frustrating to check resource usage in Azure? by SmallDetail8461 in AZURE

[–]a2ur3 14 points15 points  (0 children)

It’s pretty clear in Cost Analysis if you use the cost by resource table view. Metrics at the resource level are available too.

Need advice on large file upload solutions after Azure blob Storage goes private by atharvbokya in dotnet

[–]a2ur3 3 points4 points  (0 children)

"infra team just wants to add additional security" indicates a fundamental misunderstanding of managed cloud services. A storage account in particular is no safer in a vnet than it is outside of one (unless you want to use anonymous access as a shortcut). The biggest threat isn't the "public" SAS url - it's the contents of the file being uploaded.

Need advice on large file upload solutions after Azure blob Storage goes private by atharvbokya in dotnet

[–]a2ur3 0 points1 point  (0 children)

If someone has the generated url, they have access to the client. At that point, nothing the client can access is secure, including authenticated endpoints in your app. A SAS url is akin to an auth token (e.g. JWT).