排序
Notación Big O – Python
Notación Big O - Python, 1. Definición Notación matemática que describe el límite superior del tiempo de ejecución o el uso de espacio de un algoritmo. Se denota como O(f(n))...
Microservice Best Practices: Scale your java microservices using virtual threads & async programming
Microservice Best Practices: Scale your java microservices using virtual threads & async programming, Overview This article is part of the Microservices Best Practices series. The ...
@Nullable et @NonNull
@Nullable et @NonNull,Le framework Checker propose plein d'annotations sympa à placer dans le code pour le sécuriser. Il permet notamment de répondre au besoin de nullabilité d...
Improving Code Quality in Java: Best Practices and Examples
Improving Code Quality in Java: Best Practices and Examples,Code quality is a critical aspect of software development. Writing clean, maintainable code not only makes your life as ...
Best Practice of handling FastAPI Schema
Best Practice of handling FastAPI Schema, The Best Practice of handling FastAPI Schema FastAPI Has a concept of Schema. DTO is more familiar name If you have developed at Spring or...
Separating Sensitive Data from Code (using python-decouple)
Separating Sensitive Data from Code (using python-decouple),Whenever I learn any code related stuff, I make sure I follow it all through till the end and then push the code to My R...
Do not abuse the assert
Do not abuse the assert,Asserts are for programmers to find bugs or situations that should never happen. The program should execute normally if all the asserts are removed. Asserti...
Technical debt or we must improve our code base quality
Technical debt or we must improve our code base quality,At this article I would tell about about one important code quality - maintenance. Problem. Two ways to solve your technical...