LALara Alexanderindevlarabar.hashnode.dev·Dec 1, 2023 · 4 min readA Collection of Weird, Useless, and Oddly Helpful ReposAfter reading and thoroughly enjoying this Medium blog post with some friends one afternoon, I wondered if I could find other weird programs and funny repositories. Although I was initially searching for mostly useless, purely entertaining repos, I c...00
LALara Alexanderindevlarabar.hashnode.dev·Nov 1, 2023 · 2 min readModel View Controller (MVC) ExplainedModel View Controller, or MVC for short, is an architectural pattern, where we structure our full-stack applications into three main components: the model, the view, and the controller. Model The Model refers to the data-related aspects of the applic...00
LALara Alexanderindevlarabar.hashnode.dev·Nov 1, 2023 · 2 min readThe Sliding WindowThe Sliding Window is a type of algorithm that helps us solve problems with fixed windows. It is used to optimize our programs, reducing the need for extra loops by reusing the result of the previous step in the next step. The brute-force approach to...00