Issue: 2024 - September/October

  • Rod explores the boundless opportunities available to software developers, likening their tools—code, compilers, text editors—to an artist's materials such as pencils and paint. He recounts a personal anecdote where a simple proof of concept using a new feature in the .NET Framework led to the creation of a fully functional call-center management system, exemplifying the power of seeing and acting on potential. Rod extends this philosophy to contemporary technologies lik...See More
  • Markus reflects on the technological developments and setbacks over the past decade, focusing on Microsoft's challenging release of Windows 8 and the underwhelming Windows Phone. He highlights Microsoft's struggles with the ill-received WinRT application platform and the poorly implemented Windows App Store, marking a period of significant brand value decline under Steven Sinofsky and Steven Balmer. Markus contrasts these with the era's broader tech landscape, including ...See More
  • Sahil explores advanced features and enhancements in Visual Studio Code (VS Code) that can significantly improve developer productivity. He delves into the robust Git integration, showcasing how developers can perform various Git operations directly within the IDE, and highlights the benefits of using the GitLens extension for enhanced version control insights. He also discusses the powerful terminal integration, which allows seamless command-line operations within the e...See More
  • In the second part of his series on developing applications with .NET MAUI, Paul delves into advanced techniques for ensuring consistency and reusability across application pages. This article covers the application of styles to controls, enabling a uniform look by centralizing style definitions. Paul demonstrates how to create and navigate multiple pages using .NET MAUI's built-in navigation system, and introduces the concept of reusable UI components with `ContentView`...See More
  • This article explores the use of job-oriented programming and pointers within the CSCS (Customized Scripting in C#) scripting language. The authors demonstrate how CSCS, a lightweight and open-source language similar to JavaScript but with case-insensitive variables and function names, facilitates the development of large applications through the use of standalone micro-modules. By leveraging the `Chain` and `Param` commands, developers can easily manage inter-script com...See More
  • Wei-Meng delves into the intricacies of managing and scaling containerized applications using Kubernetes. He begins by introducing minikube, a simplified local Kubernetes environment, and guides readers through the process of setting up a basic Kubernetes cluster. The article covers essential Kubernetes components such as Pods, Deployments, Services, NodePort, and ConfigMaps, illustrating their roles in deploying and managing applications effectively. By the end of the a...See More
  • Joydip delves into the outbox pattern as a reliable method for ensuring data consistency and reliable event publishing in microservices architectures. He provides a comprehensive guide on implementing this pattern using Apache Kafka and C# within ASP.NET Core applications, covering key components, benefits, and drawbacks. The article includes a detailed walkthrough of setting up Kafka, creating database tables, and developing both producer and consumer services. Addition...See More
  • Mike details the evolution of his team's development of a Copilot system using Microsoft's Semantic Kernel (SK) framework for Large Language Models (LLMs). Initially, Mike describes their hands-on approach to building a Copilot capable of answering legal contract queries by manually injecting relevant data into prompts. However, as the project advanced, the team adopted GPT-4 and automatic function calling, significantly simplifying their code and enhancing functionality...See More