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

How I Solved the Out-of-Stock Problem

The moment I realized how much revenue was slipping through the cracks was when I analyzed the analytics for a client's WooCommerce store. Over 30% of

php dev.to Apr 02, 2026

I Built an AI Agent Harness in Go

Hello there! I've been using AI tools a lot lately. ChatGPT, Claude, local models with Ollama. They're great for answering questions, but I wanted so

go dev.to Apr 02, 2026
« Prev Page 247 of 307 Next »