If you haven’t upgraded to Terraform 0.12 yet, now’s the time. The new HCL2 syntax is a game-changer for infrastructure code. Here’s what changed. Major Improvements First-class expressions: No more interpolation everywhere For expressions: Transform collections inline Dynamic blocks: Generate nested blocks programmatically Improved type system: Better validation and error messages Old vs New Syntax […]
Read more โSearch Results for: name
Azure Functions 3.0: What’s New for .NET Developers
Azure Functions 3.0 is now generally available, bringing .NET Core 3.1 support and significant improvements. Here’s what developers need to know. Key Improvements .NET Core 3.1 Support: Run your functions on the LTS version Dependency Injection: First-class DI in the functions runtime Improved Cold Start: Faster startup times in consumption plan HTTP Triggered Functions: ASP.NET […]
Read more โC# 8.0: Nullable Reference Types in Practice
The “Billion Dollar Mistake” – the null reference – is finally being addressed in C# 8.0. Nullable Reference Types (NRT) are not just a compiler check; they are a fundamental shift in how we design software. Enabling NRT To enable it, add <Nullable>enable</Nullable> to your .csproj. Prepare for a sea of yellow warnings. Do not […]
Read more โMicrosoft Teams Development: Building Tabs with SPFx
SPFx web parts can run as Microsoft Teams tabs. Here’s how to make your web parts Teams-aware. Enable Teams Support Detect Teams Context Deploy to Teams Build and package SPFx solution Deploy to app catalog (sync to Teams enabled) Add app to Teams channel References Building for Teams
Read more โTypeScript with React: Type-Safe Components
TypeScript makes React development safer. Here’s how to type your components properly. Function Components useState with Types Event Handlers References React TypeScript Cheatsheet
Read more โReact Testing with Jest and React Testing Library
React Testing Library encourages testing behavior, not implementation. Here’s how to write effective React tests. Setup Basic Test Async Testing Guidelines Query by role, label, or text – not test IDs Test user behavior, not implementation Avoid testing internal state References React Testing Library
Read more โ