Weather Detector using Django
Built a webpage that detects the weather of any place in the world including over 10,000 cities worldwide. Implemented with python django using an API and tested with Postman.
Real Time Chat Webpage
Assembled a webpage that uses DB SQLite3 that stores data classes such as rooms and messages. Coded using the MVC framework in Django, while maintaining a 0.1 sec latency refresh rate for new incoming messages by using javascript, ajax.
Undoable List in C++
Created an array with the capability to undo over 25,000 elements. The pending undo operations on the array were tracked using a linked list with a stack that follows the LIFO principle. Developed using an OOP approach and tested through unit testing.
Word List Organizer
Constructed a system that stores words from a file in alphabetical order and keeps track of several properties of those words such as number of different words by using an AVL tree as is underlying data structure along with a doubly linked list in C++. Assembled with an OOP approach.