© 2022 Hashnode
#solid
Solid, decentralization without blockchain I'm passionate about decentralized solutions. I believe that they are the future of our society and economy. And I'm not alone in this belief; many of my fri…
The Single Responsibility Principle (SRP) can be described this way: A module should have only one responsibility, and only one, reason to change. Unfortunately, this sentence is difficult to unders…
Every software component should have one and only one responsibility. There are two concepts that can help us understand more the meaning of the Single Responsibility Principle: I. Cohesion Cohesion is the degree to which the various parts…
There are different ways for state managment in SolidJS, one of them is to use a Store. In this example we create a Store for a fruit shop, the Store has 3 different products. import { render } from "…
In the 2021 state of JS survey result, solid.js, in its debut appearance, surprised many by jumping straight to the top of the satisfaction score. It beat out not just React but Svelte, the 2020 satis…
In this article, we will break down the 'O' in SOLID. I strongly recommend that you start with the first article in the series in order to cement the concepts in your mind as best as possible. What a…
Introduction: -- In this series, I will explain the five rules of S.O.L.I.D principles in detail. The reason these are important is so that, your code will be readable, maintainable, and testable. Yo…
Arguably one of the most common problems front-end developers need to solve is form handling. Specially in modern web applications that require instant validation and other real-time interactions with…
Resumo curso SOLID COM JAVA: PRINCÍPIOS DA PROGRAMAÇÃO ORIENTADA A OBJETOS voltado a pratica do Alura, segue minhas anotações! Single Responsibility Principle Define que cada método, classe ou função, deve ter responsabilidade única, assim…
해당 글은, 원문 글쓴이의 동의를 얻어 'SOLID Pirincipels Applied to Swift Development'를 번역한 글입니다. 매끄러운 의미 전달을 위해 의역한 부분이 있습니다. Introduction 개발자로서, 아마 SOLID 원칙을 들어보거나 사용해 본 적이 있을 것입니다. Robert C. Martin(Uncle Bob)은 그의 저서 Agile Software Development: Princip…