In the early days of Google, a well-known test occurred dubbed Google's 41 Shade of Blue. This test...
In this post, I share a few tools I've been using lately for data analytics, tracking, and...
As developers, we often work on projects with teams of people. Believe it or not, people do not...
Beginning as a personal project, over Christmas, I decided to create a Chrome extension to make...
Monitoring uptime statuses can be a complicated task, and SaaS services typically target enterprise...
Intro Hi, my name is Mackenly and this was my fourth year participating in Hacktoberfest....
One of the most obvious but often overlooked ethical conflicts within the workplace is workers who...
A break from this site's usual higher-level tech posts, this post walks through the process of adding...
What are design systems? According to UX research firm Neilson Norman, "A design system is...
What is social engineering? Social engineering is one of the oldest forms of malicious or unethical...
In an ever-evolving digital world, websites come and go, often taking valuable information with them....
There are several reasons for Java having different data types. Java has eight primitive data...
Object-oriented and procedural are two common programming language paradigms. Procedural...
The "new" keyword is used to allocate memory and instantiate a reference data type. Primitive data...
I was reading a book about Java and it had this practice question at the end of a chapter: If...
Boolean expressions are used to represent conditions required for all loops. It may not be obvious...
Java, like most programming languages, provides different types of loops. The most common are...
Cooking is a great source of example algorithms and serves as a great stand-in for learning how to...
Decision structures are sometimes known as control structures. These keywords control the flow of...
Java's ArrayLists are like smart arrays. You can't change an array's length, but with an ArrayList,...
Kinda. As you can see, if I try to store a floating point number in this int array, my IDE screams...