Last weekend I presented at LK DevConf 2020 in Letterkenny. The theme this year was cloud-native development, and the energy was incredible. My Session: Kubernetes for .NET Developers I showed how to take a .NET Core application from local development to production on Kubernetes: Dockerfile best practices for .NET Kubernetes manifests and Helm charts Health […]
Read more โSearch Results for: events
GitHub Actions for .NET: Complete CI/CD Guide
GitHub Actions has rapidly matured since its 2019 launch. For .NET developers, it offers a distinct advantage over Azure DevOps: the workflow lives right next to the code, and the marketplace for actions is exploding. This guide shows how to build a robust CI/CD pipeline for a .NET Core 3.1 Web API, including unit testing, […]
Read more โBlazor WebAssembly Preview: Building Production-Ready SPAs with C# and .NET
Blazor WebAssembly represents Microsoft’s bold vision for web development: write client-side applications in C# instead of JavaScript, running directly in the browser via WebAssembly. In early 2020, with the preview maturing rapidly, enterprises began evaluating Blazor for production scenarios. This comprehensive guide explores architecture patterns, performance optimization, and real-world deployment strategies for Blazor WebAssembly applications. […]
Read more โFeatured in Office 365 Developer Newsletter November 2019
As an Office 365 Developer and organizer of Office 365 developer events in local community, I have got an opportunity to be featured in November 2019 newsletter.
Read more โClean Architecture in .NET: Practical Implementation
Clean Architecture keeps your business logic independent of frameworks and databases. Here’s how I implement it in .NET projects. The Layers Domain: Entities, value objects, domain events Application: Use cases, interfaces, DTOs Infrastructure: Database, external services WebAPI: Controllers, middleware Project Structure Dependency Rule Dependencies point inward. Domain has no dependencies. Application depends on Domain. Infrastructure […]
Read more โVue.js Lifecycle Hooks Explained
Understanding Vue lifecycle hooks is essential for managing side effects, fetching data, and cleaning up resources. The Lifecycle Common Patterns Fetch data: created() or mounted() DOM access: mounted() Cleanup: beforeDestroy()
Read more โ