-
MY PROJECTS
-
Recent Posts
- Reading.CleanArchitecture.InputOutputPorts
- Reading.CleanArchitecture.MissingChapter
- Reading.CleanArchitecture.VideoSales
- Reading.CleanArchitecture.FrameworksAreDetails
- Reading.CleanArchitecture.WebIsADetail
- Reading.CleanArchitecture.DatabaseAsDetail
- Reading.CleanArchitecture.Embedded
- Reading.CleanArchitecture.TestBoundary
- Reading.CleanArchitecture.Services
- Reading.CleanArchitecture.MainComponent
- Reading.CleanArchitecture.PartialBoundaries
- Reading.CleanArchitecture.Presenters
- Read.CleanArchitecture.CleanArchitecture
- Reading.CleanArchiteture.ScreamingArchiteture
- Reading.CleanArchitecture.BusinessRules
- Reading.CleanArchitecture.PolicyAndLevel
- Reading.CleanArchitecture.Boundaries
- Reading.CleanArchitecture.Independence
- Reading.CleanArchitecture.ArchitectureDefinition
- Algo.Java.CheckPrimeNumber
Categories
- Aptana
- Azure
- C#
- DataSnap
- DBExpress
- Delphi
- Delphi и сети
- Delphi. Язык программирования
- ExtJS
- FastReport
- FireDAC
- FireMonkey
- GIT
- ICS
- IDE
- IIS
- Indy
- InnoSetup
- javascript
- jQuery
- JSON
- LiveBindings
- MSHTML
- MySQL
- PHP
- REST
- Ribbons
- SMS
- SQL инструкции
- SVN
- TRichView
- UniGui
- WebBroker
- WinAPI
- Windows
- Алгоритмы
- Без рубрики
- Деревья
- Ищу ответ
- Компонентостроение
- Мои компоненты
- Начальный уровень
- Обработка исключений
- Парсинг
- Потоки(Threads)
- Регулярные выражения
- Тестирование приложений
Author Archives: Stanislav_Panteleev
Reading.CleanArchitecture.InputOutputPorts
In Clean Architecture, Input Ports and Output Ports are concepts related to the separation of concerns between the core business logic (use cases) and the outside world (e.g., UI, databases, APIs). These ports establish boundaries that ensure the core logic … Continue reading
Posted in Без рубрики
Comments Off on Reading.CleanArchitecture.InputOutputPorts
Reading.CleanArchitecture.MissingChapter
(Clean Architecture by Robert C. Martin) The final chapter, The Missing Chapter, reflects on the core principles of Clean Architecture and offers insights into its real-world applications. Robert C. Martin emphasizes the importance of discipline, adaptability, and commitment to maintaining … Continue reading
Posted in Без рубрики
Comments Off on Reading.CleanArchitecture.MissingChapter
Reading.CleanArchitecture.VideoSales
This chapter presents a case study that applies Clean Architecture principles to a real-world example: a system for managing video sales. Robert C. Martin uses this example to demonstrate how to organize a system’s architecture to separate business rules, use … Continue reading
Posted in Без рубрики
Comments Off on Reading.CleanArchitecture.VideoSales
Reading.CleanArchitecture.FrameworksAreDetails
In this chapter, Robert C. Martin emphasizes that frameworks, while powerful tools, should be treated as implementation details rather than foundational elements of a system’s architecture. Over-reliance on frameworks can lead to tightly coupled, inflexible systems that are hard to … Continue reading
Posted in Без рубрики
Comments Off on Reading.CleanArchitecture.FrameworksAreDetails
Reading.CleanArchitecture.WebIsADetail
1. The Web Is Not the System The web is simply a delivery mechanism for the system’s functionality. The system’s core business rules and use cases should not depend on HTTP, URLs, or web technologies. Core Idea: Treat the web … Continue reading
Posted in Без рубрики
Comments Off on Reading.CleanArchitecture.WebIsADetail
Reading.CleanArchitecture.DatabaseAsDetail
This chapter reiterates the principle that a database, like frameworks and other implementation details, should not dictate the architecture of your system. Instead, the database is treated as a detail that can be swapped or modified without impacting the core … Continue reading
Posted in Без рубрики
Comments Off on Reading.CleanArchitecture.DatabaseAsDetail
Reading.CleanArchitecture.Embedded
(Clean Architecture by Robert C. Martin) This chapter explores how the principles of Clean Architecture apply to embedded systems. Embedded systems, which are constrained by hardware resources and tightly coupled to hardware functionality, require a unique approach to achieve flexibility, … Continue reading
Posted in Без рубрики
Comments Off on Reading.CleanArchitecture.Embedded
Reading.CleanArchitecture.TestBoundary
1. The Importance of Boundaries in Testing Boundaries separate different components or layers of a system, such as the business logic, UI, database, and external APIs. Well-defined boundaries make it possible to: Test components in isolation. Mock or stub external … Continue reading
Posted in Без рубрики
Comments Off on Reading.CleanArchitecture.TestBoundary
Reading.CleanArchitecture.Services
Key Concepts of Services: Great and Small 1. What Are Services? A service is any software component that performs a specific function or provides a set of behaviors to other components. Services can exist at various levels within the architecture, … Continue reading
Posted in Без рубрики
Comments Off on Reading.CleanArchitecture.Services
Reading.CleanArchitecture.MainComponent
Main Component (Clean Architecture by Robert C. Martin) The Main Component chapter discusses the core entry point of a software system and its role in initializing the application, wiring dependencies, and starting the execution flow. The main component serves as … Continue reading
Posted in Без рубрики
Comments Off on Reading.CleanArchitecture.MainComponent