Python Abstract Base Classes: Design Patterns
Python Abstract Base Classes: Design Patterns tags: python, oop, tutorial, programming tags: python, oop, tutorial, programming You’ve probably writte…
Latest Architecture news from Tech News
Python Abstract Base Classes: Design Patterns tags: python, oop, tutorial, programming tags: python, oop, tutorial, programming You’ve probably writte…
Let's say you need to implement a feature that returns a different package based on the user-provided coupon code. So you start with a model: public r…
Second in a series on practical software design. Technical details are essential, but they're not the solution Which is clearer? Here's a simple user …
It all starts with a review question. I was reworking my notes on the Design Patterns book , the Gang of Four one, with examples that all came from th…
Every time a new requirement arrives, do you find yourself opening the same function and adding another elif block? If yes, your code may be signaling…
Table of Contents Introduction 1. From Procedural to Object-Oriented 2. What Problem Does OOP Actually Solve? 3. Encapsulation — Access Control, Not L…
1. Hook & Problem Statement You’ve been there. You're building a Laravel application, and everything is going smoothly. You type Route::get('/orde…
In JavaScript and TypeScript, object references are often treated as disposable. An object is created, assigned to a variable, passed around, replaced…
A Familiar Frustration It’s 4 p.m. on a Friday, and I’ve spent the day working on a new high-priority feature. We discussed the requirements over emai…
C++ has a lot of double-edged swords. These features abstract the process of turning the sharp edge on yourself, so that you can destroy yourself with…
Book: Decoupled PHP — Clean and Hexagonal Architecture for Applications That Outlive the Framework Also by me: Thinking in Go (2-book series) — Comple…
Java LLD: Designing Snakes and Ladders with O(1) Move Resolution Designing Snakes and Ladders is a classic LLD (Low-Level Design) interview question t…
Have you ever opened a Project and found one giant PHP file with 2,000 lines? Functions everywhere. Global variables. No clear structure. And every ti…
Introduction WPF and the MVVM (Model-View-ViewModel) pattern are powerful tools for desktop development. However, as applications grow, the technical …
It all started when the Senior Architect dropped by the daily standup. The team lead had the backlog up on the big screen and there was a story about …
In the previous article, we examined the importance of software design, and how all software engineering principles have been defined to address issue…
Introduction In Java, inheritance is commonly used to reuse code using the extends keyword. However, inheritance is not always the best solution. In m…
This post was originally published at https://wraplet.dev/blog/wraplet-vs-web-components/ where the code examples are interactive. Introduction Wraple…
One of the most interesting aspects of architectural frameworks is not the rules themselves, but the ability to verify that those rules are actually b…
Book: Decoupled PHP — Clean and Hexagonal Architecture for Applications That Outlive the Framework Also by me: Thinking in Go (2-book series) — Comple…