Kai Xun's Project Portfolio Page
Project: InternBuddy
InternBuddy provides a 1-stop platform for Computing undergraduates to manage and track their internship applications. It is optimized for typing which Computing undergraduates are comfortable and proficient in, allowing them to fully and efficiently exploit the application’s organisational capabilities. The user interacts with it using a CLI, and it has a GUI created with JavaFX. It is written in Java, and has about 10 kLoC.
My code contributions can be found here on RepoSense.
Features and Enhancements
- New Feature: Implemented multiple iterations of the
find
command #50 #58 #89- What it does:
- The first iteration of the
find
command #50 would look for all internship with the matchingCOMPANY NAME
,STATUS
andTAG
fields. Other than theTAG
field, fields with multiple instances in the input only had the last instance considered. - The second iteration #58 took into account the
ROLE
field as well when searching for internships. InternBuddy also now took into consideration multiple instances for every field. - The third iteration #89 could now take into account the
DATE
field as well. Matching of user input to internship field was also changed to an exact but case-insensitive match.
- The first iteration of the
- Justification
- In the first iteration #50, if InternBuddy has a long list of internship entries, the user can quickly look for the desired entry using the
find
command instead of manually going through the entire list. - In the second iteration #58, the user can just enter one
find
command to search for entries with different information in the same field and compare them all on the same screen, instead of entering multiplefind
commands and being unable to view all these entries altogether at once. - In the third iteration #89, exact matching between inputs and internship fields will streamline search results, instead of keyword matching where entries could be filtered out due to a matching with a non-essential keyword within the input.
- In the first iteration #50, if InternBuddy has a long list of internship entries, the user can quickly look for the desired entry using the
- What it does:
- New Feature: Save past user input #144
- What it does: Keeps a record of all user input in the current run of InternBuddy and allows user to navigate through them using the up and down arrow keys.
- Justification:
- If the user is trying to enter multiple similar commands, after entering the first command, he or she can simply use the up arrow key to retrieve the last inputted command and make a quick edit instead of typing the whole command again.
- Suppose there was a past input that was of the wrong format, the user would be able to navigate to it and make edits before entering instead of typing everything out again
- Enhancements to existing features:
Project Management
- Set up certain issues.
- Reviewed and approved pull requests for merging.
- Testing of InternBuddy releases on MacOS environment.
Documentation
- User Guide:
- Developer Guide:
Community