MDG developermdgdev.xyz·Dec 20, 2024Nova - Primeros pasosQueda poco para que termine 2024 y no he querido dejar pasar la oportunidad de embarcarme en un nuevo proyecto. Hasta hoy, todas las iniciativas en las que me he involucrado han tenido finales abruptos, generalmente porque no he tenido la oportunidad...Web Development
Finance Freakfinancefreak.hashnode.dev·Oct 8, 2024Behavioral finance and how robo-advisors are customizing solutions.Behavioral finance is essentially the study of how psychological influences affect the decision-making processes of investors, resulting in some irrational financial behaviors in the process. Traditional finance involves the following: traditional fi...behavioural patterns
Joshua Akosadevwithjosh.com·Sep 14, 2024Understanding the Chain of Responsibility Pattern in C#In software design, handling requests in a clean and flexible manner is often a challenge. The Chain of Responsibility (CoR) pattern offers an elegant solution by decoupling the sender of a request from its receiver, allowing multiple handlers to pro...169 readsDesign PatternsC#
Venu Madhav Emmadivenumadhavemmadi.hashnode.dev·Aug 24, 20243.9 - Template Method Pattern : Behavioral Design PatternsThe Template Method Pattern is a behavioral design pattern that defines the skeleton or framework of an algorithm in a method, called the template method. While the main structure of the algorithm is defined in the superclass, specific steps of the a...2 likesDesign Patterns in Software Engineeringtemplate method pattern
Venu Madhav Emmadivenumadhavemmadi.hashnode.dev·Aug 10, 20243.8 - Memento Pattern : Behavioral Design PatternsThe Memento Pattern is a behavioral design pattern that allows an object to save its state and restore it later without exposing its internal structure. This pattern is useful when you need to implement undo/redo functionality or save checkpoints in ...2 likesDesign Patterns in Software Engineeringmemento pattern
Venu Madhav Emmadivenumadhavemmadi.hashnode.dev·Jul 27, 20243.7 - Interpreter Pattern : Behavioral Design PatternsThe Interpreter Pattern is a behavioral design pattern that defines a grammatical representation for a language and provides an interpreter to evaluate sentences in that language. This pattern is used to evaluate simple expressions or sentences that ...2 likesDesign Patterns in Software Engineeringdesign patterns
Venu Madhav Emmadivenumadhavemmadi.hashnode.dev·Jul 20, 20243.6 - Visitor Pattern : Behavioral Design PatternsThe Visitor Pattern is a behavioral design pattern that allows adding new operations to a set of objects (elements) without modifying their structure. The pattern involves creating a visitor class that implements operations for different types of obj...1 likeDesign Patterns in Software Engineeringdesign patterns
Venu Madhav Emmadivenumadhavemmadi.hashnode.dev·Jul 13, 20243.5 - Iterator Pattern: Behavioral Design PatternsThe Iterator Pattern is a behavioral design pattern that provides a way to sequentially access the elements of a collection without exposing the underlying structure. It separates the process of traversal from the actual collection, promoting loose c...1 likeDesign Patterns in Software Engineeringiterator design pattern
Venu Madhav Emmadivenumadhavemmadi.hashnode.dev·Jul 6, 20243.4 - Chain of Responsibility Pattern: Behavioral Design PatternsThe Chain of Responsibility Pattern is a behavioral design pattern that allows multiple objects to handle a request in a chain structure. The request gets passed along the chain until it is handled by one of the objects. This pattern promotes loose c...2 likesDesign Patterns in Software Engineeringbehavioural patterns
Venu Madhav Emmadivenumadhavemmadi.hashnode.dev·Jun 22, 20243.3 - Command Pattern: Behavioral Design PatternsIn software development, the Command Pattern is a behavioral design pattern used to encapsulate a request as an object, thereby allowing us to parameterize clients with different requests, queue or log requests, and support undoable operations. It de...2 likesDesign Patterns in Software Engineeringdesign patterns