Open in app

Sign In

Write

Sign In

Matthew Clark
Matthew Clark

101 Followers

Home

About

Aug 2, 2022

Update: Multiplayer Prototype

I have been learning to create multiplayer games. I have been using the Unity engine to create the game and Mirror to handle multiplayer aspects.

Learning To Code

1 min read

Update: Multiplayer Prototype
Update: Multiplayer Prototype
Learning To Code

1 min read


Jul 25, 2022

Creating a Multiplayer Prototype in Unity

I have been working on learning how to implement multiplayer for unity projects using Mirror. To use Mirror, you can click the link above and add it to your unity assets. Now go into your unity project and import Mirror using the package manager.

Made With Unity

2 min read

Creating a Multiplayer Prototype in Unity
Creating a Multiplayer Prototype in Unity
Made With Unity

2 min read


Published in Nerd For Tech

·Jul 21, 2022

Input and Output in C++

To input and output information to the console in C++, you will use the standard input-output stream (iostream) library. Output To output information, you will use the code std::cout. This code is referencing the standard output stream. In most cases, the output device is the display screen. Here is an…

Learn To Code

1 min read

Input and Output in C++
Input and Output in C++
Learn To Code

1 min read


Published in Nerd For Tech

·Jul 17, 2022

Tree Traversal

There are many ways to traverse a binary tree. The two most common ways to traverse a binary tree are depth-first search and breadth-first search. Depth-First Search Depth-first search works by starting at the root node and traversing as far as possible along the branches of the tree. Once the…

Learn To Code

4 min read

Tree Traversal
Tree Traversal
Learn To Code

4 min read


Published in Nerd For Tech

·Jul 16, 2022

Binary Heaps

A binary heap is a type of binary tree that has its own set of rules. There are two types of binary heaps which are the max-heap and the min-heap. Rules The first rule the binary max-heap follows is that each node’s value must be greater than the value of…

Learn To Code

4 min read

Binary Heaps
Binary Heaps
Learn To Code

4 min read


Published in Nerd For Tech

·Jul 14, 2022

Binary Search Tree

A binary search tree is a node-based data structure that stores data according to a set of rules. The left subtree of any node will have a value less than the parent node's value. The right subtree of any node will have a value greater than the parent node’s value…

Learn To Code

4 min read

Binary Search Tree
Binary Search Tree
Learn To Code

4 min read


Published in Nerd For Tech

·Jun 28, 2022

Selection Sort

Selection sort is a sorting algorithm that passes through the unsorted part of an array to find the lowest or smallest element and puts it at the beginning. The selection sort algorithm has two subarrays. One is the sorted subarray or the part that is known to be in order…

Computer Science

3 min read

Selection Sort
Selection Sort
Computer Science

3 min read


Published in Nerd For Tech

·Jun 26, 2022

Bubble Sort

Bubble sort is a sorting algorithm that repeatedly goes through an array and swaps adjacent elements if they are not in order. The algorithm is repeated until the list is sorted. Example Sort the given array {3, 2, 5, 1, 4}.

Computer Science

5 min read

Bubble Sort
Bubble Sort
Computer Science

5 min read


Published in Nerd For Tech

·Jun 25, 2022

Binary Search

A binary search is an algorithm that finds a given target in a sorted array. The binary search algorithm compares the target to the middle element of the array. Assuming the target is not the middle element you will compare whether the target is larger or smaller than the middle…

Computer Science

4 min read

Binary Search
Binary Search
Computer Science

4 min read


Published in Nerd For Tech

·Jun 24, 2022

Queues and Stacks

A queue is a data structure that works by only allowing you to insert elements at the rear of the list and then only allowing you to remove the elements from the front of the list. A queue is based on the first-in, first-out (FIFO) principle. A real-world example would…

Learn To Code

2 min read

Queues and Stacks
Queues and Stacks
Learn To Code

2 min read

Matthew Clark

Matthew Clark

101 Followers

Game Developer and Programmer

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech