Classic Design Patterns: Where Are They Now - Brandon Rhodes - code::dive 2022

  Рет қаралды 13,626

code::dive conference

code::dive conference

Күн бұрын

Пікірлер: 21
@konstsh2240
@konstsh2240 Жыл бұрын
This talk resonates a lot with features offered by functional paradigm - immutable data separated from methods, explicit flow, expressions instead statements.
@rollerskaterevival8484
@rollerskaterevival8484 Жыл бұрын
Thank you so much for explaining why I've been in software for 5+ years and have never seen most of these.
@SuperBizon012
@SuperBizon012 Жыл бұрын
I suppose, you are using iterators or decorators, for example, every day but it hidden under the hood.
@JeffreyRennie
@JeffreyRennie Жыл бұрын
This talk is a gem of wisdom.
@Nick_fb
@Nick_fb Жыл бұрын
underrated talk.
@RobertHanz
@RobertHanz Жыл бұрын
In Smalltalk, the Singleton pattern really was there to handle things like "true". Since everything is an object in Smalltalk, including "true" and "false", they quickly realized that there was no reason to have a gazillion "true" objects, as that would lead to massive memory overhead. So, having a single, well-known, globally accessible instance of "true" made a lot more sense than everybody creating their own version of it whenever they needed to test something against true. Understanding design patterns is a lot easier if you understand just a little Smalltalk. (Note that this sometimes means "when not to use them because they solve problems not relevant to your language")
@simonwilliamson4375
@simonwilliamson4375 Жыл бұрын
This is very much appreciated. Thank you!
@mwatkins0590
@mwatkins0590 Жыл бұрын
I believe "Inversion of Control" is a common strategy to avoid that "Domino" programming you describe. if im understanding you correctly? I also don't think that the Strategy Pattern necessarily means you have to pass it a class which owns the method. I think injecting a function into a class would still be considered using the strategy pattern, its just a more modern implementation for languages that are less rigid around classes. Even in java you could just use a Functional Interface as the property instead of a class.
@rednafi
@rednafi Жыл бұрын
I think you're right on the point that whenever a routine (function or a class) is passed to another routine where the incoming routine provides some facilities to be used in the receiving routine, that can be considered strategy pattern.
@jeremiamagongwa8980
@jeremiamagongwa8980 Жыл бұрын
Strategy Pattern is Dependency Injection
@funkindy
@funkindy Жыл бұрын
Brilliant talk. Why so little views((
@tingqianli4412
@tingqianli4412 Жыл бұрын
I like the beginning part when you cross-out patterns and say modern language has done that for you, May be an more interesting topic is "design patterns in model language"
@TomLeg
@TomLeg 8 ай бұрын
Design Patterns is/are primarily about providing features not available in your programming language. In the 1950s, subroutines were a design pattern. Nowadays, it's a machine language opcode. 2) - Getters and Setters are actually a mortal sin. You might GET your bank balance, but you never ET it ... you deposit or withdraw from your bank acount.
@TomLeg
@TomLeg 8 ай бұрын
Whenever you try to make things invulnerable to all complications, you are trying to make the world foolproof ... but the world will just create a more powerful fool.
@Nalewkarz
@Nalewkarz Жыл бұрын
Hmm good presentation but i think that observer is used in reactive programming and proxy is a mediator just in a different context.
@sgtreckless5183
@sgtreckless5183 Жыл бұрын
I think the prototype design pattern is used a lot in Game Development?
@kaidzz
@kaidzz Жыл бұрын
On soap webservice I thought its use there
@Elefantoche
@Elefantoche Жыл бұрын
My hot take: You probably haven't seen most of these patterns if your only modern reference language is Python.
@atanas-nikolov
@atanas-nikolov Жыл бұрын
Okay, something must be a bit wrong when he talks about consumers and producers, and generators. Isn't it the case that when you pass an entire generated list, it is still being iterated through an iterator? And a generator only returns an iterator, it's basically syntactic sugar for an iterator class. The list itself has an __iter__ method on it, which returns an iterator, which is iterating through the list lazily. That is if you use a standard for loop, of course. So I don't see the point here, specifically in the case of Python. In other languages, where you can actually iterate through mathematical operations (incrementing an index), it may make sense to not rely on an interator... But aside from that, you still kinda do, no? Even if we generate the list externally and pass it that, how is that a shallow call stack? It may actually make more sense to generate the iterator, and simply pass the iterator, if we are so worried about letting the consumer do decide what they want to consume. In any case, Python does exactly that when we pass it a list. It is passed by reference and iterating through it is basically calling the __iter__ method to return an iterator. By passing the result of calling the gen function, we are actually passing an iterator, so it is virtually the same. ### As for his other remarks, many of them are either wrong, or miss the point entirely. Strategy pattern is still used, it's called dependency injection. Basically the same thing. The observer pattern is still pretty much how event-based systems work, especially in UI. Maybe not 100% the same, but the pattern is still there. Pub/Sub is technically a more complex observer. And React most certainly does either Observer or Mediator, depending on how you think about it. The memento pattern is not what he described at all. I have no idea what he described, never heard of it like that before, but definitely not the memento. The memento depends on in-memory storage, not DB storage. While we may want to persist that state in a DB, that's not its primary purpose. The primary purpose is to provide some kind of undo functionality.
@msqrt
@msqrt Жыл бұрын
The prototype pattern is everywhere in JS tho
@firstname4337
@firstname4337 Жыл бұрын
object oriented programming sucks
When Python Practices Go Wrong - Brandon Rhodes - code::dive 2019
1:00:51
code::dive conference
Рет қаралды 96 М.
When u fight over the armrest
00:41
Adam W
Рет қаралды 31 МЛН
ТВОИ РОДИТЕЛИ И ЧЕЛОВЕК ПАУК 😂#shorts
00:59
BATEK_OFFICIAL
Рет қаралды 6 МЛН
The Observer Design Pattern in Cpp - Mike Shah - CppCon 2022
1:02:17
Functional Design Patterns - Scott Wlaschin
1:05:50
NDC Conferences
Рет қаралды 299 М.
Beautiful Python Refactoring II - Conor Hoekstra - code::dive 2022
54:06
code::dive conference
Рет қаралды 4,4 М.
8 Design Patterns | Prime Reacts
22:10
ThePrimeTime
Рет қаралды 437 М.
Protocols in Python: Why You Need Them - presented by Rogier van der Geer
28:40
EuroPython Conference
Рет қаралды 11 М.
"Type-Driven API Design in Rust" by Will Crichton
40:57
Strange Loop Conference
Рет қаралды 124 М.
Master the Fluent Builder Design Pattern in C#
15:05
Milan Jovanović
Рет қаралды 29 М.
Design Patterns in Python by Peter Ullrich
27:31
PyCon Sweden
Рет қаралды 134 М.
When u fight over the armrest
00:41
Adam W
Рет қаралды 31 МЛН