MSManikandan Sinmanikandan4411.hashnode.dev·1d ago · 4 min readGenerics Concepts in JavaIntroduction Generics in Java allow us to write classes, interfaces, and methods that can work with different data types while providing type safety. Generics are commonly used with the Java Collectio00
KKumaravelinbuildbreaklearndev.hashnode.dev·1d ago · 19 min readREST APIs for Beginners: What I Learned While Building a Spring Boot ApplicationREST APIs for Beginners: What I Learned While Building a Spring Boot Application When I first started learning REST APIs, the idea seemed simple. GET retrieves data.POST creates data.PUT updates data.10
SHSaul Hernandezinsaul-lara.hashnode.dev·2d ago · 4 min readHow URL Redirects Actually WorkI'll be sharing the process of an URL Shortener development from scratch. In this post, I'll be adding the redirection feature when you request the original URL. The purpose of this project is learn h00
CCheckNumberinchecknumberofficial.hashnode.dev·3d ago · 5 min readMigrating Legacy MICR Data Extraction to Modern Computer Vision PipelinesThe migration of Magnetic Ink Character Recognition (MICR) data extraction from legacy, template-based systems to modern computer vision pipelines is a common architectural challenge in financial engi00
AUAman Upadhyayindev-jedi.hashnode.dev·4d ago · 18 min readAuthentication and Authorization in BackendSo far in this series, we've talked about HTTP, routing, serialization, and how data moves between clients and servers. But eventually, every backend application reaches two very important questions: 00
MSManikandan Sinmanikandan4411.hashnode.dev·4d ago · 4 min readI/O Stream Concepts in JavaIntroduction I/O (Input/Output) Streams in Java are used to read data from a source and write data to a destination. Java provides I/O classes mainly through the java.io package. There are two main ty00
MSManikandan Sinmanikandan4411.hashnode.dev·Aug 21 · 4 min readFile Handling Concepts in JavaIntroduction File Handling in Java is used to create, read, write, update, and delete files. Java provides classes mainly through the java.io and java.nio.file packages for working with files. 1. Fil00
DRDaksh Ramrakhyaniindaksh-codes.hashnode.dev·Aug 20 · 4 min readWhat I Learned Building Backups for a Local, LAN-Based SQLite AppI build and maintain a billing and invoice system that runs entirely on a client's local network — no cloud, no internet dependency. One PC hosts the app, other PCs on the same WiFi connect to it thro00
XMXIANYU MOinfisherwp.hashnode.dev·Aug 21 · 5 min readWhy I Built a Read-Only Reconciliation Layer for WooCommerce Stripe PaymentsPayment integrations are usually described as a checkout problem: collect payment, receive a webhook, update the order, and continue fulfillment. The harder problem begins when those steps disagree. A00
MSManikandan Sinmanikandan4411.hashnode.dev·Aug 19 · 11 min readError and Exception Handling in JavaIntroduction While developing Java applications, errors and unexpected situations can occur during program execution. For example: Dividing a number by zero Accessing an invalid array index Reading00