muh railway souichhh #functionalprogramming #designpattern #scala
#scala #designpattern #functionalprogramming
Une vidéo de 13:15 qui explique et illustre assez bien le concept d'injection de dépendance.
Dependency Injection, The Best Pattern
https://youtu.be/J1f5b4vcxCQ
#designpattern #dev #video — https://links.kalvn.net/shaare/8EqWGA
Singleton | Swiftly Engineered iOS
#Singleton #DesignPattern #Swift #Programming #iOS #macOS
https://daddycoding.com/2023/03/09/singleton/
#singleton #designpattern #swift #programming #iOS #macOS
#ITByte: The #Sidecar #DesignPattern is used to promote separation of concerns in #Microservices #Architecture.
Here is a short overview.
https://knowledgezone.co.in/trends/explorer?topic=Sidecar-Pattern
#architecture #microservices #designpattern #sidecar #itbyte
My SwiftUI "Router Pattern" blog post: https://davidgarywood.com/swiftui-router-pattern-2-0/
#swiftui #designpattern #iosdev #asyncawait
#ITByte: What is #Event Sourcing #DesignPattern in #Microservice #Architecture? How does it work?
https://knowledgezone.co.in/trends/explorer?topic=Event-Sourcing
#architecture #microservice #designpattern #event #itbyte
PSA: If you are building a feature or capability in an #Agile project and it rests on some previously established standard architecture or #designpattern, you need to explicitly reference and link back to that previously established thing in your #documentation, not assume that everyone just knows what it is. /1
#agile #designpattern #documentation
Inicio nueva serie sobre patrones de diseño en mi blog y comenzamos con el Criteria, muy útil cuando necesitamos realizar filtrados con cierta complejidad.
¿Quieres saber un poco más sobre él?
Te dejo el artículo por aquí
#designpattern #criteriapattern
Check out @maggie #designPattern catalogue https://maggieappleton.com/patterns. Those patterns are rather exotic and thus very interesting. Give it a read and think about what other patterns you come across in you day to day.
#Design #Patterns
UX Pattern Analysis · Deep dives into enterprise-specific UX patterns filled with examples https://ilo.im/113umb
_____
#ProductDesign #UxDesign #UiDesign #WebDesign #UxPattern #DesignPattern #Example
#design #patterns #productdesign #uxdesign #uidesign #webdesign #uxpattern #designpattern #example
#Design #Reference
Visual design techniques · A phenomenal collection of visual design patterns and techniques https://ilo.im/10nd7q
_____
#VisualDesign #UiDesign #WebDesign #DesignPattern #Pattern #Technique #Effect #Reference #Inspiration
#design #reference #visualdesign #uidesign #webdesign #designpattern #pattern #technique #effect #inspiration
#Design #Development #CheatSheets
Common sign-up patterns · The sign-up flow: how it works and how you can improve it https://ilo.im/10ld92
_____
#UxDesign #UiDesign #DesignPattern #WebDevelopment #WebDev #Form #Registration #Security #Accessibility #Activation #Email #SignUp #SignIn #SingleSignOn #Login
#design #development #cheatsheets #uxdesign #uidesign #designpattern #webdevelopment #webdev #form #registration #security #accessibility #activation #email #signup #signin #singlesignon #login
memoizing in Java - old but good :-) #java #jdk #functional #designpattern https://dzone.com/articles/memoizing-functions-with-core-java9
#java #jdk #functional #designpattern
A #designpattern is a way to solve common problems in software design in a repeatable manner.
These issues often arise when working on big legacy applications with #rubyonrails, especially when the architecture does not follow good software design principles.
Click 👇🏻 to read the blog where you learn a broad overview of the design patterns that are frequently applied to #Ruby on Rails applications.
#designpattern #rubyonrails #ruby
"Tree views in CSS", by @kate
https://iamkate.com/code/tree-views/
Once again, a reminder that you don't need JS for a lot of things and that an HTML/CSS version will be faster, better supported and easier to make accessible. Great piece.
#treeview #designpattern #css #boostmarks
I use a #designpattern quite a bit. But I dont know what its called.
A Manager class has several types injected via its constructor.
One is an IDatabaseService. This service has a reference to the actual #entityframework entites.
The Manager class is built in such a way that exposes the methods that a user would need in order complete the job.
It has one main method, Process() which calls all the methods needed. Kind of a list of methods.
Is this a design pattern?
#designpattern #entityframework
A good example that illustrates how one can improve conditional rendering in #React with the #StrategyPattern.
#designpattern #webdevelopment #javascript #typescript
https://medium.com/@marcioc0sta/strategy-pattern-for-conditional-rendering-797d9a3261f7
#react #strategypattern #designpattern #webdevelopment #javascript #typescript
If I tell you: "It prevents multiple objects from directly communicating all together. Instead, it manages this communication." Can you guess which design pattern I'm talking about? #designPattern
"Facade" and "Adapter" patterns are both about interfaces. The first decouples a client from a complex subsystem. The second changes an interface into one the client expects. #designPattern
The Iterator pattern follows the Single Responsibility principle. Indeed, the unique goal of the iterator is to browse efficiently a given aggregate. #designPattern