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

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

IT-блоги Материалы по теме '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

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

Design Patterns, padrões de design ou até padrões de projeto, são um conjunto de soluções típicas para problemas comuns dentro do desenvolvimento de software. São algoritmos?! Não. Um algoritmo é uma descrição detalhada de passos para realizar uma...... читать далее

designpatterns csharp

Разработка dev.to 25 апреля 2024 г. 14:10

Table of Content Table of Content Preface Introduction Why are entities bad for de-/serialization? The Solution API Response/Request Schema DTO Utilization Builder Pattern Example of a Builder Builder Composition More Compositions Re...... читать далее

php api designpatterns

Разработка dev.to 22 апреля 2024 г. 16:37

Introduction Some time ago I was with a task to implement the following flow: Get data from database; Filter data by some criteria; For each register, access one API to get data and complete informations; Record all data on database. At this ti...... читать далее

strategypattern designpatterns dotnet programming

Разработка dev.to 22 апреля 2024 г. 7:17

One of the most popular design patterns is the Builder pattern. The Builder pattern is used to create complex objects with a simple step-by-step approach. In this blog post, we will explore what the Builder pattern is, how it works, and some of its...... читать далее

designpatterns webdev beginners programming

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

Context Both the singleton pattern and the static keyword are concepts that involve shared resources within an application. But when should we use each of them? This article aims to provide clarity on this matter. What is singleton patter...... читать далее

java designpatterns

Разработка dev.to 17 апреля 2024 г. 11:04

Singleton is a design pattern that lets you ensure that a class only has one instance, while also allowing you to have global access to the single object. The problem this solves is to ensure that there is only ever one object of this class, why wou...... читать далее

designpatterns beginners programming codenewbie