-
Core Java
So I Wrote a Library
If you’ve never done it, go out and find an open-source project to contribute to. Whether it’s one of your…
Read More » -
Software Development
Architecture Metrics
Last time we saw how major tech projects continue to be difficult to schedule. One thing that can keep momentum…
Read More » -
Enterprise Java
REST: Partial updates with PATCH
In previous posts we learned how to update/replace resources using the HTTP PUT operation. We also learned about the differences…
Read More » -
Enterprise Java
Testing with Mockito
1) Register MockitoExtension @ExtendWith(MockitoExtension.class) class ObjectTest { static final Long ID = 1L; 2) Create the mock @Mock private ObjectRepo…
Read More » -
Enterprise Java
Spring Injection Types
Spring supports three types of dependency injections: Constructor injection @Component public class SecondBeanImpl implements SecondBean { private FirstBean firstBean; @Autowired…
Read More » -
Python
Python join() method Tutorial
Hello in this tutorial, we will understand the join() method in python programming. 1. Introduction The join() method in python…
Read More » -
Software Development
The Pleasures of Replatforming
In an earlier post on migration, I looked at different ways to take a codebase and convert it for a…
Read More » -
Core Java
Testing Logging Output in Java
One of my more popular posts on this site is on how to use Mockito to mock logging. Testing that…
Read More » -
Kotlin
How To Convert String to Float in Kotlin?
1. Overview In this tutorial, We will learn how to convert the String value to Float in Kotlin. This conversion…
Read More »