© 2023 Hashnode
#design-principles
In this article, we will figure out what exactly SOLID principles are and, most importantly, we will check out a few Kotlin examples to get an even better understanding. SOLID is an acronym for five design principles in Object-Oriented soft…
Introduction Robert C. Martin first established the five design concepts that make up SOLID in the early 2000s. These standards are regarded as the cornerstones for developing scalable and maintainabl…
APIs (Application Programming Interfaces) have become an essential part of modern software development, enabling different systems, applications and devices to communicate and share data and functiona…
Reference: https://www.invisionapp.com/inside-design/our-15-favorite-design-podcasts/ Image and content have been taken from: https://www.invisionapp.com/inside-design/our-15-favorite-design-podcasts/…
Every web design project is unique, and it’s essential to keep that in mind when creating a new design. Yes, there are some important elements that every site has. But each project is different. The n…
Design systems are awesome! They are a great way to ensure your team’s UI feels consistent. Minimal design system helps you build faster, and they help you make sure your app’s UI is consistent with y…
Luke: Master Yoda, I need guidance Yoda: Yes, young Luke Luke: "Master Yoda, I am having trouble communicating with the other Jedi in the council. We are all working on different missions, and I do …
What is this, the bold statement of the year? Only two rules needed in UX, an area filled with so many "must-read" books, expensive design schools and huge project checklists? Call me bold, but I'd sa…
A design system is a comprehensive set of guidelines and design elements that are used to create a consistent user experience across a product or organization. It is essentially a roadmap that outline…
// Base class public abstract class Lightsaber { public abstract void Assemble(); } // Concrete implementation of the base class public class StandardLightsaber : Lightsaber { public override…