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

Distributed Locks Are a Code Smell

Distributed Locks Are a Code Smell The Lock That Lied A single angry support ticket is usually an anomaly. Three identically ang

java dev.to Apr 03, 2026

Pattern-based Programs

1) 1 2 3 4 5 6 -> 5 6 3 4 1 2 Python reverse = 0 no = 123456 while no>0: reverse = reverse*100 + no%100 no = no//100 print(reverse)

java dev.to Apr 02, 2026

Static and Non-Static Variables in Java

In Java, variables are mainly categorized into two main types based on their working and memory allocation, and these two variables are static variab

java dev.to Apr 02, 2026

Static vs Non-Static in JAVA

Static vs Non-Static in Java When learning Java, one very important concept is Static vs Non-Static (Instance). If you understand this cle

java dev.to Apr 02, 2026

Static and Non-Static in Java?

Static : A static variable is a variable declared with the static keyword inside a class. It belongs to the class, not to any object. Onl

java dev.to Apr 02, 2026
« Prev Page 75 of 84 Next »