16 followers
Software engineer @MITREcorp. Professor @monmouthu. Proud husband and father. I blog about code, careers, and software engineering. My posts are my own.
A beginner's tutorial on using Git and GitLab ยท Introduction This tutorial is for beginners who are new to Git and GitLab . Git is a "free and open...
I have been a professional programmer for over 30 years. Programming is a lifelong journey of learning, practice, and improvement. During my career, I...
Some Java programs need input from the user. To accept input from the user, use the Scanner class. The Scanner class has methods that accept different...
A string is a sequence of characters. Sometimes we need to access a character in the string. The Java String function charAt() returns the character...
Sometimes it is helpful to know if a character is a digit (0-9) or not. The Java built-in Character class provides an isDigit() function that...
Methods ๐ฆ, Functions ๐ฏ, and Procedures ๐ป, Oh My! Programmers often use these terms interchangeably. But there are differences among them. The...