Материалы по теме 'designpatterns' | DevsDay.ru

IT-блоги Материалы по теме 'designpatterns'

IT-блоги Материалы по теме 'designpatterns'


Разработка dev.to 17 мая 2024 г. 15:30

🛠️ Practicing Low-Level Design: Building a Logging Framework 📝 Looking to enhance your low-level design skills using design patterns? In this tutorial, we'll embark on a fascinating journey of building a logging framework from the ground up. By...... читать далее

designpatterns systemdesign logging oop

Разработка dev.to 17 мая 2024 г. 9:59

We’re in the midst of a design revolution — a shift from simply creating user-friendly products to tackling the intricate challenges of social issues. Whether it’s reimagining the delivery of portable drinking water in remote areas or questioning the...... читать далее

uxdesign designpatterns designthinkng yuj

Разработка dev.to 15 мая 2024 г. 11:09

Are you looking for new design inspiration to help elevate your projects? Look no further! In this blog post, we've compiled a list of the top 15 websites for design inspiration in 2024. Each of these websites provides a unique perspective and a wea...... читать далее

webdev design frontend designpatterns

Разработка dev.to 14 мая 2024 г. 21:01

Imagine being immersed in a complex Ruby on Rails project, where you find yourself navigating through models, controllers, and views like a seasoned developer. However, as the project evolves, so does the complexity of the codebase, making it increas...... читать далее

ruby rails designpatterns systemdesign

Разработка dev.to 13 мая 2024 г. 5:26

S (Single Responsibility Principle): A Class should have only one responsibility. Ex: User class should have functions only related to users. O (Open/Closed Principle): Open for extension but closed for modification. Means create interface and then...... читать далее

beginners designpatterns

Разработка dev.to 12 мая 2024 г. 1:26

Recently, I have been reflecting a lot on some development patterns, best practices, and code quality. Many ideas come to mind with such a broad theme, but in this series of articles, I would like to specifically explore the design pattern that we no...... читать далее

solidprinciples programming learning designpatterns

Разработка dev.to 10 мая 2024 г. 5:51

We will try: MediatR Mailbox Event Rx Agent MediatR Example: open MediatR // Define the request type inheriting from `IRequest`. Here it's `MyRequest`. type MyRequest() = inherit IRequest // Define the handler that takes th...... читать далее

dotnet designpatterns fsharp

Разработка dev.to 8 мая 2024 г. 2:02

Continuando minha série de reflexões, assim como a maioria das pessoas que começa a se aprofundar em SOLID, gostaria de começar com a letra "S". Trabalharei com TypeScript nos exemplos. Neste artigo Single Responsibility Principle Exem...... читать далее

solidprinciples programming designpatterns typescript

Разработка dev.to 6 мая 2024 г. 15:42

Hey Flutter enthusiasts! Ever worry about missing key Flutter updates? Well, worry no more! Starting 2024, I'm here to keep you informed with a weekly Monday report. Let's stay ahead in the world of Flutter! Table of Contents Mayor Flutt...... читать далее

flutter news dart discuss

Разработка dev.to 5 мая 2024 г. 2:42

Tabla de contenido: Introducción TDD y el lujo de la Refactorización Los componentes de la NES Problema: Una red de dependencias caótica Bus de Control: Patrón Mediator Separando lo inseparable Algunos detalles técnicos de la CPU El acopl...... читать далее

typescript javascript emulator designpatterns

Разработка dev.to 3 мая 2024 г. 11:38

Whether you're a seasoned designer or just starting out, gaining proficiency in Figma can be a game-changer for your career. This powerful design tool has become the industry standard, loved by professionals for its intuitive interface, real-time col...... читать далее

figma design designpatterns prolog

Разработка dev.to 2 мая 2024 г. 17:59

Recentemente, tenho refletido bastante sobre alguns padrões de desenvolvimento, boas práticas e qualidade de código. Diversas ideias vêm à mente com um tema tão abrangente, mas nesta série de artigos, gostaria de explorar especificamente o padrão de...... читать далее

solidprinciples programming learning designpatterns

Разработка dev.to 2 мая 2024 г. 12:09

No universo Flutter, encontramos diversas formas de lidar com gerência de estado e de aplicar as melhores práticas da linguagem em determinados contextos, nesse artigo vou lhe apresentar mais uma forma para essa coleção! Vamos conhecer um pouco sobre...... читать далее

flutter designpatterns dart braziliandevs

Разработка dev.to 1 мая 2024 г. 11:34

Singleton pattern is probably the most used design patterns. It's a useful way to ensure that a class has only one instance while providing a global access point to this instance. It is helpful in coordinating actions across a system but also makes t...... читать далее

singleton designpatterns php factorypattern

Разработка dev.to 1 мая 2024 г. 2:06

what are behavioural patterns in OODesign Behavioural patterns in design patterns are concerned with communication between objects, how objects collaborate, and how responsibilities are distributed among them. They focus on the interaction patterns...... читать далее

designpatterns oop

Разработка dev.to 30 апреля 2024 г. 18:24

CQRS, or Command Query Responsibility Segregation, is a software architecture design pattern that separates read and write operations in a data system. It is based on the principle that commands (which modify data) should be separated from queries (w...... читать далее

cqrs designpatterns

Разработка dev.to 28 апреля 2024 г. 3:15

A note: while learning new concepts, what has proven the most successful strategy to me is not the meticulous reading of a good article but immerse my eye balls in tons of articles, exposing my mind to different point of views, ways of teaching, diff...... читать далее

oop designpatterns

Разработка dev.to 26 апреля 2024 г. 20:57

Hi there. Today I will share how I understood the Adapter Pattern using Vue.js. In short, the Adapter Pattern in Vue.js is used to "adapt" the interface of a component, method, or service so that it can be used in a compatible way with other parts o...... читать далее

vue designpatterns beginners vue3

Разработка dev.to 26 апреля 2024 г. 20:51

** A Armadilha Sutil: Desvendando os Padrões Enganosos ("Deceptive Patterns") na Nossa Vida Digital ** Introdução Na era digital, interagir com interfaces online tornou-se uma parte essencial de nossas vidas. No entanto, essas interaçõe...... читать далее

designpatterns contentdesign ux uxw

Разработка dev.to 26 апреля 2024 г. 15:54

In today’s world of software development, systems containing some sort of event constructs are increasing in popularity. While this is primarily driven by message-based communication mechanisms, events are also used in different scopes and contexts...... читать далее

architecture eventdriven softwareengineering designpatterns