Mocking API Requests in Unit Tests Jarosław Szutkowski ・...
In many applications, it's common to send requests to external services to acquire various types of...
Performing various calculations is an integral part of software development. Their accuracy often...
When designing applications that use databases, we often encounter situations involving concurrent...
Protecting applications against XSS attacks is one of the most important things we can do to make...
Behavior-Driven Development (BDD) is a software development methodology that focuses on defining the...
Advanced web applications are not just based on processing HTTP requests. Various processes are often...
Communication between frontend and backend is usually handled by the HTTP protocol. Frontend sends a...
Recently I've been working on a feature for tracking user activity in the application based on...
In APIs, user verification is often done by using generated keys which are returned in a response...
Let's assume such a situation - after performing some action, we sent a message to the queue. During...
Generic types are templates which allow us to write the code without specifying a particular type of...
Recently I was creating a Symfony application. I used Doctrine as the ORM. I also wrote tests in...
The development of an application does not end with the programming itself. After its completion, you...
Data Transfer Object is an element used to pass data between various places in application. It's only...