Tag: C#
-
API strategy and architecture
Designing a modern, high-quality API in 2026 with ASP.NET Core requires more than just knowing the syntax. It’s about choosing an architecture that scales with your team and implementing strategies that ensure long-term…
-
Why i am choosing C# over Python
Python is the best programming language in the world! but i choose C# rather than Python. Here is why. However, Python win in areas like: why i am choosing C#, because in the end…
-
Grabbing Music Lyric as a GEN AI dataset
So we have a mission to get lyrics for a music. Here are some APIs we can use to fetch song lyrics: Lyrics.ovh API — Public APIs. A simple and free API that…
-
12 ways to secure your codes in the cloud
When building software in C# and .NET we need to create secure codes to make sure that the software is running well. Here are some keys steps to implement secure code: using System.Text.RegularExpressions;…
-
Creating database unit test with GitHub Copilot
Step-by-Step Guide Example Explanation Using GitHub Copilot, you can generate similar unit tests by providing clear prompts and leveraging its code suggestions to streamline the process.
-
Is Object Oriented Still Applicable?
Cloud era do We need OO? This is q good question. We have a lot scripting framework that can be used to develop sophisticated web. We have low level codes that can help build…
-
Video Game Development in .NET Framework
Video game development in Visual Studio Microsoft loves video games. Xbox, Game Pass, and DirectX is a real proof that Microsoft is committed to video game. As a result, we see a lot opportunity…
-
Consuming Rest API in an Easy Way
Background There are numerous ways to consume REST API in C#. Starting with HttpClient, WebClient, HTTPWebRequest and Third-Party API. On this post, I will show you how to consume REST API in an easy…