top of page
Search
The Tech Platform
Jul 8
Golang Enum: A Practical Guide
Enums, short for enumerations, are a way to represent a fixed set of related constants with distinct values. They’re commonly used to...
The Tech Platform
Aug 8, 2023
How to Sort List in Java?
Sorting is a fundamental operation in programming, enabling us to arrange data in a specified order for efficient retrieval and analysis....
The Tech Platform
Apr 20, 2022
How to use Stream allMatch() and anyMatch() function in Java?
Stream allMatch: We often run into problems where we need to check a condition on a list of values. To give an example, let’s say there’s...
The Tech Platform
Jan 22, 2021
Prototype Design Pattern with Java
In software design, Prototype Design Pattern is a creational pattern that allows us to create objects from existing objects, thus...
bottom of page