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

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

Static and Non-Static

1. What is Static in Java? - A static variable or method belongs to the class, not to objects. This means only one copy exists and all objects s

java dev.to Apr 02, 2026

从WebSocket到SQL查询:金融数据落库存储及查询接口全流程开发

做量化交易、金融数据分析、行情看板开发的开发者,核心诉求从来不是“拿到数据”,而是“稳定拿到数据、可灵活查询数据、可复用数据”。 很多人初期调用金融数据API时,只会直接获取原始数据用于临时分析,一旦数据量增多、需求迭代,就会陷入“重复调用API、数据混乱、查询低效”的困境。正确的落地逻辑应该是:

java dev.to Apr 02, 2026
« Prev Page 8 of 16 Next »