Fading Coder

One Final Commit for the Last Sprint

Architectural Redesign of a Feed Stream System

A legacy feed stream feature within an educational mobile application suffered from severe performance degradation and code decay. The system managed dynamic content (images, videos, audio) to student-teacher interactions within class groups. The existing monolithic service, built on MySQL with over...

Iterative Development of a Java Quiz Assessment System

The development process of the quiz assessment system spans three distinct phases, evolving from basic question-answer validation to a comprehensive exam management tool supporting multiple papers, student registration, and dynamic content modification. Phase 1: Basic Question-Answer Validation The...

Alien Invasion in Python with Pygame: Refactored Source Code

alien_invasion.py import pygame from pygame.sprite import Group from settings import Config from game_stats import GameState from scoreboard import HUD from button import Button from ship import Ship import game_functions as gf def main(): pygame.init() cfg = Config() screen = pygame.display.set_mod...