lavanya kinJavaScript in Plain English·Jan 11Member-onlyAngular CheatsheetAngular is a TypeScript-based open-source web application framework used to build web and mobile-based applications. This article will go through some of the angular features by explaining some of its core APIs. You can follow this angular cheat sheet to build your project. …Angular7 min readAngular7 min read
Joy Ebertz·Aug 25, 2022The Art of Writing Amazing REST APIsOriginally posted September 2021 on the Split Blog When writing APIs, REST (short for representational state transfer) is considered the standard. And yet, REST itself isn’t actually a standard. This makes designing intuitive REST APIs tricky to get right. It is a way of thinking or an art form more…Rest Api9 min readRest Api9 min read
Juan EspañainByteHide·Nov 22, 2022Member-onlySenior C# Developer Shows 5 Tips To Master Your C# LevelWhat if I told you that 5 easy tips from a senior C# developer can make you an better coder? Would you believe me? Most people won’t, because we tend to assume that skill and experience are innate traits that only the most talented developers are born with. While that…Csharp6 min readCsharp6 min read
Theodoros Karropoulos·Nov 22, 2022Fluent BuilderAnother way to implement the [builder pattern](https://thkarropoulos.hashnode.dev/builder-pattern) is with fluent builder. Fluent builder provides a more readable and straightforward way to create objects. …Design Patterns4 min readDesign Patterns4 min read
Aziz Omar·Aug 4, 2022How Does Garbage Collection Works in C# ?Garbage collection (GC) is a mechanism that modern programming languages use to manage memory and dispose of unreachable objects. When an object is instantiated GC allocates memory for that object. When the object is no longer used the memory that it is occupied must be released. …Garbage Collection4 min readGarbage Collection4 min read
Zuhair Mehtab·Nov 27, 2022CRON Scheduler with .Net CoreSchedulers are applications that perform some tasks periodically. One of the terms that most developers are familiar with regarding schedulers is — CRON jobs. It is a very useful application as it can run in the background. I was recently trying to build a scheduler in ASP.Net core using Quartz.Net…Dotnet Core12 min readDotnet Core12 min read
Farhan TanvirinCodeX·Nov 29, 2022Member-only7 Useful .NET Libraries You Should Use in Your Next ProjectPower up your .NET development — There is a proverb “You don’t have to reinvent the wheel”. Libraries are the best example of that. It helps you to write complex and time-consuming functionality in an easy way. According to me, a good project uses some of the best libraries available I do not think .NET needs…Dotnet5 min readDotnet5 min read
Anthony Trad·Dec 4, 2022Member-onlyThe correct way of writing If conditions in your code?Bending the Clean Code Principles — Introduction IF/ELSE conditions are part of any algorithm you write daily. While this seem trivial and easy, most people (including me) some time do not use them correctly. Because they are everywhere, you can easily get to the point where you don’t know what you’re doing anymore. So how do we…Microsoft5 min readMicrosoft5 min read
Anton Shyrokykh·Jul 12, 2022Simple steps towards boosting ASP NET Core application performanceFacing performance-related issues while developing applications is a matter of time. After searching using different data sources, you will find a list of performance advice for concrete situations and the entire application. In this article we will consider performance advice, which aims to boost entire application performance with maximum effect…Aspnetcoreapi14 min readAspnetcoreapi14 min read
Sasha MathewsinGeek Culture·Nov 24, 2022Member-onlyHow to Make the Code Hard to Misuse?With C# examples. — Code that a developer writes will be reused by that developer sometimes later or by other developers. Code reuse is something that is used regularly — new functionality is developed on top of existing reusable components. When you introduce new code, you have a great opportunity to try to make…Csharp6 min readCsharp6 min read
Dreamix·Dec 6, 2022Key performance changes in .NET Core 7: an overviewWith .NET Core 7 already here, you’re probably wondering what to expect from Microsoft’s new framework. Let’s find out. I started by creating and running an empty Web API project. I saw that .NET Core 7 requires around 40% less memory than its predecessor. To be honest, I was surprised…Dotnet5 min readDotnet5 min read
Mina PêcheuxinCodeX·Nov 17, 2022Member-only😎 The power of C# reflectionHow many of those C# reflection tricks do you know? — Reflection is an incredible tool that allows you to interact with your object types at runtime. …Csharp6 min readCsharp6 min read
Dmytro Misik·Nov 11, 2022C# 11 My Personal Top FeaturesNew features I like the most — New .NET 7 was released on the 8th of November, 2022, together with C# 11 compiler: .NET 7 is Available Today Jon Douglas Jeremy Likness Angelos Petropoulos Download .NET 7 today! .NET 7 brings your apps increased performance and…devblogs.microsoft.com C# has several new language features you can now use to develop your applications. Let’s review my personal most liked new features!Csharp4 min readCsharp4 min read
CN·Jun 30, 2022The 28 Laws Of Coding!Part 1! — Before we go through anything, I would really appreciate it if you would follow me on Instagram. I post about tech there as well. However, I haven’t posted there in a while so the numbers have really gone down. But that’s enough of that. Here are the 28 Laws Of…Code3 min readCode3 min read
Juldhais Hengkyawan·Nov 25, 2022Easy Way to Implement Second-Level Cache in Entity FrameworkEntity Framework second-level cache using in-memory cache — Second-level caching is a technique that stores database query results in the application-level cache so they can be accessed more quickly on the subsequent request. Implementing a second-level cache can improve application performance significantly. Popular ORMs like Hibernate have had this feature for a long time, but unfortunately, Entity Framework…Csharp3 min readCsharp3 min read