Categories
Articles

NASA’s 10 Rules for Space-Proof Code

How NASA Writes Space-Proof Code: A Deep Dive Developing software for space exploration demands precision, as failures can jeopardize lives and missions worth billions. NASA’s software development process ensures unparalleled reliability through a combination of meticulous practices: 1. Keep Control Flow Simple Space missions can’t afford confusing code paths. NASA emphasizes simplicity, adhering to clear […]

Categories
Articles

Creating smaller and more secure docker images for .NET 8.0

In this article, I will explain how we can write better and more secure docker images. The docker images will be smaller and contain fewer dependencies. This is a default docker file for creating a docker image: Pro tip: call the docker init command to generate all the needed docker files for your project. This […]

Categories
Articles

How to Reply to Booking.com Reviews in Seconds with AI – Free Tool for Hosts

As a Booking.com host, replying to guest reviews is essential for building your reputation, boosting your ratings, and showing future guests you care. But let’s face it—responding to every review, especially when you’re short on time, can be a hassle. What if you could reply to reviews instantly, without writing a single word? Meet Booking.com […]

Categories
Articles

Kubernetes Cheatsheet

What is Kubernetes? Azure Container Apps vs Azure Kubernetes Service How to install Kubectl commands More: https://kubernetes.io/docs/reference/kubectl/cheatsheet Kubernetes + YAMLs Kubernetes Dashboard https://github.com/kubernetes/dashboard Docker commands Other links

Categories
Articles

AWS – Cost breakdown

🧾 Overview of Cost Considerations by Service 1. DynamoDB 2. AWS Amplify 3. Lambda 4. CloudFormation 5. CloudWatch 6. API Gateway 7. IAM 🔍 General Recommendations 🔔 1. Set Budgets and Alerts 📦 2. Tag All Resources 🌍 3. Minimize Environments 🧠 4. Use Savings Plans or Reserved Instances 📈 5. Monitor with Cost Explorer ✅ Pro Tips Goal Strategy […]

Categories
Articles

ImageSharp Cheatsheet

👉 View code on GitHub

Categories
Articles Technology

Azure Cloud Services – When to use, what service

Unsure about Azure Services?They could be the secret ingredient for your .NET development recipe.

Categories
Articles Technology

Minimal Web APIs with .NET 6

.NET is a great technology to create robust APIs. Until .NET Core 3, the main approach based on Microsoft documentations was to create a web API with Controllers. In .NET 6 Microsoft adopted an innovative approach like Express.js approach. The name of this, Minimal Web API. But first things first… What is Minimal API Minimal […]

Categories
Articles Technology

.NET Conf 2022 (.NET 7) Cheatsheet

See the highlights of .NET Conf 2022. Learn what you can do with .NET 7 and in general .NET environment this year! .NET 7 Performance .NET 7 vs .NET 6 vs .NET 5 performance .NET 7 vs Node.js vs Java Servlet requests per second performance ASP.NET Core is eleven times faster than Node.js .NET 7 […]

Categories
Articles Technology

Using .NET for Microservices Architecture

Introduction In the modern digital landscape, it is crucial to have software applications that are scalable, modular, and independent. This is where microservices architecture comes in. Microservices are individual services that communicate with each other through APIs, providing independent, scalable, and resilient software applications. In this article, we will explore how to use .NET for […]