Programming Tutorials

Curated development tutorials from top sources. Filter by language.

All python javascript php go ruby java rust typescript general sql
dev.to realpython freecodecamp

Pojo in Java

POJO in Java – What and Why? In Java, POJO stands for Plain Old Java Object. A POJO is a simple Java class that is not dependent on any sp

java dev.to May 12, 2026

POJO Class In Java

A POJO (Plain Old Java Object) is a simple Java class that is not tied to any special frameworks or restrictions. It is mainly used to represent data.

java dev.to May 12, 2026

Encapsulation in Java

Encapsulation in Java is the process of wrapping data (variables) and the code that acts on that data (methods) together as a single unit, typically

java dev.to May 12, 2026

Vectorizing Real-Time Kafka Events

Vectorizing Real-Time Kafka Events for RAG In the previous post, I set up pgvector and Ollama for embedding and vector search. Now I need t

java dev.to May 11, 2026

MCP Client with LangChain4j

MCP Client with LangChain4j: Connecting an Agent to Multiple Services In the previous post, I turned each microservice into an MCP server.

java dev.to May 11, 2026

Java Questions on Collections

Day-1 1. How does HashMap work internally? Answer: High-Level Internal Structure Internally, HashMap uses: Array + LinkedList + Red-Black Tree (Java 8

java dev.to May 11, 2026

#39 LinkedList implements Queue

Hierarchy Collection Interface ↓ Queue Interface ↓ Deque Interface ↓ LinkedList class Declaration as Queue Queue q = new LinkedList();

java dev.to May 11, 2026
« Prev Page 16 of 62 Next »