C# Tip: LINQ’s Enumerable.Range to generate a sequence of consecutive numbers
Read Time:1 Minute, 48 Second When you need to generate a sequence of numbers in ascending order, you can just use a while loop with an enumerator, or you can use Enumerable.Range. This method, which...
View ArticlePython Django vs. Flask
Table of Contents Python is a handy tool for web development. In fact, Python is known for its great web development frameworks, Flask and Django, and its ability to adapt fast to technological...
View ArticleWhat is Polkadot’s parachain all about
Source: miro.medium.com Introduction You must have heard about Polkadot’s parachain and parachain auction. What is Polkadot? What is its structure? What is a parachain auction? What are some of the...
View ArticleHow to access SFTP server in Python
Table of Contents SFTP (Secure File Transfer Technology) is a secure file transfer protocol for sending files over the internet. It allows you to access, transmit, and manage files over any secure...
View ArticleHow to propagate HTTP Headers (and Correlation IDs) using HttpClients in C#
Imagine this: you have a system made up of different applications that communicate via HTTP. There’s some sort of entry point, exposed to the clients, that orchestrates the calls to the other...
View ArticleHow to Automate Microservices on AWS
Introduction As organizations rapidly move towards cloud adoption, they are also looking at microservices and an agile way of development, deployment, and testing. With such rapid adoption, large...
View ArticleC# Tip: use the @ prefix when a name is reserved
You already know it: using meaningful names for variables, methods, and classes allows you to write more readable and maintainable code. It may happen that a good name for your business entity matches...
View ArticleHow to deploy .NET APIs on Azure using GitHub actions
With Continuous Delivery (CD), you can deploy your code in a fast-paced and stable way. To deploy applications, you’ll need workflows that run and automate the process. In that way, you don’t have to...
View ArticleAchieving end-to-end type safety in a modern JS GraphQL stack – Part 1
In this article, we will create a simple GraphQL application, a message board, by combining many recent open-source technologies. This article aims to be a showcase of technologies that work well...
View ArticleHow to create an API Gateway using Azure API Management
If you’re building an application that exposes several services you might not want to expose them on different hosts. Consumers will have a hard time configuring their application with all the...
View Article