Monad - FunFunFunction #21

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024

Комментарии • 317

  • @GGanon
    @GGanon 7 лет назад +173

    Here's a story:
    1 I started this video on monads
    2 he mentioned functors and said "watch this video if you don't know about functors"
    3 I paused the video and opened funtors in a new tab
    4 in the functors video he said "if you don't know about maps, watch this video about it"
    5 i paused functors and opened the maps video in a new tab.
    okay now hold it......... did you notice something?
    My time on youtube has turned into a subroutine mechanism....... I find this fascinating :D

    • @spacemonk4874
      @spacemonk4874 7 лет назад +89

      Wait until you get to the video about recursion..

    • @mfaine
      @mfaine 6 лет назад +1

      Same thing happened to me but luckily earlier in the chain.

    • @PatrickMetzdorf
      @PatrickMetzdorf 6 лет назад +27

      So what you're saying is that this video is a Monad, because it flatMaps the recursive promise of previous videos into a final distilled answer to the question of what a Monad is... That's meta.

    • @ThabileVatsha
      @ThabileVatsha 6 лет назад +1

      Haha exact same thing here, pushing a solid 4 hours of going down that chain

    • @tristanforward9094
      @tristanforward9094 5 лет назад +2

      @@spacemonk4874 Tail recursion is its own reward! xkcd.com/1270/

  • @nicolasiensen
    @nicolasiensen 8 лет назад +79

    So what have we learned from this episode? Portuguese is hard

    • @rothbardfreedom
      @rothbardfreedom 7 лет назад +11

      Wait until you see pretérito imperfeito.

    • @LeoDutraBR
      @LeoDutraBR 6 лет назад +1

      Wait until you see our slangs.

    • @victornaut
      @victornaut 4 года назад

      Polish is way worse.

    • @rafael68165
      @rafael68165 3 года назад

      @@rothbardfreedom Wait until you see pretérito mais que perfeito

  • @JohnMichaelReed
    @JohnMichaelReed 8 лет назад +115

    That was the best monad tutorial I have ever seen.

    • @funfunfunction
      @funfunfunction  8 лет назад +37

      +John Michael Lafayette this is possibly the nicest thing anybody have ever said to me.

    • @JohnMichaelReed
      @JohnMichaelReed 8 лет назад

      I really mean it. I think that if Gang of Four existed at the same time as Haskell, they would have described it just like you did. Obviously there is more, but your laid out the fundamental concepts in a very straightforward, intuitive way.

    • @ebuzertahakanat1082
      @ebuzertahakanat1082 7 лет назад

      that was the geekiest joke i ever seen.

    • @VladimirBrasil
      @VladimirBrasil 6 лет назад

      This is the only video that sets fire on our monad appetite for more knowledge. One of the (several) main qualities of funfunfunction videos: passion, appetite, fun.
      Dr. Boolean's would be a great next step, if I may say.

  • @uhl7792
    @uhl7792 7 лет назад +7

    Ah, FINALLY! Thank you so much for pulling me out of the category-theory hole I was digging.

  • @Booboosik
    @Booboosik 3 года назад +1

    For situation like line 30 @6:05, you can just do .onValue(console.log) and that is it.

  • @Coeurebene1
    @Coeurebene1 8 лет назад +1

    This was interesting.
    I think the follow up video should showcase more practical examples of useful applications of monads. As often, the most important is not only to understand how a tool works, but to build an intuition on when it's appropriate to use it.

    • @ltadeut
      @ltadeut 8 лет назад

      +Feakos this! +funfunfunction
      Monads are interesting, but it gets a bit confusing when applying them in languages such as Python and JS.

    • @ltadeut
      @ltadeut 8 лет назад

      +Feakos this! +funfunfunction
      Monads are interesting, but it gets a bit confusing when applying them in languages such as Python and JS.

    • @StingSting844
      @StingSting844 8 лет назад

      +Feakos I think you already have got the idea about where you can use it. Waiting for promises to return is a fantastic example shown here

  • @aoeu256
    @aoeu256 5 лет назад

    For all you JavaScript or Python Twisted programmers who do async code using callbacks/promises/futures, "then" is monadic bind is flatMap! In Haskell you use then aka >>= for both synchronous code (IO,State) and async code that way you "transform" your async code to be synchronous code to and back again, and add "semantics". Basically Monads allow you to abstract away the semantics of your "sequential" code allowing it to evolve independently from your code itself. - EDITED - lol then is right there and I didn't even notice that. The types are very similar for flatMap / >>= and then m a -> (a -> m b) -> m b, where m = Promise instead of IO, List, Maybe, or State and a = parsedResponse's type

  • @ZeNz0r01
    @ZeNz0r01 8 лет назад +2

    Ok, I went through your Functional Programming series and you asked for it, so I'll give it to you.
    I'm interested in Functional Programming because I want to learn how to make small simple bits of code and re-use it all over the place without making a Moebius surface out of my code.
    So my current constraints are: I'm programming in IBM's RPGLE, procedural, strongly typed, compiled language and my employer restricts the use of procedures (an equivalent of a function, he has his reasons). He is going to open the door to DB2 SQL procedures and here is where I want to create useful, re-usable, beautiful functions that will be used all over the place.
    My worry is creating functions that aren't composable and ending up with one big useless library that won't be re-usable, ending up with tons of copies of each procedure, for every new scenario.
    I want to ask you to give me pointers on how to think, the rules of thumb, good practices, how you keep data and functions separated and where do they connect. I know this is a tall order, but you do like recipes xD
    Thanks for the rest of the videos, I feel they gave me some insight into this question, but I feel I still need more.
    Keep up the good work ;)

  • @travisrobison3457
    @travisrobison3457 5 лет назад

    you are the MAN. i started of by learning Category theory from a Math theory video and i almost died. This actually makes sense. great video.

    • @funfunfunction
      @funfunfunction  5 лет назад

      oooh this is the best of feedback, thank you 💛

  • @linuxgaminginfullhd60fps10
    @linuxgaminginfullhd60fps10 5 лет назад

    It is easy to learn something when you actually need it. It's like reinventing the wheel because you didn't care what a wheel is and never needed one. Then you make the wheel and share your findings, but everyone else says it was already invented and they tried to tell you that... Monads, monoids, semigroups and many other math concepts are just that. If you try to write a program that does symbolic computations you'll probably learn all these concepts on the way and they will be quite natural and useful. I like haskell because it uses correct names for most things and many design choices are really good. I like the modules exporting things and when you import something you can specify what exactly you want to import. Another cool thing is "qualified" keyword. Instead of putting everything in a library in a namespace(as you would do in C++) you specify the namespace when you import it!

  • @feldinho
    @feldinho 8 лет назад +10

    "refeição" is read like this: ray(-y)+fay+sound(-d).
    great explanation, btw :D

    • @LuisEduardoBraschi
      @LuisEduardoBraschi 8 лет назад +10

      "hay" works better.

    • @LoneWolf-wp9dn
      @LoneWolf-wp9dn 4 года назад

      depends on the dialect... brazil is a big place

    • @marcusbrsp
      @marcusbrsp 4 года назад

      Capaz mesmo! ;)
      Using swedish letters you would pronounce it like: He-fej-så

  • @ronward2761
    @ronward2761 8 лет назад +2

    Thanks, defiantly the best beginner introduction to monads that I have seen that is not cursed with the "curse of the monad" ("curse of the monad": once you understand what a monad is, you lose the ability to teach or explain what a monad is)

  • @daggawagga
    @daggawagga 8 лет назад +5

    Streams are nuts. No idea how I could live up until now without knowing them.

    • @isimvol
      @isimvol 7 лет назад

      Could you tell me why do I need them if promises give me all everything I need? I see lots of info about streams, how to use them, but I don't see WHY.. If I need to do http request I just use promise, WHY do I want to do stream......?

    • @_ericelliott
      @_ericelliott 7 лет назад +17

      Promises can only produce one value. A stream can produce any number of values. A stream can do everything a promise can do, but the reverse is not true.

    • @stolensentience
      @stolensentience 3 года назад

      @@_ericelliott I read composing software before seeing these videos! Love you both!

  • @ukranaut
    @ukranaut 3 года назад

    This is the seventh explanation of monads I'm seeing and the only one which makes sense.
    In fact it seems so easy and so unrelated to previous ones that I'm kinda suspicious that it's not actually about monads.

  • @davidgonzalezasdqwe
    @davidgonzalezasdqwe 7 лет назад

    Not only the best monad tutorial that I have ever seen but the best flatMap example that I also have ever seen: from a very complex term called 'Monad' to 'As simple as that'. Cheers for it! I was sick of reading about monads and Haskel.

  • @ianmbae2939
    @ianmbae2939 8 лет назад

    I love the way you get straight to the point and leave the rest to us curious minds.
    If only we had more practical people like you.
    Thanks a bunch.

  • @brefaccion
    @brefaccion 8 лет назад +1

    oh man, I'm so happy I found you and DevTips, you guys are taking youtube tutorials to a new level, making it super entertaining even serious and advanced subjects like this.
    You really seem to give way more importance to the learning experience than to the "look-how-good-I-am-at-this-I-learned-it-from-boring-docs-and-you-dont-deserve-to-learn-it-in-a-less-boring-way" kind of feeling
    Looking forward to see you here in Brazil!

  • @viniciusabreu3288
    @viniciusabreu3288 6 лет назад

    Dude, explaining monads always sound 100% confusingly terrifying for me, now it's just 98%. BUT YOU DID A GREAT JOB, now I can start explaining what is a monad. And a functor. GOOD!

  • @atxaqualion75
    @atxaqualion75 8 лет назад

    I like how concise and distilled the explanation of monads was delivered yet was still chocked full of sweet streaming and promises morsels. Well done mate.

  • @nERVEcenter117
    @nERVEcenter117 7 лет назад +1

    Wow, not only is this the best explanation for monad's I've seen, flatMap is a far more descriptive and apt name for the action of squeezing the value out of the stream or other container than bind or chain. Probably the only more descriptive term might be "unwrapMap"!

    • @funfunfunction
      @funfunfunction  7 лет назад +1

      +nERVEcenter117 I really like your wording of sneezing it upwards and calling it unwrapmap!

  • @recotectando
    @recotectando 7 лет назад

    I have been watching your videos and this is the best. why? Using portuguese words you show us wich you know the brazilian desire to learn js! But we, brazilians, has two challenges: learn english and after learn JS! Thx by your videos and your wonderful english, i'm learning coding and languages!

  • @true_podejrzany
    @true_podejrzany 7 лет назад

    Just watched whole functional programming series in like 3 hours after I found out this channel. I'm feeling like understanding at least 90% of it, and thats because most of it was really, really similar to Java8 streams and lambda expressions. And of course because episodes are really, really cool!

  • @StephanHoyer
    @StephanHoyer 8 лет назад

    First description without any mention of category therory. Well done MPJ

  • @softengi4043
    @softengi4043 8 лет назад

    Don't ever stop making videos. You have the best js series, by far! Everything is well put together, informative, and entertaining. I have been a professional coder for 17 years, and still find lots of value in your videos. I even made my wife watch your episode on "Too many frameworks", just for the cookies comment. haha

  • @SylvainBrunerie
    @SylvainBrunerie 3 года назад

    Wow, I’m just starting to get this stuff looking at the Haskell side of things, but I never realized that Promise/.then is just that too!

  • @JoshuaHeagleDev
    @JoshuaHeagleDev 6 лет назад

    Wow, just had a crazy McDonald's commercial for BigMac. Around 8:30 when you emphasized "it is not called flatMap, it is THEN" the commercial launched and the guy said "it is now and then" and flashes some images of bacon and ended.
    Way to break your concentration.

  • @hamzaerrechydy2985
    @hamzaerrechydy2985 5 лет назад

    I finish the series of functional programming and i learn a lot and level up my js skill so THANK YOU MPJ

  • @user-gm6gy4cz8j
    @user-gm6gy4cz8j 4 года назад

    Hello from the future. I just watched the whole playlist at one go and I am very appreciate because i realy GET IT

  • @CullyLarson
    @CullyLarson 8 лет назад

    Great explanation. I think if I'd watched this before trying to learn monads from other sources, they would have made a lot more sense earlier on. It's so helpful to have a simple idea to fall back on when learning something (I.e. at least I know "this" about it). Kinda like a set of coat hooks to hang all the details on. I think that's the "get monads" idea you were talking about.

  • @nathanwilliams957
    @nathanwilliams957 3 года назад

    For information, native JS Array.flatMap does not resolve promises like Bacon does.

  • @WalkerLeite
    @WalkerLeite 8 лет назад +4

    MPJ, You could do live streams while you code. This way the viewers can interact with you and learn in real time how do you build up an complex algorithm. We could solve problems in opensource projects in github in a collaborative way. What do you think about this?

    • @funfunfunction
      @funfunfunction  8 лет назад +6

      +Walker Leite I think that most of my audience is asleep when I an awake. ;) it's a great idea, but I have not yet been able to figure out what the logistics would be. I'm on GMT+1 time and a huge chunk of my audience is in the US and Brazil. The only time slot I could think of is Saturday evenings and I'm not super keen on scheduling something on those.

    • @aleksandrio
      @aleksandrio 8 лет назад +10

      Europe will be grateful for any of those streams. I'm also on GMT+1 and I'm very big fan of yours. Those streams could be recorded and published in place like this: www.livecoding.tv

  • @martinalcala4823
    @martinalcala4823 4 года назад

    Monads are a higher transformation of an object or entity, through functions, were we can do extra computation.
    In this video that "extra computation" is the "flat"

  • @ButchHammer
    @ButchHammer 8 лет назад +14

    I don't understand why the ouput is different from 6:51 --> Cat, Meal, Trumpet and 8:05 --> Trumpet, Meal, Cat ?

    • @maagiapall
      @maagiapall 8 лет назад +33

      Probably because it's being run through an API call before logging out the response, so the order is going to be random based on whichever API response arrives first.

    • @xferme
      @xferme 7 лет назад +3

      const yodify = (noun, verb, complement) => {
      stream.push(noun)
      setTimeout(() => stream.push(verb), 745)
      stream.push(complement)
      }
      yodify('Tesla', 'is', 'a genius')

  • @hbobenicio
    @hbobenicio 7 лет назад

    thanks for this video and the other two about Functors. This was what I was looking for, a pratical and applied programming point of view about Monads, not just another complex mathematical definition. This helped a lot. Thanks!

  • @detaaditya6237
    @detaaditya6237 4 года назад

    People: no one can explain monad easily
    This video: u sure?

  • @andrevarandas3126
    @andrevarandas3126 8 лет назад +1

    You are awesome sir. Thank you for spending your time to make these videos! Thumbs up for picking up Portuguese in this example haha.

  • @3amsleep
    @3amsleep 8 лет назад

    I find a graphical representation of streams within streams, and the flattening of these makes people get it faster. also relating it to arrays and concat + map

  • @ppa2290
    @ppa2290 8 лет назад +1

    What if the function passed to stream.flattMap returns a promise instead of a stream?
    Thanks for the video!

    • @funfunfunction
      @funfunfunction  8 лет назад +1

      It would simply return the unresolved promises. flatMap will not flatten ANY monad, only monad of the same type. flatMap on a stream will only flatten streams, just like .then on a promise will only flatten promises.

  • @VictorOliveiraDev
    @VictorOliveiraDev 8 лет назад

    You definitely make programming concepts easier and more fun. Your videos are changing the way I think about programming so I'll make sure to thank you in person when you come to Brazil!

  • @opl500
    @opl500 8 лет назад +15

    Oh. It means "Evaluate the complete expression, you lazy intepreter."

  • @ne4to777
    @ne4to777 5 лет назад

    Monad is a functor that realizes "of" and "join" methods. "Flatmap/chain" is a combination of "map" and "join".

  • @eiprofesoi
    @eiprofesoi 11 месяцев назад

    I remember watching this guy's videos to understand a little about haskell

  • @ThePersepolis32
    @ThePersepolis32 4 года назад

    A good summary that made me more clear about flatMap:
    flatMap has the same principle as map while the exception is if the callback passed to flatMap returns a monad of the same type of stream monad, that stream monad will be flattened into its containing value before it's passed on.
    thanks.
    actually I got what flatMap is, but I didn't Whats the Monad?

  • @challengerssb
    @challengerssb 8 лет назад +1

    Great video! It would be great if you could just show us more examples of monads just to get more exposure to them. Overall great job! Thanks for your work.

  • @grdalenoort
    @grdalenoort 8 лет назад

    Like crockford said - "i know what a monad is but if i try to explain it, i don't know / can't explain" ... I'm still baffled.

    • @funfunfunction
      @funfunfunction  8 лет назад

      +G. Dalenoort can you please clarify your confusion a bit? What parts are unclear? Did you watch the previous episodes and understand them?

    • @grdalenoort
      @grdalenoort 8 лет назад

      Don't get me wrong, i don't want to be a Barry. Crockford mentions that a Monad returns a monad, so i guess flatmapper is out somehow. But in essence i need my brogrammer to figure out promises to grasp monad i guesss. Love your vodcasts :-)

  • @manualvarado2212
    @manualvarado2212 6 лет назад

    Omg, this is the closest i have felt of understanding what a monad is!

  • @emanonmax
    @emanonmax 8 лет назад +4

    I come from a Python background so the native async processing in js confuses me sometimes. But how can I make sure that the values in the stream are processed in the order they were pushed without having to wait for each value to resolve?

    • @emanonmax
      @emanonmax 8 лет назад

      Eduardo Tenorio That doesnt seem beginner friendly to me. ((But I'll admit that this can be used to massively increase performance ))

    • @emanonmax
      @emanonmax 8 лет назад

      Eduardo Tenorio Yes, but it is not inbuilt and also _should_ preserve order in lists

    • @emanonmax
      @emanonmax 8 лет назад

      Eduardo Tenorio Well asyncio is included in the standard interpreter for python but is not as depending as JS. And it might actually be both since lists are not promises and therefore not interfere with Pythons definition.

    • @CarloRizzante
      @CarloRizzante 7 лет назад +3

      I guess you could use "Promise.all" and get in return an array of results in the order you provided them to the ".all" method.
      developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all

  • @RabbitWerksJavaScript
    @RabbitWerksJavaScript 6 лет назад

    Thank you for the constant inspiration! And musings. I've a lot of episodes to catch up on.

  • @sabres2077
    @sabres2077 3 года назад +1

    So es6 Promise is a monad not a functor? Does that make sense?

  • @LlorencMuntaner
    @LlorencMuntaner 8 лет назад +1

    Thanks for the video! I really enjoyed it. Not just this one but all of them. Huge fan.
    One question. Is Promise.all implemented with Monads? Is it like flatMapping a bunch of Monads?
    Thanks again!

  • @bernardputersznit64
    @bernardputersznit64 4 года назад

    Better than most monadic maddening

  • @parkerault2607
    @parkerault2607 5 лет назад

    I don't know if other people have pointed this out but `map(word => getInPortuguese(word))` is equivalent to `map(getInPortuguese)`. Save yourself some button pushes. :)

    • @funfunfunction
      @funfunfunction  5 лет назад

      Yeah, but that is not the point of the video and if I'd have done that I'd have to go on a distracting segueway on what the hell was happening. :)

  • @xgrommx
    @xgrommx 8 лет назад +2

    More about a functional programming and monads you can read here github.com/xgrommx/awesome-functional-programming

  • @piotr-ciazynski
    @piotr-ciazynski 7 лет назад

    Wow! Your videos are on Creative Commons licence. It's super fantastic! Thank you! :)

  • @rishijava9451
    @rishijava9451 4 года назад

    My many thanks to you for doing this

  • @bipinbhandari8781
    @bipinbhandari8781 8 лет назад

    Wow! monad didn't seem to be this much fun!

  • @TheDataArchitect
    @TheDataArchitect 6 лет назад

    :D i don't think i will use it, so confusing, but i got the concept behind it, when you mentioned THEN is a monad too :D

    • @funfunfunction
      @funfunfunction  6 лет назад +1

      Well, sinne promises are monads, you’re pretty much using them daily in JavaScript.

    • @TheDataArchitect
      @TheDataArchitect 6 лет назад

      MPJ you haven't answered my question on your other video :(

  • @kazaakas
    @kazaakas 6 лет назад

    With all of us all being front-enders by trade.. I'm really waiting on what I feel is the logical follow-up to this video: Reactive Functional Programming!
    Getting into it this last week, but haven't been able to find the most clear explanations on it.

  • @Digital963
    @Digital963 4 года назад

    You have a great style of teaching.

  • @danwilliams4991
    @danwilliams4991 8 лет назад

    Thanks for the explanation linking monads, 'bind', 'chain', and 'then'. That definitely helps tons. One question. Since 'then' has flatMapped the promise response into JSON in line 15 (around 8:42), would we be able to use 'map' instead of 'then' in line 16, and get the same result?
    const promise = fetch(url)
    .then(response =>respons.json())
    .map(parsedResponse =>
    ....

    • @dtipson
      @dtipson 8 лет назад +1

      +Dan Williams Not out of the box, because Promises don't implement a literal .map method. However, .then will work exactly AS map as long as you're careful about what type of value you return (as long as it isn't a Promise: i.e. as long as it isn't something that implements then, basically).
      You could Promise.prototype.map = Promise.prototype.then, of course, but... don't. Probably just remember that .then is overloaded.
      Just for fun, do implement .ap though!
      Promise.prototype.ap = function(p){
      return p.then(x => this.then(fn => fn(x)) );
      }
      var addTwo = curry((x,y)=>x+y);
      var delay = (v,n) => new Promise(r=> setTimeout(_=>r(v), n));
      Promise.resolve(addTwo)
      .ap(delay(4,1000))
      .ap(delay(6,3000))
      .then(x=>console.log(x));//-> after both delays complete, the values are added and returned!

    • @danwilliams4991
      @danwilliams4991 8 лет назад

      +Drew Tipson Interesting insight Drew! Then since Promises don't technically implement map, are they still functors? Are all monads functors by default? Is flatMap enough to justify the title?

    • @dtipson
      @dtipson 8 лет назад

      +Dan Williams I would argue that they are still Functors, but here, particular to Javascript, we have a distinction between the implementation vs. the theory. I'd argue that just because the method name of something isn't literally the string key "map" doesn't mean that something isn't a Functor: it implements the Functor interface map, and it passes the Functor laws, so it's a Functor, end of story, in my book! I mean, if you wrote an entire language language that used non-English words, .map wouldn't be Functor["map"] it'd be, say, Functor["mapa"]. But it'd still be a Functor.
      However, there's the issue of coordination to consider in javascript. In higher-order operations, we'd like to be able to pass a Functor, ANY functor off into a function, and know that we can use a map operation on it just by calling Functor.map(f). If it's not literally available at ["map"] though, that coordination won't work! We run into this naming problem all the time both when extending the spec (ES7's "Array.includes" should have been called "Array.contains" but couldn't be, for instance, because that method name was being baked into the Array prototype all over the web with a different type signature/behavior) and developing pointfree wrappers for all Functor and Monad types: should we call flatMap bind? Nope, we can't do that, since that already exists and does something totally different. .flatMap? .chain? Maybe, but all those decisions have consequences for, again, larger-scale coordination. Most of the functional JS world seems to have settled on calling bind "chain." But ES(8?) may include native .flatMap and .flatten methods on Arrays, which means that yet again, we could be headed for having the same things used with different names.
      So to the question of whether all Monads are Functors: yes they definitely are! That's because once you have a .flatMap that passes all the Monad laws, you can derive .map "for free" by composing the pointed function (Monad.of) with the mapping function and just passing that to flatMap/chain. But again, we hit the possibility that, in Javascript, it's certainly _possible_ to define a legit Monad but not actually _expose_ a Functor implementation, even though it'd be trivial to do so! And Promises are exactly such a case: not only is a .map implementation possible, it's actually implemented. But it's called .then (which is ALSO flatMap!) instead. So in some pointfree wrappers, you might even see things like const map = curry((f, xs) => xs[xs.map?"map":"then"](f) ); which will try to use map if available, but then to handle the Promise case, fall back to trying then instead.
      As I understand it, in a language like Haskell, you don't run into this problem because the type system builds these packages onto each other directly: once you've defined a Monad you by default have a map interface for it out of the box. But with javascript, it's all loosey-goosey: you can define whatever methods you want on anything, and there's no type system to enforce proper behavior. You could easily define a method on something called map that doesn't obey the functor laws and nobody can stop you.

  • @ashokmandal6982
    @ashokmandal6982 6 лет назад +1

    my confusion is if Promise does implement flatMap, then how it implements a map,
    according to your definition , it is monad only if it implements both

    • @funfunfunction
      @funfunfunction  6 лет назад +1

      .then implements map and flatMap in one. I’m playing a little fast and loose with the definition and many would say it’s not strictly a monad, but I think that’s being correct to the point of uselessness - in practice, it’s a monad.

    • @ashokmandal6982
      @ashokmandal6982 6 лет назад

      So we can say that , flatMap is general to Promises,
      but when we talk about Map
      .then(result => Promise.resolve(result.item))
      would enact the map part of a monad

    • @funfunfunction
      @funfunfunction  6 лет назад +1

      Hmm, your statement does not make sense for me, sorry.
      .then will do the job of both map and flatMap without modification:
      .then(result => result.item) //map, expects callback to return non-monadic value
      .then(result => downloadImage(result.item.avatarUrl)) //flatMap, expects callback to return monad, which flatMap will unwrap

    • @ashokmandal6982
      @ashokmandal6982 6 лет назад

      Ok gotcha , its make sense now , i was missing a lil concepts on promises, thanks :)

  • @corlaez
    @corlaez 4 года назад

    Is there an example of an useful functor that couldn't be implemented as a monad? Instead of simply deliberately removing the chain/flatmap from a monad?

  • @pedromartindelcampogonzale9613
    @pedromartindelcampogonzale9613 4 года назад

    I think confusion on monads come from Haskell trying to sell the idea of being able to program like imperative languages, when the concept has nothing to do with that.

  • @papyrifer
    @papyrifer 7 лет назад +1

    The video on Functors + this on Monads are very helpful! Ideas for a subsequent related video are :
    1) think 'mapFlat' instead of 'flatMap' as flatMap is like map 1st and flatten 2nd ( alvinalexander.com/scala/how-to-combine-map-flatten-flatmap-scala-cookbook )
    2) explain 'flatten' in more depth. I think I've seen that arrays get 'flattened' by just 1 dimension, so for ex a multi-dimensional array could have array.flatten.flatten. (Not positive on that :-) Do objects/classes need to implement their own 'flatten'?
    3) Personally, I'd like to see a useful example with Monads that doesn't depend on a 3rd-party library. FYI, saw some interesting flatMap code in discussion at gist.github.com/samgiles/762ee337dff48623e729

  • @sabres2077
    @sabres2077 3 года назад

    Thanks for the awesome content. Any chance there are some videos you made out there that aren't in this functional programming's playlist?
    Would love to keep exploring :)

  • @michaelromanenko
    @michaelromanenko 8 лет назад

    Wow! Great episode! Makes idea and concept of monads very clear, and fits in just 11 minutes!
    Thank you for the work you do!

  • @xepad
    @xepad 8 лет назад

    Hey hey hey, I had never replied to any of your videos because they're simply amazing and flawless (but functors... heheheh).
    But now I've gotta welcome u to Brazil!
    You simply made me get up from my chair and go after my wallet to shop my tickets to the conf.. It will be a pleasure to met you at brazil's JS conf!!
    Keep it up mate!

    • @funfunfunction
      @funfunfunction  8 лет назад +1

      Wow, that is awesome! Hope to see you there!

  • @MikeJfromVA
    @MikeJfromVA 8 лет назад +1

    All of your tutorials are awesome!
    I'd love to know what software you use to make them. :)

    • @funfunfunction
      @funfunfunction  8 лет назад

      +Michael Johnson thanks! Check out the behind the scenes episode.

  • @jamesmacivor116
    @jamesmacivor116 8 лет назад +1

    I think I understand the functions your using, map and flatMap, and .then. So a monad is a functor that takes an unresolved structure, like a stream or promise, and allows it to resolve before subsequent instructions can proceed. Do I have that right?

    • @nathanpointer7844
      @nathanpointer7844 8 лет назад

      I don't think the unresolved part is a requirement, the return just has to be 'wrapped' in something.

    • @Pahblen
      @Pahblen 8 лет назад +1

      +James MacIvor, not strictly right because monads aren't necessarily async but good approach. Monads are for composing functionalities depending of a run time value. One way of understanding monads is separating promise then() in three functionalities. map() is for transforming the values inside the promise (only if it is resolved), for example toUppercase. flatMap() (or chain()) is for composing promises, for example fetch a value from a server and based on that run time value make another fetch. Finally then() is when all chained promises are resolved, make something with that value. Take a look to folktale Task or ramda Future, they have a clean separation of three functionalities.

  • @_edmoore
    @_edmoore 8 лет назад

    Hurray for monads!

  • @Daniel_WR_Hart
    @Daniel_WR_Hart 2 года назад

    wtf I thought flatMap was for converting matrices into arrays in addition to doing some other transformation. Had no idea it was this powerful!

  • @waltermelo1033
    @waltermelo1033 5 лет назад

    i don't understand the "super powers" of the monads on haskell to do side effects just with them, ... that's what is really really confusing

  • @gustavcoetzee5018
    @gustavcoetzee5018 5 лет назад

    You make difficult things easy. Thanks

  • @despairblue
    @despairblue 8 лет назад

    I wonder how interop could be achieved? I mean I would have to cast everything to bacon streams if I want to use bacon's flatMap implementation right? Just like I have to cast everything into a Promise if using `then`. I doubt there is a better way, right?

  • @CarlosAbdalla
    @CarlosAbdalla 7 лет назад +5

    hahaha awesome Portuguese (seriously is not too bad)... I'm from Brazil ... Your videos are amazing...

  • @ayo.bakare
    @ayo.bakare 5 лет назад

    Is a Monad really a Functor?
    The flatMap can change the structure of the output: developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/flatMap

  • @PabloAndresDealbera
    @PabloAndresDealbera 8 лет назад +1

    I apologize from my last comment, I was being picky about it. This video was inspiring, thanks for uploading. :)

  • @MarcoLeite
    @MarcoLeite 6 лет назад

    After watching #10 an #11.... yeah, that made sense... Interesting (or not, maybe just silly) question:
    Why did the words order change when you added the map with the toUpperCase()?

  • @InsanityNerve
    @InsanityNerve 8 лет назад

    I like how you explain things. Also nicely made video! Cool application. More please! :)

  • @davidkomer9414
    @davidkomer9414 7 лет назад

    Loving this series! Coupled with Prof. Frisby / Dr Boolean and trying stuff out, it's starting to sink in.... slowly, but getting there! I have a small question about the Promise example here though which was confusing at first.
    You said (around 9:10), something like "what you get back is the parsed object literal and it will pass it onto the next callback"
    Is that really right? Is what you get back not actually another Promise monad? i.e. you can't call then() on the object literal.
    I realize the code works and the idea is there, just wondering if I'm missing something in your explanation. In other words...
    In the stream.flatMap() example, what you get back is another Stream (which you can subsequently map() or flatMap()). Same for promise (you get back another Promise which you can then()).
    In terms of why this is different than a regular functor, the difference between flatMap() and map() is that if the value returned by the function that was passed to the functor's map function, results in another functor, then flatMap will return a functor mapped with the function that was passed to the inner functor's map.
    In other words - if we have a function map(f(x)), and f(x) returns a functor, then getting at x requires calling map(map(f(x)). Since flatmap returns a functor mapped with the function that was passed to the inner Functor's map, it reduces that down to map(f(x)).
    Or something like that? ;)

  • @apollyon144
    @apollyon144 8 лет назад

    So a promise is a monad that implements then instead of flatMap. What are other examples of useful monad like things?

    • @dtipson
      @dtipson 8 лет назад

      +Anastasi Bakolias I'd say: implements .flatMap() AS .then(), rather than instead of.
      One more thing being a monad gets you is the ability to define an applicative method (and thus if the monad contains a unary function or a curried function instead of a value, you can pass it its values each also wrapped in Monadic context and then get a Monad of the same type out containing the result)

  • @proclaimm
    @proclaimm 8 лет назад

    now I posses the knowledge of monad!!! (what a great monad level up)

  • @nataliakaczkowska1488
    @nataliakaczkowska1488 6 лет назад

    You are a good tv-chef, but I ordered a monad-pie and you got me a js-ice cream.

  • @JoshWhiteDevBox
    @JoshWhiteDevBox 8 лет назад

    Is there a standard for which property is returned for each item when calling flatMap? Eg would it always be "value":
    {
    value: "this would be returned",
    otherValue: "this wouldn't"
    }

    • @JoshWhiteDevBox
      @JoshWhiteDevBox 8 лет назад

      Or do you just have to take a look at the method?

    • @funfunfunction
      @funfunfunction  8 лет назад +2

      There is very strict rules for it in Haskell (it's what people refer to with the monad laws) but seen across all languages it is really just whatever value is contained within the monad. Think of it conceptually rather than the name of a property on an object or something. The monad, a stream or a promise or or some other, is a kind of box that contain a value or values, and mapping it is a way of getting to those values, and flatMapping is a way of combining those values with other monads of the same type. Sort of. ;) this is something that you just have to do a bit in different ways until you find an explanation that works for you personally.

    • @JoshWhiteDevBox
      @JoshWhiteDevBox 8 лет назад

      +funfunfunction thanks :)

  • @LoneWolf-wp9dn
    @LoneWolf-wp9dn 4 года назад +2

    mmmmmmm bacon stream

  • @javierariaslosada2294
    @javierariaslosada2294 8 лет назад

    Thank you!
    It is so easy to understand, I can't understand the reason of the complexity of other explanations... any hints?

  • @mfaine
    @mfaine 6 лет назад

    The concept of flatten is weird to me. I think I get it but it seems to me like it would be better explained as just completing a chain of functions that happens internally before returning the result. It would be helpful to better understand exactly what those functions are. It looks like just a map chain until the value is returned. A good idea would be to show what the flattening process involves. I'm not sure if it as simple as this but I'd imagine getting the Bacon.promise objects with map and then map those again?

  • @FuryOfASquirrel
    @FuryOfASquirrel 8 лет назад

    How can I use these super powers in the enterprise world? Like maybe even in server-side code too? (I do full stack .NET code with C#/typescript (with Knockout to bind our viewModels)). I like these ideas and want to use them! We kind of use some of them in our typescript code, and we use bluebird for promises (so we use then callbacks and all that jazz), but I feel like I don't use these things in everyday code (except with our super nice postJsonPromise), but maybe using promises and stuff is the answer (I don't think I can use F# :c).

    • @daicon2k6
      @daicon2k6 8 лет назад

      Check out Eric Lippert's series of posts on monads in C#.
      ericlippert.com/category/monads/

    • @daicon2k6
      @daicon2k6 8 лет назад

      Check out Eric Lippert's series of posts on monads in C#.
      ericlippert.com/category/monads/

  • @sahebjotsingh6306
    @sahebjotsingh6306 8 лет назад

    I'd like to see you write a monad that does some things, generally monads in haskell is a way of doing impure things and not worry about them, could you go into the detail as to "Why we need monad" what problems it solves and how to make our own monad to solve that problem.
    Thanks for the video, I always learn a lot from them.

    • @thatoneuser8600
      @thatoneuser8600 2 года назад

      Monads are used to abstract away boilerplate code that can be chained together. You don't _need_ monads; they just make code more readable.

  • @RobSimpson25
    @RobSimpson25 5 лет назад

    Any chance of sharing the screen layout app that you are using for the videos?

    • @funfunfunction
      @funfunfunction  5 лет назад

      It's just a PNG + Uberlayer. I've tested every single layout app and none of them gives the pixel-perfection that I need for the videos. You can check the gear + behind the scenes videos for more info.

  • @sc76399
    @sc76399 8 лет назад

    Great video I think I now understand what a monad is. Am I right in thinking that flatMap could be used as a replacement for Promise.All?

    • @pyrolistical
      @pyrolistical 8 лет назад

      +Scott Crossan No, promise.then is literally flatMap. If f return a promise with promise.then(f), it will resolve the promise before chaining the next then. If promise.then worked like map, then the next then would get a promise, not the value inside the promise.
      To put this in code, let's say we have two promise based api calls, one to fetch a value, another to translate:
      api.fetchWord()
      api.translate(word)
      Let's say fetchWord always returns Promise.resolve("hello")
      and translate converts "hello" to Promise.resolve("你好")
      If promise.then is map then:
      api.fetchWord().then(api.translate) === Promise.resolve(Promise.resolve("你好"))
      But since promise.then is flatMap, we have:
      api.fetchWord().then(api.translate) === Promise.resolve("你好")

    • @funfunfunction
      @funfunfunction  8 лет назад +1

      .then() on promises is exactly the same thing as flatMap, so you can do the same thing with then as you can do with flatMap. Promise.all is really just a convenience method, and you can absolutely implement the same thing using only then's, but it's pretty nice to use Promise.all.

    • @sc76399
      @sc76399 8 лет назад

      +funfunfunction ok well I'm currently in hospital but when I'm out I'll have to play around with flatMap

    • @Pahblen
      @Pahblen 8 лет назад +1

      +funfunfunction The problem with .then() is that you don't know if it equivalent to .map() or .flatMap(). In this example it is equivalent to .map(), because you are just transforming the value inside the promise (like a functor), you aren't flattening anything, like when you have a promise of a promise.

    • @dtipson
      @dtipson 8 лет назад

      +Ronald Chen My understanding was that .then is actually a bit overloaded: it will act like flatMap if you return a promise (or rather, any "thenable"), but it will act like map if you return a value. Most Monads implementations keep these behaviors separate.
      Promise.resolve(5).then(x=>x+1).then(x=>Promise.resolve(x+2));//->Promise[value:8]

  • @pyrolistical
    @pyrolistical 8 лет назад +36

    Hmm, I didn't like this explanation of monads. Maybe approach monads with the Maybe/Option/Optional concept. That's how I intuitively "got it".
    You don't even need to talk about streams. Just talk about Maybe and how maybe.map(f) returns another maybe with f applied, how maybe.flatten() returns a maybe but without nested maybes, finally combine the two concepts and explain how maybe.flatMap(f) returns a flattened maybe with f applied, except f takes the value and returns another maybe.
    That's how Scala works, in Javascript instead of Maybe you could just use an array with a value or empty array. Then you can explains monads without any third party deps.
    While that might explain monads, you still haven't answered what monads are useful for

    • @ManaPotionn
      @ManaPotionn 8 лет назад +1

      He's already explained streams in an earlier video so I think most people who are following this series would probably be better off with a stream explanation.

    • @funfunfunction
      @funfunfunction  8 лет назад +13

      The thing is, I wanted a real-life explanation. Nobody uses Maybe.

    • @funfunfunction
      @funfunfunction  8 лет назад +25

      +funfunfunction I wanted to piggyback on knowledge that people already had. Since Maybe isn't used widely, the episode would have to be about learning Maybe AND the general concept at the same time. Also, there is the problem with usefulness. I need to be able to be excited and argue that a concept is a good idea for the videos to work, and I am a bit uncertain if Maybe makes a ton of sense in JavaScript - I personally have a hard time seeing how it could produce enough value to be worth the indirection.

    • @nayaleezy
      @nayaleezy 8 лет назад +7

      +funfunfunction lol I liked the stream & promise examples massively, and didn't realize I've been using a monad implementation because I forgot about the definition of monad immediately after learning it years ago

  • @gugiserman
    @gugiserman 8 лет назад

    Good tutorial. I'm from Brazil, welcome.

  • @FellipeAzambuja
    @FellipeAzambuja 8 лет назад

    Your videos are so great with good knowledge! Thanks

  • @DamienSawyer
    @DamienSawyer 5 лет назад

    I've been banging my head against monads for literally years. I've been using them (mostly in C#) but never really getting them. I think that this video is the closest I've got, so thank you!
    One question. A lot of tutorials talk about bind() and and Identity() functions. So, is bind() the same as flatmap() and Identity the same as map()?

    • @fatcerberus
      @fatcerberus 5 лет назад +1

      I don't know how much research you've done since this comment but if you're still struggling I'd recommend checking out my tutorial here, I explain everything starting from the ground up:
      gist.github.com/fatcerberus/beae4d15842071eab24fca2f0740c2ef

  • @raimeyuu
    @raimeyuu 8 лет назад

    @funfunfunction Do you use frp techniques on your daily programming basis?

  • @DefWorlds
    @DefWorlds 8 лет назад

    Does this have anything to do with the monad discussed by Liebniz, the 17th century mathematician?

    • @funfunfunction
      @funfunfunction  8 лет назад

      +Adam S monads have its origins in Category theory, a branch of math. Not sure if that is the same thing that Liebniz talked about.

  • @stianen
    @stianen 6 лет назад

    I wish someone on youtube would make video tutorials on c# and asp.net core mvc in the same manner as these javascript-videos.

  • @stavalfi
    @stavalfi 6 лет назад

    hi, thanks for the vidoe but I'm still lost, what is a monad? when did you explain it?

    • @funfunfunction
      @funfunfunction  6 лет назад

      Did you watch the previous videos in the series? You might also might to watch my monad talk on nordic.js that is a later narrative.

  • @gunarge
    @gunarge 8 лет назад

    Great video. Thank you. I'll see you at BrazilJS!