top of page
Search

How to schedule tasks in .NET?
In this post, we want to expand functionality of our web service with some additional features, such as SMS reports. This post aims to...
The Tech Platform
Dec 8, 2021

JIT Compiler in .NET
Compilers are tools that translate source code to machine understandable language. In .Net, the CLR provides a compiler that converts...
The Tech Platform
Dec 4, 2021

Testing gRPC with gRPCui Docker and Swagger
After writing my first sample gRPC application, I was trying to find different ways of testing it. So with little bit of search I was...
The Tech Platform
Nov 26, 2021


How to use Polly in .NET
Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit...
The Tech Platform
Nov 26, 2021


How to use IDisposable in ASP.NET Core
In ASP.NET Core, the IDisposable interface provides a mechanism for releasing unmanaged resources used by a class. It allows developers...
The Tech Platform
Nov 12, 2021

Multithreading and parallelism with C # examples in the .NET platform. Minimized simple description.
Greetings to all who are not indifferent to the topic of multithreading and parallelism. This time we will dive a little deeper and see...
The Tech Platform
Oct 28, 2021

Introducing Clean Blazor
In web development, starting a new project often means wading through a sea of boilerplate code. This boilerplate, while useful in some...
The Tech Platform
Oct 24, 2021


Enum as Required Field in ASP.NET Core WebAPI
Enums in C# are a set of named constants that represent a finite list of values. They are used to define a set of related named...
The Tech Platform
Oct 22, 2021

.Net 5 Web API with Ocelot - Multiple Auth Schemes JWT
Ocelot its a great package which provide resources to build Api gateways. If you aren’t familiarized with this concept, check this link...
The Tech Platform
Oct 18, 2021

Functional DI in Nodejs for .Net developers
At Ohpen our main stack is .Net and we love it :) ! It serves well to create performant web apis with many endpoints. When I started...
The Tech Platform
Oct 12, 2021
bottom of page