Tag

#programming basics

4 articles tagged #programming basics. See all tags →

Loops in Java: for, forEach, while, and do-while
Tech··6 min

Loops in Java: for, forEach, while, and do-while

Java has four ways to write a loop, and most code only needs two of them. Here’s the difference between each, when to use which, and the few places choosing wrong actually matters.

javaprogramming basicsloops
What Is an IDE, and Why Does It Matter
Tech··5 min

What Is an IDE, and Why Does It Matter

An IDE is a text editor with steroids. The features that make one an IDE (instead of just an editor) are the difference between writing code and fighting your tools.

idedeveloper toolsprogramming basics
Java Variable Types: The Eight That Matter
Tech··6 min

Java Variable Types: The Eight That Matter

Java has eight primitive types. Everything else is an object. Knowing what each primitive does, and which ones you should default to, prevents most of the silly bugs new Java developers ship.

javaprogramming basicsdata types
How HTML and CSS Actually Work Together
Tech··6 min

How HTML and CSS Actually Work Together

HTML defines what a page contains. CSS defines how it looks. The relationship between them is one of the cleanest separation-of-concerns examples in computing, and it's also a lot more nuanced than most beginner tutorials let on.

htmlcssweb development