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

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

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


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

Exegi Monumentum I’ve crafted software more lasting than bronze, Loftier than pyramids, resilient and strong, Paraphrase of Horace's 'Exegi Monumentum' poem. Have you ever felt that way about your code? You've just created a piece of engineerin...... читать далее

softwareengineering overengineering pragmatic architecture

Разработка dev.to 24 мая 2024 г. 22:31

Could Microservices Be a Good Fit for Micro SaaS Startups? As a solo developer, I've been intrigued by the potential of microservices for small SaaS and micro SaaS projects. Balancing the constraints of limited resources with the option to scale qu...... читать далее

microservices webdev discuss tutorial

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

The unopinionated nature of React is a two-edged sword: On the one hand you get freedom of choice. On the other hand many projects end up with a custom and often messy architecture. This article is the fourth part of a series about software arc...... читать далее

react javascript webdev frontend

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

1. Introduction Tab navigation helps organize content on a webpage efficiently, allowing users to switch between different sections without leaving the page. This tutorial will guide you through creating a tab navigation system with random data for...... читать далее

javascript webdev tutorial css

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

Intro: This is a small HTML, JavaScript Quiz Game for JavaScript Beginners. I've commented on each line of the JavaScript file to help myself and anyone new to JavaScript understand what each line does. Feel free to correct me if I've made mistakes...... читать далее

beginners javascript html css

Разработка dev.to 20 мая 2024 г. 16:08

Table of Contents Background and motivation for this AppSignal article and frameworks introductions Structure and Architecture of Rails and Hanami Ecosystem and Community Ease of Use, Adoption, Governance, and Learning Curve Performance: Ruby o...... читать далее

ruby hanami rails

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

Quando estamos iniciando um novo projeto em uma nova linguagem, surgem algumas perguntas essenciais: "Qual estrutura devo utilizar para este projeto?" "Existe alguma convenção própria da linguagem?" "Há um padrão amplamente aceito pela comunidade?"...... читать далее

go learning productivity

Разработка dev.to 16 мая 2024 г. 7:31

This article is the third part of a series that explores integrating Ory, within the NestJS framework. In the previous articles, we introduced Ory and its core components and discussed creating dedicated NestJS libraries to simplify Ory integration...... читать далее

tutorial javascript nestjs ory

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

Recently, I was asked to present on Domain Driven Design. As I delved deeper into the research, it became clear that DDD is a crucial aspect of system architecture that many developers don’t fully grasp. Building software that aligns with complex bu...... читать далее

domaindrivendesign architecture softwareconcepts

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

1. Introduction In this article, I will explain the basic concepts and initial practices of Domain-Driven Design (DDD) as an output of what I have learned. My interest in DDD was sparked by the following reasons: The product I was responsible for...... читать далее

ddd

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

In the dynamic landscape of web development, building scalable and maintainable React applications is crucial for success. As your projects evolve and grow in complexity, having a solid structure in place becomes essential to ensure scalability, flex...... читать далее

react frontend components webdev

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

After years of developing monolithic applications with Java and Spring, typically following a traditional three-layer architecture, I recently had the opportunity to join a new project that relies on a highly modular approach with distinct microservi...... читать далее

eventdriven ddd eventsourcing microservices

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

Assumptions are the mother of all f**k ups. This is a beautiful and unbelievably true statement. Photo by Bao Menglong on Unsplash We as software developers are creating, or if you prefer developing, software. And that software is just a set of i...... читать далее

softwareengineering csharp efcore softwaredevelopment

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

Firebase SDK is plug and play Blog with comments... *consider rules with DB codepen is purely an example initialize const firebaseConfig = { apiKey: "YOUR_API_KEY", authDomain: "YOUR_AUTH_DOMAIN", databaseURL: "YOUR DATABASE URL". projectid...... читать далее

codepen realtimedb firebase html

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

We already discussed how to choose a database and which things to focus on. However, picking a database is just the beginning of our journey. We need to maintain it and use it efficiently later on. There is not much use in getting the latest shiny da...... читать далее

sql database monitoring observability

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

Original article on Medium In the evolving landscape of software architecture, the choice between traditional exception handling and adhering to functional programming principles to manage errors directly impacts system design and reliability. Clea...... читать далее

ddd programming development csharp

Разработка Honeybadger Developer Blog 30 апреля 2024 г. 1:28

Standards and consistency are an important part of any web application, but enforcing them can be boring and tedious. In this article, we'll look at how we can automate this process using Pest to improve the quality of our Laravel projects.... читать далее

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

In a previous article, we discussed the benefits of creating an activity feed for your product. In this post, we’ll cover how to build an activity feed directly into your product using Node.js and Socket.io. Let’s say we’re building a B2B SaaS app f...... читать далее

node socketio github javascript

Разработка habr.com 23 апреля 2024 г. 14:06

Часто в больших компания всё поделено на большие системы. А если система «Legacy», т.е. устаревшая, то часто внутри неё собрано очень много разнородного функционала. По сути такие системы представляют из себя монолитных монстров.Бывает, что компании...... читать далее

ddd ограниченный контекст bounded context ubiquitous language domain driven design архитектура предметная область

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

Introduction to C# Records C# 9.0 introduced a new type of class in called record. Record is a reference type that offers immutability and equality comparison out of the box. There are 2 forms of defining a record: a classic and concise. Let's hav...... читать далее

programming csharp dotnet