What a joy to have a tutorial from a clear English speaking individual. Great job btw. Too bad you did not continue.
@AB-os3jy3 жыл бұрын
I really appreciate how you write it live while explaining.
@nkechinnaji89825 ай бұрын
Your explanations are super clear!! Awesome video.
@mehmeterdem75815 жыл бұрын
Please just do all the patterns,you have the best three videos/explanations on patterns on the web.
@canoelectronico4 жыл бұрын
The opening just made my heart beat faster, this is why I love being a software engineer! no one else gets excited about this stuff like we do!
@hueydo35223 жыл бұрын
Please continue the Design Pattern series, I fell in love with the two videos you made. Make Obersver pattern or Momento next.
@drewenia4 жыл бұрын
Please make all design patterns. You are really really good
@drewenia4 жыл бұрын
Please just do all the patterns,you have the best three videos/explanations on patterns on the web.
@osure246 жыл бұрын
Wow so much clicked for me on the video, thanks so much for making it! I'd watched a number of other videos on factories but this one made the most sense to me. I liked how you gave the overview at the beginning and then went into the code. The pace was also good. Keep 'em coming!
@ElTebe6 жыл бұрын
Really great video! Thank you! Here's a little help to improve: 1) your pop filter must be placed farther from the mic because now it not works. 2) adjust your microphone's volume higer, and place farther from you 3) so do not speak into from too close 4) Place your cam close beside/top/bottom of your monitor. So you can look into the cam and see your code/notes at the same time and easier. And it will not harm your neck as your actual microphone setup does.
@TheSimpleEngineer5 жыл бұрын
Thanks! Check out my visitor design pattern video! I've improved the audio
@noahfinberg73643 жыл бұрын
Great explanation. Very clear and useful!
@christophercheok48146 жыл бұрын
Can you make other Design pattern video ? i love how you explain it.
@TheSimpleEngineer6 жыл бұрын
Sure! I'm working on it.
@stephane31155 жыл бұрын
@@TheSimpleEngineer any progress on it? Just saw this video. you made it really seem easy. Covering other patterns wwith the same way of explaining is definitley going to bring you a lot of views. (me for sure ;))
@TheSimpleEngineer5 жыл бұрын
Would you guys be interested in a visitor design pattern vid? I was going to make one today
@TheSimpleEngineer5 жыл бұрын
Here ya go! kzbin.info/www/bejne/ipa9on6keJearKM
@bangalorehub13365 жыл бұрын
Amazing. Pls do videos on all servers .
@nguyentung62823 жыл бұрын
Thank you so much. I appreciate your video a lot. Hope you will soon reach to 100k sub ^^
@arsene92166 жыл бұрын
Definitely on point! Thanks for the video
@JoshSaintJacque7 жыл бұрын
Really nice, thanks for the breakdown.
@rado1474 жыл бұрын
Very nice code example. It would be perfect if u make another patterns... make please Abstract Factory too with some great example... if the example is good, it is way easier to understand. Thanks.
@temsmirkie44996 жыл бұрын
hey thanks for the video i would appreciate if you did the abstract factory design pattern it will really help
@glendamabasa64234 жыл бұрын
Thanks a lot. This really helped
@TheSimpleEngineer4 жыл бұрын
Glad to hear that!
@gipperize286 жыл бұрын
Outstanding
@jcc92836 жыл бұрын
Good stuff
@pg000966 жыл бұрын
Amazing explanation! Thank you :)
@colin74064 жыл бұрын
I only know LabVIEW, nice to see where the architecture came from.
@niekbeijloos83554 жыл бұрын
Very clearly explained. Is this the factory method or factory method pattern ? Could you also provide an explanation of the abstract and simple factory ?
@thumarmitesh65593 жыл бұрын
Great
@dhananjaypal84985 жыл бұрын
Hello!! As per the definition, the base class(ServerFactory) was only supposed to declare the interface to create objects. The decision of which object to be created should have been deferred to the subclasses/subfactories. Isn't it??
@softesthairtutorials7 жыл бұрын
Subscribed
@PS-dp8yg5 жыл бұрын
Dumb question...doesn't the ServerFactory violates Open/Closed principle? Every time you create a new server type, you need to modify ServerFactory to support the new server type. Is there anyway around this? Or is this the only scenario that is acceptable to violate Open/Closed principle?
@TheSimpleEngineer5 жыл бұрын
There are no stupid questions. This example is contrived and does violate OCP. You may be interested in reading about the abstract factory, which delegates object generation through subclassing (another layer of indirection)
@PS-dp8yg5 жыл бұрын
@@TheSimpleEngineer Thanks for the reply. I'm going to check abstract factory out.
@belinhobeli95694 жыл бұрын
Ive read on this without being an expert...as long as it is in just that one place, its okey. Yes, it still violate, but still much better than violating everywhere.
@monishkumardurairaj30384 жыл бұрын
In every video,I get to know what is factory design but i just want to understand why factory design??Inorder to solve which problem in real world this is used. for eg:singleton pattern .. this is used when ever there has to be only one object creation has to be done ,In places such as to access the database. so like that in factory design addresses which problem?
@codeintermediate45294 жыл бұрын
Factory method design pattern is explained well in this video - kzbin.info/www/bejne/qpWwgJebmtyHpMU
@tdias254 жыл бұрын
why GetServer is static?
@dangerous30042 жыл бұрын
It's only a simple factory, not the factory (method) design pattern