What are the SOLID principles?
members

What are the SOLID principles?

If we want to have good software, the infrastructure should be good first. We should learn more techniques that help to have better quality. Firstly, we have to know SOLID principles. What are the SOL
Timo
Timo
Java Multi-threading
members

Java Multi-threading

Multithreading conceptThread is basically a sub-process. The smallest processing unit of a computer that can perform a single job. In Java, threads are managed by the Java virtual machine (JVM). Multi
Carlos
Carlos
gRPC vs REST speed comparison
members

gRPC vs REST speed comparison

gRPC is a big competitor of REST. In this post, we will create simple gRPC and SpringBoot application to compare the speed of them. Which will win and why?
Roman Le
Trace HTTP request in with Micrometer
members

Trace HTTP request in with Micrometer

Why do we want to trace http request?On an API application, that has numerous concurrent request calls. If get an exception of a bug and you want to find the root cause, it can be hard when you look i
Roman Le
Tracing gRPC calls with Micrometer
members

Tracing gRPC calls with Micrometer

Why do we want to trace the gRPC call?In the previous post, I introduced tracing HTTP requests in Spring Boot 3 with Micrometer. And how do we in gRPC call? Let's get started. On a microservice system
Roman Le
Progress Management in Software Development: Enhancing Efficiency
members

Progress Management in Software Development: Enhancing Efficiency

Process management plays a crucial role in the successful execution of software development projects. In the rapidly evolving field of software engineering, the ability to effectively manage processes
AKI Nguyen
QAOps – A software testing trend in 2023
testing
members

QAOps – A software testing trend in 2023

Introduction and Understanding QAOpsQAOps - Quality Assurance Operations - is an approach that combines principles and practices from DevOps and Quality Assurance (QA) to integrate testing and quality
SAMIYA NGUYEN
members

Difference of Selenium and Cypress

1. ARCHITECTUREa. Selenium1. At the Client, test code using the selenium library will be converted into the content of requests sent to the Browser Driver. 2. These Drivers receive requests and execut
Guppy
1. ARCHITECTUREa. Selenium1. At the Client, test code using the selenium library will be converted into the content of requests sent to the Browser Driver. 2. These Drivers receive requests…
スモークテストとは? なぜスモークテストは必要なのでしょうか?
testing
members

スモークテストとは? なぜスモークテストは必要なのでしょうか?

1.スモークテストの重要性とメリット「スモークテスト」の前に、「ソフトウェアビルド」(以下、ビルドという)について紹介します。 「ビルド」とは、プログラミング言語で書かれたソースコードなどを元に実行可能なファイルや配布パッケージを作成する処理や操作のことです。 参照:ISTQB用語集 スモークテスト(smoke test)の定義 プログラムの必須機能が正常に動作することを確認するのが目的で、コンポ
Yeni Do