Latest Updates

Documenting code, one commit at a time.

Streamlining RDV Management: A Focus on Functionality and Design

Working on the rdv_Medecin project involves enhancing the functionality related to appointments (RDV - Rendez-vous). The recent development efforts have concentrated on improving the appointment management aspects of the application, likely including both backend logic and user interface components.

The updates included creating and modifying JSP (JavaServer Pages) files to enhance the

Read more
Java HTTP API

Implementing POST Requests in Java Applications

Introduction

Adding POST request functionality to a Java application enables it to send data to a server, which is crucial for creating, updating, or processing information. This guide outlines how to implement POST requests effectively using Java.

Setting Up the Connection

To begin, you'll need to establish an HTTP connection to the server. Here's how to do it:

Read more