Portfolio
Languages: C++, x86 Assembly, MIPS
Familiar with: Python, HTML, CSS, C
Operating Systems: Windows, Linux(VM)
Tools: Microsoft Visual Studio, VS Code, WSL
Mini-Solitaire Game (C++)
This program creates a mini Solitaire game with 5 piles of cards. There are no Kings, Queens, Jesters, or Aces.
It uses a template class linked list in order to mimic the cards. In the linked list class it uses an iterator, which allows the head of a linked list to be put on the tail end of another linked list.
Image Converter (x86 Assembly)
This program takes C++ and assembly in order to take a .bmp image and convert into an image that can be in black and white, greyscale, and brightened.
The assembly code makes sure that the image chosen is a .bmp file, and it does all the pixel conversion to black/white, greyscale, and brightening the image.
Hashmap (C++)
This program creates a custom hashmap class that uses and combines open addressing and seperate chaining for insertion.
The file comes with an .txt file that contains Nevada System of Higher Education (NSHE) that holds fake student ids, names, with corresponding GPAs, attending college, and credits.
This program uses two different hashmaps. One is used for searching and holding the .txt file and the other hashmap keeps track on the amount of failed searches on a student.
Resume