Jason Moore (196)

Disaster Recovery

Any network can fail. Even parts can fail that have grave consequences. When any of this happens, it is time to move on to the next step. You better have a plan for when it happens.

Continue reading...

Using Vectors In C++

The Vector container in C++ is very useful. It will be the better option when you want to store data in an array. Vector has several advantages over a traditional array structure. This makes it more flexible.

Continue reading...

How To Use Zoom Securely

With many people having to work from home, Zoom has become an important solution. Since remote work is now so popular, it is vital to understand how to be safe.

Continue reading...

Intro To Network Security

In today’s topic, Intro to Network Security, I am going to discuss the different ways you keep yourself and your network safe. As criminals are always trying to penetrate your network, it is important to have a good foundation concerning security.

Continue reading...

Elements Of Unified Communications

Unified communications is an important buzzword these days. It can mean several different things. There are some things in common though. Almost all implementations include messaging, VOIP, and some sort of collaboration. I want to talk about those today. 
 

Using Functions in C++

This article is about using functions in C++. Functions reuse code to help solve problems. It is described as doing a small part that can be used elsewhere in your program. Today I want to show you how to do that.