In this tutorial we will learn how to use Prettier to automatically format code in VS Code. I previously wrote an article about how to configure VS Code for web development, which you may find…
Author: Jordan
What is Network Topology? Beginners Crash Course
While network geography attempts to describe the scale of a network, network topology describes the organization of how data moves from host to host. And so, if you are maintaining or building a network, understanding…
What is Network Geography?
Network geography is a term that describes the geographic scale, of different network types. For that reason, if you are maintaining or designing a network, it’s important to understand these characteristics. First, let’s learn about…
Important Network Concepts for Beginners
Networks are all around us. What do you see when you picture a network? Do you think of an enormous data center with endless rows of computers and thousands of blinking lights? Maybe you think…
What is a domain name? and How does DNS work?
Domain names help solve a common problem that humans have – difficulty remembering numbers. In this article we learn about domain names, what they are, how they solve this problem and the underlying infrastructure that…
What you need to know about URLs
URLs are one of the pillars of Web architecture, and a key concept for anyone who codes. This article discusses URLs, what they are, how they are used and how they are made. What are…
VS Code: Configure for web development
VS Code is a powerful text editor used by web developers all over the world. One of the features that makes it particularly appealing is the high-level of customization that a user can achieve. In…
JavaScript Basics: Working with Arrays
One of the most fundamental operations in programming is storing and organizing data. To help effectively manage data, we can organize it into lists. In JavaScript these lists are often organized into arrays. We organize…
Fundamentals of Cloud Computing
The demand for qualified individuals in cloud computing is on the rise and it doesn’t look to be slowing down. As more industries start to transition to a cloud model the demand for cloud skills…
JavaScript Scope: What is it?
In JavaScript, the concept of scope relates to where variables and expressions can be accessed from. In this article we’ll look at a few different types of scope, what they do and how you use…