Programming Tutorials

Curated development tutorials from top sources. Filter by language.

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

Update record using JooqTemplate

1. update Update records matching the given condition. Supports both Condition and List. // Single Condition public int update(String ta

java dev.to Jun 09, 2026

JIT Compilation — Guia Didático

O que você vai aprender: Como a JVM decide o que compilar e quando · A diferença real entre C1 e C2 · O que é o Code Cache e por que ele pode derruba

java dev.to Jun 09, 2026

Java Command-Line Debugging with AI Agent

When you need to track down a complex bug, your first instinct is to reach for a visual debugger. You set a breakpoint, step through the logic, and in

java dev.to Jun 07, 2026

Constructors of File Class in Java

The File class (java.io.File) is used to represent files and directories. A constructor is used to create a File object that points to a file or folde

java dev.to Jun 07, 2026

The Pen That Taught Me the Factory Pattern

For a long time, the Factory pattern felt like ceremony to me — an extra class that did nothing my code couldn't already do. Then I thought about ten

java dev.to Jun 07, 2026

Two Sum | HashMap Pattern

Problem Link: https://leetcode.com/problems/two-sum/ The Two Sum problem is one of the most frequently asked coding interview questions. While the br

java dev.to Jun 07, 2026

Reverse Pairs

Given an integer array nums, return the number of reverse pairs. A reverse pair is defined as: i j && nums[i] > 2 * nums[j] Bru

java dev.to Jun 06, 2026
« Prev Page 17 of 82 Next »