Opaluwa Emidowo-ojotech-on-diapers.hashnode.dev·Aug 30, 2024Implementing Microservices Architecture with ASP.NET Core Web APIsHello! Have you ever wondered what a microservice architecture is or how to use Web APIs for microservices? Don’t worry—you're in the right place! Think of a microservices architecture as a big machine made up of many small, specialized parts. Each p...Discuss·20 likesMicroservices
Opaluwa Emidowo-ojotech-on-diapers.hashnode.dev·Aug 26, 2024Implementing Resilience Patterns in ASP.NET Core Web APIs: Circuit Breaker, Retry, and Timeout PoliciesWelcome back! We have a brand-new technical tutorial today. Still discussing Web APIs, we are going to learn how to implement resilience in our APIs. Web APIs often interact with other services or databases, and sometimes, things can go wrong—like a ...Discuss·20 likesTimeout policies
Mohtasim Ahmedeftythoughts.hashnode.dev·Aug 25, 2024Asynchronous Javascript - Callbacks, Promises, Async-Await | (A detailed overview)First of all, we need to know about Asynchronous Javascript and Synchronous Javascript. Javascript is a single-threaded programming language. In simple words, JavaScript can do one thing at a time. And javascript runs codes step by step (one after an...Discusssynchronous
Opaluwa Emidowo-ojotech-on-diapers.hashnode.dev·Aug 16, 2024Monitoring and Logging in ASP.NET Core Web APIs: Using Application Insights and ELK StackWelcome to the 13th installment of our series, glad to have you back! Today's technical tutorial is a guide to tracking and logging in ASP.NET Core Web APIs using application insights, and the Elasticsearch, Logstash, and Kibana stack. When you build...Discuss·20 likeselk-stack
Bhavesh Jadhavbhaveshjadhav.hashnode.dev·Aug 13, 2024Today, I Deepened My Understanding of the fetch FunctionHey folks! Today, I delved into something that's been a part of my coding life for a while, but I never really stopped to appreciate its inner workings—the fetch function. It's a crucial tool, especially in web development, where we're constantly dea...Discuss·10 likes·26 readsJavascript Basicsfetch API
Esam Hagalbashirezooon.hashnode.dev·Aug 1, 2024LinkedIn API Tutorial: Posting Images and TextLast week I was jumping from one tap to another, so I could post on LinkedIn from Time Logger an application I'm building, even the documentation from Microsoft was outdated. After so many StackOverflow questions and ChatGPT prompts, it worked.So her...DiscussLinkedIn API
Nirav Soniniravsoni.hashnode.dev·Jul 6, 2024How to Retrieve Client IP Address in .NET Core API behind Proxy(s)In this blog, let's go through how we extract Client IP addresses within a .NET Core Web API. Proxy servers, load balancers, and other network appliances often hide information about the request before it reaches the app: When HTTPS requests are pro...Discuss·5 likes·165 reads.net core
Nile Bitsnilebits.hashnode.dev·Jul 2, 2024APIs vs. Endpoints: Breaking Down the DifferencesDespite being basic ideas in web development and programming, APIs and endpoints can lead to misunderstanding. These phrases have different meanings and purposes, despite their close relationship and sometimes interchange, which leads to misunderstan...DiscussAPIs
Aniket Dhaygudeaniket04blog.hashnode.dev·Jun 29, 2024"Mastering Web APIs in JavaScript: setTimeout, setInterval, fetch(), and DOM Manipulation"Exploring Essential Web API Functions in JavaScript JavaScript, the ubiquitous language of the web, is enriched with powerful Web API functions that enable developers to perform a variety of tasks. In this blog, we'll delve into some of these essenti...Discuss·10 likesJavaScriptuseful 10
Rajasekarrajasekar.dev·Jun 23, 2024Store and retrieve settings using IOptions pattern in C#Introduction - Importance of managing settings in applications Storing and reading settings/configurations is a common scenario in any application. General examples include connection string, app settings, etc. Reading such settings should be easy, s...Discuss·60 readsWeb Development