.NET 8 and Blazor United / Server-side rendering
Explores .NET 8's new Blazor Web template, unifying server and WebAssembly models with per-component server-side rendering.
Explores .NET 8's new Blazor Web template, unifying server and WebAssembly models with per-component server-side rendering.
Explores the performance impact and technical details of memory alignment for double arrays in .NET, including benchmarks.
A .NET developer shares technical interview questions focused on C#, SOLID principles, async/await, and database queries to assess problem-solving skills.
A guide on deploying a Python/Django SaaS application to Heroku, covering production setup and DNS configuration.
Explores .NET 8's new UnsafeAccessorAttribute for faster, AOT-friendly reflection, comparing it to traditional methods with benchmarks.
Explains how browsers expand click targets for accessibility and provides WCAG guidelines for developers to ensure accurate user interactions.
A guide to automatically converting SVG files to PNG during the build process in .NET projects using MSBuild and the Svg.Skia.Converter tool.
A critique of the Hyprland Wayland compositor's toxic community culture, citing hateful behavior and lack of moderation.
A tutorial on building a minimal clone of ASP.NET Core from scratch to understand its core concepts like the web server, controllers, and middleware.
Explains how to create a ChunkedList<T> in C# to avoid Large Object Heap issues when storing massive amounts of data.
Configuring SendGrid's Inbound Parse webhook to receive email responses in a Django SaaS project, including security setup.
A developer's weekly learning log covering Power BI data refresh, LLM architectures, Azure OpenAI costs, AI news, Python in Excel, and Azure SQL updates.
A technical guide on building and deploying a custom machine learning model using Vertex AI on Google Cloud, implemented with Go, Python, and Docker.
Explains the memory leak issue with C# events and demonstrates how to implement the Weak Event pattern using weak references.
A developer shares weekly progress on multiple projects, including iOS game updates, cross-platform mobile development, and podcast management.
A guide to upgrading Java projects from version 17 to 21, covering new features, potential migration issues, and best practices.
Introduces Azure Quick Review (azqr), an open-source CLI tool for scanning Azure resources and generating compliance reports.
Explains the difference between auto-property initializers and expression-bodied getters in C#, showing how each affects property value evaluation.
Explains unexpected behavior of C#'s Enum.TryParse method and provides a solution using Enum.IsDefined for validation.
Explains the advantages of creating custom fakes for unit testing in C#/.NET instead of relying on third-party mocking libraries like Moq.