Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ The browser app currently exposes 39 projects:
### Utilities

- AI Resume Analyzer
- Budget Tracker
- Color Palette Suggestor
- Morse Code
- Number Converter
Expand All @@ -299,7 +300,6 @@ These standalone Python project files do not have a browser counterpart yet and
- [math/Happy-Number/Happy-Number.py](math/Happy-Number/Happy-Number.py)
- [math/Matrix-Calculator/Matrix-Calculator.py](math/Matrix-Calculator/Matrix-Calculator.py)
- [math/Quadratic-Solver/Quadratic-Solver.py](math/Quadratic-Solver/Quadratic-Solver.py)
- [utilities/Budget-Tracker/budget_tracker.py](utilities/Budget-Tracker/budget_tracker.py)
- [utilities/Caesar-Cipher/Caesar-Cipher.py](utilities/Caesar-Cipher/Caesar-Cipher.py)
- [utilities/Fake-News-Headline-Generator/Fake-News-Headline-Generator.py](utilities/Fake-News-Headline-Generator/Fake-News-Headline-Generator.py)

Expand Down
Binary file added web-app/assets/banners/budget-tracker.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions web-app/generate_banners.py
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,7 @@ def draw_o(ox, oy):
("AI Resume Analyzer", "utilities", "resume-analyzer.webp"),
("Caesar Cipher", "utilities", "caesar-cipher.webp"),
("Unit Converter", "utilities", "unit-converter.webp"),
("Budget Tracker", "utilities", "budget-tracker.webp"),
]

# Run generation
Expand Down
8 changes: 8 additions & 0 deletions web-app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -874,6 +874,7 @@ <h3>Legal</h3>
<script defer src="js/hero-canvas.js"></script>
<script defer src="js/projects/war-card-game.js"></script>
<script defer src="js/projects/number-sliding-puzzle.js"></script>
<script defer src="js/projects/budget-tracker.js"></script>
<script>
lucide.createIcons();
</script>
Expand Down Expand Up @@ -1122,6 +1123,13 @@ <h3>Legal</h3>
},

// UTILITIES (10+)
{
project: "budget-tracker",
title: "Budget Tracker",
category: "utilities",
desc: "Track income and expenses, view categories, and persist data locally",
tags: "utility,finance,tracker,money"
},
{
project: "morse-code",
title: "Morse Code",
Expand Down
34 changes: 34 additions & 0 deletions web-app/js/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -1596,6 +1596,26 @@ function getProjectHTML(projectName) {

const projectInstructions = {
// GAMES
"war-card-game": {
title: "⚔️ How to Play War Card Game",
steps: [
"Enter names or check the option to play against the CPU.",
"Each player starts with a deck of 26 cards.",
"Click 'Draw / Battle' to draw the top card from both decks.",
"The player with the higher card rank wins the round and gets a point.",
"Ace is the highest, 2 is the lowest.",
"Play continues until all cards are drawn. The player with the most points wins!"
]
},
"number-sliding-puzzle": {
title: "🧩 How to Play Number Sliding Puzzle",
steps: [
"Use arrow keys (← ↑ → ↓) or click/tap on tiles next to the empty space to slide them.",
"Arrange the numbers in ascending order from 1 to 8, with the blank space at the bottom right.",
"A moves counter keeps track of your steps.",
"Click the Reset button to restart the game."
]
},
"2048-game": {
title: "🎮 How to Play 2048",
steps: [
Expand Down Expand Up @@ -1864,6 +1884,16 @@ const projectInstructions = {
"Click any color to copy its hex code"
]
},
"budget-tracker": {
title: "💰 How to Use Budget Tracker",
steps: [
"Select the transaction type (Income or Expense) from the dropdown.",
"Enter a category, description (optional), and positive amount value.",
"Click 'Add Transaction' to log it in your dashboard.",
"Analyze spending behavior through dynamic category-wise progress bars.",
"Clear individual records using the delete action or wipe out all history securely."
]
},
"morse-code": {
title: "📻 How to Use Morse Code",
steps: [
Expand Down Expand Up @@ -3158,6 +3188,10 @@ function initializeProject(projectName) {
"color-palette": "initColorPalette",
"math-quiz": "initMathQuiz",
"resume-analyzer": "initResumeAnalyzer",
"caesar-cipher": "initCaesarCipher",
"war-card-game": "initWarCardGame",
"number-sliding-puzzle": "initNumberSlidingPuzzle",
"budget-tracker": "initBudgetTracker"
"caesar-cipher": "initCaesarCipher"
};

Expand Down
Loading
Loading