Past / 999-school-projects
School Projects
List of School Projects that I remember doing.
School Projects
Here’s a list of projects I worked on during my time in school. Mostly kept as a reference for those who may be tutoring or teaching as ideas for a learning project.
N-1 Puzzle
https://github.com/NekoShinobi/Puzzle
Take a 3x3 Puzzle, and solve it. Also add an auto-solver
=================
1 2 3
4 5 6
7 8
=================
And you are forced to use Linked Lists.
OpenGL Game
https://github.com/NekoShinobi/OpenGLGame
The goal was to create a basic game using OpenGL 1.1 directly in C++. This was probably one of the most fun projects I did in school.
Interpreter
https://github.com/NekoShinobi/Interpreter
The goal was to create an interpreter from scratch to do some basic code logic.
Example code that would work with this interpreter
while (1 == 1)
{
display "";
display "************************************************";
display "Want to determine whether n is a prime?";
display "What is your value of n this time? ";
read n;
display "************************************************";
display "";
if ( n < 2 )
primeStatus = 0;
else
primeStatus = 1;
candidate = 2;
while (candidate < n)
{
if ((n % candidate) == 0)
primeStatus = 0;
candidate = candidate + 1;
}
if (primeStatus == 1)
display n, " is a prime";
else
display n, " is NOT a prime.";
}