Browsing Tag
java
205 posts
Introducing ‘firebaseauth’ Spring Boot Library
Introduction How many times have you struggled with setting up security in your Spring Boot API? Well those…
Operator Overloading in Java
In this post, we’ll delve into the fascinating world of operator overloading in Java. Although Java doesn’t natively…
83. Remove Duplicates from Sorted List leetcode solution in java
/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; *…
How to develop an online code compiler using Java and Docker.
Have you ever wondered how platforms such as Codeforces and LeetCode operate? How do they compile and run…
How to convert String to Integer in java
for explanation watch the video import java.util.*; import java.lang.*; class Demo{ public static void main(String[] args){ String s…
Como criar um Servidor Web Java Sem Framework
Olá, espero que você esteja bem 😊 Uma das coisas que gosto de fazer ao iniciar meus estudos…
Boldness in Refactoring
The old engineering adage: “don’t touch it, it works”. Is terrible. Don’t listen to it. It might be…
When Should we Move to Microservices?
Last month I wrote about modular Monoliths and the value of modern Monolithic architecture. One of the more…
What are you Missing by Debugging in VS Code?
In the first chapter of my debugging book, I discuss IDE debugging. In that chapter, I mostly talk…