@@ -433,24 +433,30 @@ def draw_o(ox, oy):
433433 print (f"Generated HD banner: { filename } " )
434434
435435# Project category directory mappings
436+
436437projects = [
437438 # GAMES
438439 ("2048 Game" , "games" , "2048-game.jpg" ),
439440 ("Coin Flip" , "games" , "coin-flip.jpg" ),
440441 ("Dice Rolling" , "games" , "dice-rolling.jpg" ),
441442 ("Dots & Boxes AI" , "games" , "dots-boxes.jpg" ),
442- ("Emoji Memory Game" , "games" , "emoji-memory.jpg" ),
443+ ("Emoji Memory Game" , "games" , "emoji-memory-game .jpg" ), # FIXED filename
443444 ("FLAMES Game" , "games" , "flames.jpg" ),
444445 ("Flappy Game" , "games" , "flappy-game.jpg" ),
445446 ("Hangman" , "games" , "hangman.jpg" ),
446447 ("Math Quiz" , "games" , "math-quiz.jpg" ),
447448 ("Number Guessing" , "games" , "number-guessing.jpg" ),
448449 ("Password Forge" , "games" , "password-forge.jpg" ),
449450 ("Rock Paper Scissors" , "games" , "rock-paper-scissor.jpg" ),
450- ("Snake Game" , "games" , "snake-game .jpg" ),
451+ ("Snake Game" , "games" , "snake.jpg" ),
451452 ("Whack-a-Mole" , "games" , "whack-a-mole.jpg" ),
452453 ("Word Scramble" , "games" , "word-scramble.jpg" ),
453454 ("Blackjack 21" , "games" , "blackjack21.jpg" ),
455+ ("Simon Says" , "games" , "simon-says.jpg" ),
456+ ("Tic Tac Toe" , "games" , "tic-tac-toe.jpg" ),
457+ ("Spot the Difference" , "games" , "spot-the-difference.jpg" ),
458+ ("Productive Pet" , "utilities" , "productive-pet.jpg" ),
459+ ("Progress Tracker" , "utilities" , "progress-tracker.jpg" ),
454460
455461 # MATH
456462 ("AP/GP/AGP/HP Recognizer" , "math" , "progression-recognizer.jpg" ),
@@ -463,6 +469,9 @@ def draw_o(ox, oy):
463469 ("Pascal's Triangle" , "math" , "pascal-triangle.jpg" ),
464470 ("Prime Analyzer" , "math" , "prime-analyzer.jpg" ),
465471 ("Projectile Motion" , "math" , "projectile-motion.jpg" ),
472+ ("Binary Search" , "math" , "binary-search.jpg" ),
473+ ("Bubble Sort" , "math" , "bubble-sort.jpg" ),
474+ ("Tower of Hanoi" , "math" , "tower-of-hanoi.jpg" ),
466475
467476 # UTILITIES
468477 ("Morse Code" , "utilities" , "morse-code.jpg" ),
@@ -472,7 +481,6 @@ def draw_o(ox, oy):
472481 ("Color Palette Suggestor" , "utilities" , "color-palette.jpg" ),
473482 ("AI Resume Analyzer" , "utilities" , "resume-analyzer.jpg" ),
474483 ("Caesar Cipher" , "utilities" , "caesar-cipher.jpg" ),
475- ("Simon Says" , "games" , "simon-says.jpg" ),
476484]
477485
478486# Run generation
0 commit comments