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

WebNN Has a Free API You've Never Heard Of

WebNN (Web Neural Network API) is a new browser API that gives JavaScript direct access to hardware-accelerated machine learning. It runs on NPUs, GPU

javascript dev.to Mar 28, 2026

WebGPU Has a Free API You've Never Heard Of

WebGPU is the next-generation graphics and compute API for the web. It's not just a replacement for WebGL — it's a fundamentally new way to access GPU

javascript dev.to Mar 28, 2026

Polyfills

What are Polyfills? Polyfills are custom implementation to the common javascript methods. There can be cases where older browser is not supporting th

javascript dev.to Mar 28, 2026

Sum of numbers, Factorial, and LCM

1)Sum of first n numbers Flowchart Python sum = 0 no = 1 while no 10: sum = sum + no no = no + 1 print("Sum =", sum) Out

javascript dev.to Mar 27, 2026
« Prev Page 70 of 73 Next »