📰 Dev.to · Sabin Sim
Articles from Dev.to · Sabin Sim · 46 articles · Updated every 3 hours · View all reads
All
⚡ AI Lessons (9011)
ArXiv cs.AIDev.to · FORUM WEBForbes InnovationOpenAI NewsDev.to AIHugging Face Blog

Dev.to · Sabin Sim
2w ago
36. C#(Lists in C#)
Full Runnable Code using System; using System.Collections.Generic; class Program { ...

Dev.to · Sabin Sim
4w ago
33. C# (Loop Performance)
0. The Real Goal of This Lesson This lesson is not just a warning about slow code. The...

Dev.to · Sabin Sim
1mo ago
32. C# (Nested Loop)
0. The Essence of Nested Loops Every time the outer loop runs once, the inner loop runs...

Dev.to · Sabin Sim
1mo ago
31. C# (continue)
0. The Essence of continue continue immediately stops the current iteration and moves to...

Dev.to · Sabin Sim
1mo ago
29. C# (foreach Loop)
in C# — Full Code First using System; class Program { static void Main() { ...

Dev.to · Sabin Sim
1mo ago
28. C# (Multidimensional Arrays)
using System; class Program { static void Main() { char[,] board = { ...

Dev.to · Sabin Sim
1mo ago
27. C# (Arrays)
using System; class Program { static void Main() { // 1) Declare + allocate (check...

Dev.to · Sabin Sim
1mo ago
26. C# (Loop Performance)
0. The Real Goal of This Lesson Loops do not increase execution time additively. They...

Dev.to · Sabin Sim
1mo ago
25. C# (Nested Loop)
0. The Real Goal of This Lesson In a nested loop, every single outer iteration triggers a...

Dev.to · Sabin Sim
1mo ago
24. C# (continue)
0. The Real Goal of This Lesson continue means: Terminate the current iteration...

Dev.to · Sabin Sim
1mo ago
23. C# (break)
0. The Real Goal of This Lesson break is a mechanism that forces a loop to stop...

Dev.to · Sabin Sim
1mo ago
22. C# (do-while Loop)
Goal Keep asking the user: “Enter a word longer than 10 letters.” Repeat until the...

Dev.to · Sabin Sim
1mo ago
21. C# (while Loop 2)
Goal Ask the user to enter a word If the word length is less than 15 Keep appending...

Dev.to · Sabin Sim
1mo ago
20. C# (Infinite Loops)
0. The Real Goal of This Lesson A while loop repeats based on a condition, but what...

Dev.to · Sabin Sim
1mo ago
19. C# (while Loop)
0. The Real Goal of This Lesson A while loop is a mechanism that sends execution flow...

Dev.to · Sabin Sim
1mo ago
18. C# (Loops)
0. The Real Goal of This Lesson This is not about syntax. The goal is to understand how...

Dev.to · Sabin Sim
1mo ago
17. C# (Char)
0. The Real Goal of This Lesson “When you only need a single character, why should you...

Dev.to · Sabin Sim
1mo ago
16. C# (Switch Statement)
0. The Real Goal of This Lesson This is not about learning syntax. The real goal is to...

Dev.to · Sabin Sim
1mo ago
15. C# (Project C: BMI Health Checker)
Practicing Numeric Types, Arithmetic Precision & Range-Based Logic This project is designed to...

Dev.to · Sabin Sim
1mo ago
14. C# (Project B: The Gatekeeper)
Project B: The Gatekeeper Practicing Boolean Logic & Nested...

Dev.to · Sabin Sim
1mo ago
13. C# (Project A : The Method Calculator)
A Small Project to Force Real Method Design This project is intentionally simple. But it...

Dev.to · Sabin Sim
2mo ago
12. C# (Exceptions)
0. The Real Goal of This Lesson The goal of this lesson is to physically understand one...

Dev.to · Sabin Sim
2mo ago
11. C# (Parsing)
0. The Real Goal of This Lesson The goal of this lesson is not to memorize int.Parse. The...

Dev.to · Sabin Sim
2mo ago
10. C# (Static Typing vs Dynamic Typing)
0. The Real Goal of This Lesson This lesson is not about deciding whether static typing is...
DeepCamp AI