The Simplest Design Pattern: Facade

Ғылым және технология

0:00 The Facade pattern
1:42 Example 1: CryptoFacade
3:43 Example 2: Dates and Times
6:09 Example 3: Resizing Videos

Пікірлер: 14

  • @marcwinner567
    @marcwinner567Ай бұрын

    This is actually the best explanation of the Facade pattern I have stumbled upon. Well done sir!

  • @BiiigBeee
    @BiiigBeee5 ай бұрын

    Bran, I love your content man. The high level explanation, your pace, the video quality and finally the music that for once on KZread serves the content and just sooth you. Minor mode for major goal 😉 Best of luck for the future my friend

  • @lpanebr
    @lpanebr5 ай бұрын

    This is by far the best ever explanation for the facade pattern. Thank you!

  • @regensdorfskater
    @regensdorfskater5 ай бұрын

    Love the seek discomfort shirt!

  • @winkbrace
    @winkbrace5 ай бұрын

    Very good explanation. Maybe a music peace in minor is not the best fit for your relaxed voice, tho. It sounds like you're going to announce something sad. ;)

  • @muhammadfahad3483
    @muhammadfahad348324 күн бұрын

    How can I recognize a facade pattern?

  • @ahmedsamir1601
    @ahmedsamir16015 ай бұрын

    Perfect 👌

  • @chimbu4822
    @chimbu48225 ай бұрын

    Nice, If possible please try to make other design pattern videos also.

  • @kerrykreiter445
    @kerrykreiter4455 ай бұрын

    Thank you for sharing this pattern. I am wondering if this pattern might apply to audio. I like how easy it is to use html/css/JavaScript to build a GUI. But using the web audio API has some limitations that make game dev difficult. Maybe a facade would help??

  • @benflightart
    @benflightart5 ай бұрын

    What is the difference between a facade and an API? Thanks

  • @branvandermeer

    @branvandermeer

    5 ай бұрын

    Everything has an Interface. The interface of a function is it's name, it's arguments and it's return types. The interface of a TV is it's remote control, and the interface of a car is it's steering wheel, gas/break pedals, etc. When using it like intended, we don't directly interact with the internals of a TV (circuitry), nor with the internals of a car (engine). I have a video on Interface-First Programming if you want to know more. You can think of the interface as the thing you are interacting with, which is different from the things that are behind that, which you are not directly interacting with. The interface exists because it enables a use-case: the engine of a car can run by itself, but it's not useful yet, just as a TV can run without a human watching it, but that's not useful. We added a steering wheel to an engine because humans are using the engine for a very specific thing; going somewhere. The interface encodes it's use-case. A Facade is an extra layer (an extra interface) in between a call site and an implementation (e.g. a function, file, class, or service). This extra layer can be there because you don't like the interface that the implementation offers by itself, or it can be there because you don't want to directly depend on the interface of the implementation. A Facade has, like all functions/classes/files, also an interface: it's names, arguments, return types, etc. Anything you directly interact with from the call site.

  • @benflightart

    @benflightart

    5 ай бұрын

    @@branvandermeer So, if i were to program an extra layer between the firebase API and my web app because I didn't like the convoluted process for image uploads and wanted to simply function calls with a one time configuration, that would be a facade.

  • @branvandermeer

    @branvandermeer

    5 ай бұрын

    @@benflightart yes!

  • @benflightart

    @benflightart

    5 ай бұрын

    @@branvandermeer thanks for helping me understand!

Келесі