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 […]
Author: Plavos Vasilis
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 […]
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
ImageSharp Cheatsheet
Unsure about Azure Services?They could be the secret ingredient for your .NET development recipe.
ChatGPT for Developers Cheatsheet+
ChatGPT prompts Mix of posts ChatGPT for Designers What you find in this cheat sheet: Popular AI Search tools Source Sources:
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 […]
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 […]
Starting a business is exhilarating, but it’s also a high-stakes game of decision-making. Early-stage startups must navigate limited resources, competitive landscapes, and market uncertainties. Prioritization becomes critical. Whether you’re a business strategist, a product-oriented developer, or an engineering innovator understanding how to focus efforts can mean the difference between success and stagnation. Below, we explore […]
[source] One of the biggest .NET benefits is the flexibility and the portability of its features.As ASP.NET Core relies on the IHostBuilder, we can do the same with a classic console application.This approach will help us to have a basic infrastructure in our application, including the support for logging, dependency injection, app settings and so on. […]