atlas news
    
Rahul Nath
14  octobre     06h57
C# Yield Return Statement: A Deep Dive
Rahul Pulikkot Nath    Iterator methods are methods that create a source for an enumeration. The yield method is used to define an iterator method. While you can implement the IEnumerable interface, iterators makes it much more easier with the yield statement. Let’s learn more about this.
04  octobre     05h19
Exploring Amazon S3 Conditional Operations From .NET Application
Rahul Pulikkot Nath    Amazon S now supports conditional requests. You can use conditional requests to add preconditions to your S operations. If the precondition is not met it will result in the S operation failing. Let’s learn about Conditional Reads and Writes in Amazon S and how to use it from .NET
26  septembre     04h56
A Beginner’s Guide to MassTransit and RabbitMQ in ASP NET
Rahul Pulikkot Nath    MassTransit is a powerful .NET library for building distributed systems. Let’s learn how to set up MassTransit using RabbitMQ transport from an ASP NET application. We will also learn the default queue topology MassTransit sets up on RabbitMQ transport.
15  août     06h18
Step By Step Guide: Deploying ASP NET API To AWS Elastic Beanstalk Using Visual Studio Toolkit
Rahul Pulikkot Nath    In this post let’s explore step by step how to deploy an ASP NET Web API application to AWS Elastic Beanstalk. We will use the Visual Studio Toolkit to deploy the application and create multiple environments.
12  août     06h47
Monitor Your Applications: Health Checks in ASP NET Core
Rahul Pulikkot Nath    ASP NET Health Checks feature lets you monitor and report on the health of your web application and its dependencies.
08  août     05h24
AWS RDS and .NET: Step-by-Step Guide for SQL Server Setup
Rahul Pulikkot Nath    Amazon Relational Database Service RDS is a managed database service on AWS Cloud. RDS provides different database engines; in this post, we will focus on SQL Server. We will set up a Microsoft SQL Server database on RDS and connect to it from a .NET application.
06  août     06h09
Beyond CRUD: Leveraging DynamoDB Transactions for Complex Operations in .NET
Rahul Pulikkot Nath    Amazon DynamoDB Transactions simplifies the developer experience of making all or nothing changes to multiple items within and across tables. In this post, let’s learn about TransactWriteItems and how to use them when building .NET applications.
02  août     06h53
Escaping the Cancel Button Trap: AbortController and CancellationToken in ASP.NET API
Rahul Pulikkot Nath    Canceling a long running process from a UI form doesn’t mean the server has stopped processing the work. Let’s learn how to use AbortController and CancellationTokens to help cancel a task all the way down when building ASP NET applications.
29  juillet     06h41
Deploying a .NET Web API on Amazon ECS: A Step-by-Step Guide
Rahul Pulikkot Nath    Let’s learn some of the core concepts of ECS, while deploying an ASP NET Web API application on Amazon ECS using Fargate. we will explore some key components of ECS, including task definitions, tasks, services clusters, etc.
24  juillet     07h05
Deploying a .NET Web API on Amazon EC2: A Step-by-Step Guide
Rahul Pulikkot Nath    Let’s learn how to leverage Amazon EC to host your .NET applications. In this post, we will learn how to create an EC instance, set it up with .NET runtime, upload your .NET application, and run it from there.
19  juillet     03h54
Getting Started with Async Enumerables: A .NET Developer’s Guide
Rahul Pulikkot Nath    AsyncEnumerables enhances eumeration of collections with asynchronous capabilities. In this post, let’s explore how C combines ’yield return’ with ’async’ and ’await’ to create efficient asynchronous data streams and how ’await foreach’ lets us effortlessly consume them.
11  juillet     02h44
Enable Versioning on Your Amazon S3 Buckets
Rahul Pulikkot Nath    Amazon S versioning is a powerful feature that allows you to preserve, retrieve, and restore every version of every object in your bucket. In this post, let’s explore S versioning and how to use it when building .NET applications.
10  juillet     10h03
Efficient File Bundling in ASP NET: A Guide to Streaming ZIP Archives
Rahul Pulikkot Nath    Bundling files into a zip archive for downloading via an API endpoint is a common requirement for many applications. Let’s learn how to stream zip archive files from ASP NET API Endpoint to the end user.
01  juillet     06h43
http Files Explained: Boost Your ASP NET Core API Development Workflow
Rahul Pulikkot Nath    http files provide an easy way to invoke API endpoints without leaving your IDE. Learn how to create and update .http files, send HTTP requests, and manage different configuration support for your API development.
15  avril     05h53
RabbitMQ Topic Exchange Explained
Rahul Pulikkot Nath    Topic Exchanges in RabbitMQ route messages based on wildcard matches on the message routing key specified on the queue binding. With Topic Exchanges, consumers can subscribe to topics they are interested in, like subscribing to a feed or individual tags.