Published inTowards DevWorking Together Without Stepping on Toes: Git for Parallel DevelopmentImagine you and your friends are building with LEGOs. Sometimes, you’re all working on the main castle, but sometimes, a tower needs fixing…Apr 10Apr 10
Choosing Between Record and Class in .NET: When and WhyWhen developing in .NET, choosing the right data structure impacts code readability, performance, and maintainability. Records and Classes…Oct 28, 2024Oct 28, 2024
Why you should use IsNullOrWhiteSpace instead of IsNullOrEmpty in C#The key difference between string.IsNullOrEmpty and string.IsNullOrWhiteSpace is in what they check for:Sep 26, 2024Sep 26, 2024
Structuring JSON Payloads with JObject in C#Photo by Carlos Gonzalez on UnsplashAug 14, 2024Aug 14, 2024
Automating Reddit and Facebook API Integration for Facebook PagesIn today’s digital era, social media managers and content creators constantly seek innovative ways to engage their audience. Specifically…Mar 19, 2024Mar 19, 2024
Recovering Lost Changes After a Git RebaseEncountering a situation where you’ve accidentally aborted a rebase in Git and seemingly lost your changes can be quite alarming…Mar 1, 2024A response icon2Mar 1, 2024A response icon2
C# SMS Messaging APIs that you can useI am working on a project to send an SMS to customers, so I need to research a third-party tool that can give me the best services…Oct 5, 2022A response icon1Oct 5, 2022A response icon1
NET Core CRUD console app connected to local azure table storageFor this tutorial, I will create a CRUD Console App using .NET Core 3.1 that is connected to local azure table storage. This will help you…Jul 20, 2022Jul 20, 2022
Different ways to get a sum of an array of integers in C#This article will discuss how to calculate the sum of all elements in the array of integers in different ways. There are many solutions on…Jun 28, 2022A response icon1Jun 28, 2022A response icon1