One forgotten form is all it takes for a bot attack to disrupt your site.
We recently caught a spam storm on a "hidden" legacy form. Audit every entry point—if it accepts input, it needs reCAPTCHA or bot protection. No exceptions.
One forgotten form is all it takes for a bot attack to disrupt your site.
We recently caught a spam storm on a "hidden" legacy form. Audit every entry point—if it accepts input, it needs reCAPTCHA or bot protection. No exceptions.
Mixing sync EF Core calls in async actions? You're starving your thread pool.
Blocking threads for DB I/O kills scalability. Replace FirstOrDefault() with FirstOrDefaultAsync(). Go async from repo to controller. Don't use .GetResult().
Is your site lagging on cache expiry? You might have a cache stampede.
If 100 threads miss the cache at once, they all hit your DB. Solve it with double-checked locking using SemaphoreSlim. Only one thread fetches; the rest wait for the result.
Stop using new HttpClient() inside your services!
Even with a using block, you’re prone to socket exhaustion under load. The OS can't recycle them fast enough.
The fix? Inject IHttpClientFactory. Let the factory manage the handler lifecycle for you.
Building custom property editors in CMS 13? Good news: you can finally drop Dojo. 🚀
Modern JS frameworks like React are now supported via the JS SDK. No more legacy UI lock-in just a massive DX win for your team.
#Optimizely
I'm going to keep going on about this until everyone I know joins =)
https://app.daily.dev/squads/optimizelytech
Please join my #Optimizely community on daily.dev great place to share articles and insights into the platform
Heads up, .NET devs: ASP.NET Core 2.3 officially hits end of support on April 13, 2027.
If you’re still relying on it for .NET Framework compatibility, the clock is ticking. Start planning your migration to a modern .NET version now.
Staying on top of CMS updates is a full-time job. Let's make it easier. Join the Optimizely Tech Squad on daily.dev to share resources, solve DX headaches, and connect with other developers.
Join us: https://app.daily.dev/squads/optimizelytech #Optimizely #DotNet