BudgetBuddy is a product for users who wish to handle and track any current/future expenses on a singular platform. BudgetBuddy provides a faster and more efficient way to track and calculate expenses and provides the ability to deal with finances on a singular platform with ease. It has multiple financial tracking options to suit your needs.
My primary contributions include developing the budget setting functions, and enabling users to delete their expenses or reduce their savings, thereby improving the app's usability and user experience.
- What it does: Allows users to set and adjust budgets for various categories such as groceries, transport, and housing. Users can define a maximum spending limit for each category, which helps in monitoring and controlling their expenditures.
- Justification: This feature is pivotal for users aiming to adhere to their financial goals, and ensure that they do not overspend to align with their financial targets
- Highlights: Implementing this feature requires a deep understanding of the app's different functions and how they
all work together. One challenge of implementing this feature was integrating existing functions like
Expenses
so that I am able to retrieve the relevant expense information and update the utilised budget, checking if the user is still within their budget
- What it does: Allows users to delete expenses that have been added wrongly or are outdated
- Justification: This feature improves the app's flexibility by allowing users to correct their mistakes, ensuring that their financial records remain accurate
- Highlights: Ensured that edge cases were handled, such as attempts to delete non-existent records, ensuring robustness. The delete function also recalculates the available budget, keeping the users' financial overview up to date
- What it does: Enables users to record when they withdraw or spend from their savings, updating savings accordingly
- Justification: Essential for maintaining an accurate record of savings, especially when savings are used to cover unexpected expenses or large purchases
- Highlights: Implemented a fluid interaction between the savings and expenses functions, allowing for automatic adjustments to savings when expenses are updated
Code contributed: RepoSense Link
- Added an alert when user tries to add an expense which would exceed the budget set (Pull Request #195)
- Integrated my budget function into currency converter (Pull request #197)
- Changed from reducing savings by index, to reducing savings by category instead (Pull request #217)
- Integrated saving and loading for my budget functions (Pull request #217)
- Added documentation for
reduce savings
anddelete expenses
(Pull Request #216) - Added sequence diagram for
ReduceSavings
,ListBudget
andSetBudget
(Pull Request #220) - Added use cases for my functions (Pull Request #220)
- Added documentation for
set budget
andprint budget
(Pull Request #69, #216)
- Added implementation for
reduce savings
anddelete expenses
- Added implementation for all the budget functions (Pull Request #130)