When it comes to writing code, it's important to have some empathy for your teammates by focusing on readability and style.
Tag: Software Development
With the Java Basics series coming to a close, I'm looking ahead to create a new Java tutorial series which could include data structures to sorting algorithms.
Sometimes you want a chunk of code to be run more than once. Rather than copying and pasting it a set number of times, why not dump it into a loop? In this tutorial, we cover Java looping mechanisms.
Errors in code are inevitable. The challenge as a developer is to make sure bugs don't make their way into production code. Fortunately, JUnit testing can be used to minimize the risk of bugs.
In this post, I'm sharing 23 tech topics that would be fun to tackle. If your favorite topic didn't make the list, share it in the comments.
This tutorial introduces two basic method types: static and instance. The main focus is to learn the basics of method calls before we dive into classes.