Functional Programming in 40 Minutes • Russ Olsen • GOTO 2018

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 พ.ย. 2018
  • This presentation was recorded at GOTO Berlin 2018. #gotocon #gotober
    gotober.com
    Russ Olsen - Author of Getting Clojure and Eloquent Ruby, VP at Cognitect
    ABSTRACT
    Functional programming has finally escaped from academia. These days developers are building real systems in functional programming languages like Clojure, Scala, Elixir and F#. Functional techniques are also seeping into more traditional languages like Java and Ruby. Unfortunately somewhere along the way functional programming has also developed a reputation for being deep and mysterious: Good programs achieve the Zen-like state of being functional which somehow involves immutability, higher order functions [...]
    Download slides and read the full abstract here:
    gotober.com/2018/sessions/546
    RECOMMENDED BOOKS
    Eric Normand • Grokking Simplicity • amzn.to/3gz7o3C
    Daniel Higginbotham • Clojure for the Brave and True • amzn.to/38tZjsF
    Ulisses Almeida • Learn Functional Programming with Elixir • amzn.to/389grn6
    Neal Ford • Functional Thinking • amzn.to/3DdP35B Petricek & Skeet • Real-World Functional Programming • amzn.to/38diF4M
    Venkat Subramaniam • Functional Programming in Java • amzn.to/2WlOXIt
    Cristian Salcescu • Functional Programming in JavaScript • amzn.to/3y75jBS
    Richard Feldman • Elm in Action • amzn.to/387kujI
    Jeremy Fairbank • Programming Elm • amzn.to/2WhZCE8
    Wolfgang Loder • Web Applications with Elm • amzn.to/3jblQ3q
    / gotober
    / gotoconference
    #FunctionalProgramming #Clojure #Scala #Elixir #Fsharp
    Looking for a unique learning experience?
    Attend the next GOTO Conference near you! Get your ticket at gotocon.com
    SUBSCRIBE TO OUR CHANNEL - new videos posted almost daily.
    th-cam.com/users/GotoConf...
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 757

  • @kkindoh
    @kkindoh 5 ปีที่แล้ว +899

    One of the most sensible and clear explanation about Functional Programming.

    • @frantisek_heca
      @frantisek_heca 5 ปีที่แล้ว +40

      And still, as a beginner, I don't take anything new from this video, that I could use..

    • @Zack-xz1ph
      @Zack-xz1ph 5 ปีที่แล้ว +7

      František Heča same, but I hope I can use this video as a stepping stone into the world of FP

    • @alejandrotorres-py4wz
      @alejandrotorres-py4wz 5 ปีที่แล้ว

      btw. Closures are bad/lazy programming.

    • @marios1861
      @marios1861 4 ปีที่แล้ว +6

      @@alejandrotorres-py4wz wow so smart

    • @bradandrews777
      @bradandrews777 4 ปีที่แล้ว +23

      @@frantisek_heca You were not the only one. I have been programming for years and still have no clue how functional programming works in reality. Pep talk rather than a true presentation of value.

  • @cyboticIndustries
    @cyboticIndustries 2 ปีที่แล้ว +131

    I tend to use my own paradigm - a blend of ObjectOriented and functional, which others seem to refer to as 'Objectional' programming.

    • @bearwolffish
      @bearwolffish 10 หลายเดือนก่อน +4

      lol under rated comment

    • @royal2508
      @royal2508 9 หลายเดือนก่อน +27

      I have adopted something pretty common called disfunctional code

  • @HassanSelim0
    @HassanSelim0 4 ปีที่แล้ว +622

    I can't get over the irony of having a talk about functional programming in a conference called "goto", the epitome of procedural thinking :D (great talk though!)

    • @Aaron628318
      @Aaron628318 4 ปีที่แล้ว +88

      It's like having a religious meeting called 'Satan 2018'.

    • @antonkapelyushnik47
      @antonkapelyushnik47 4 ปีที่แล้ว +36

      Your statement considered harmful.
      Procedural programming is quite the opposite of "goto". Procedural programming is further development of structured programming. And the whole reason why structured programming was invented is to get rid of "goto".

    • @HassanSelim0
      @HassanSelim0 4 ปีที่แล้ว +28

      @@antonkapelyushnik47 My statement is a joke, apologies if that wasn't clear

    • @ianzen
      @ianzen 4 ปีที่แล้ว +38

      Fun fact: some functional languages compile tail recursion to goto jumps to avoid stack overflow. And to be honest, everything compiles to some form of jump somewhere down the line since everything eventually has to run on hardware.

    • @lieQT
      @lieQT 4 ปีที่แล้ว +24

      @@ianzen pretty much - hardware inherently involves unsafe things, mutations, jumps. higher level programming is about creating abstractions over top of it, restricting us in a way that makes structuring applications simpler to reason about and protect ourselves

  • @PiotrKotnis
    @PiotrKotnis 11 หลายเดือนก่อน +23

    When I heard about Clojure for the very first time my reaction was exactly like that “ how can you build anything if you can’t change your data!?!”. I love how this speech explains that. Great one!

  • @kiledamgaardasmussen5222
    @kiledamgaardasmussen5222 4 ปีที่แล้ว +224

    A note on Principia Mathmatica:
    In modern mathematical language, proving 1+1=2 is WAY more compact. This is because modern mathematics is much DRYer than Russel and Whitehead. In R&W, they duplicate the 'code' defining set operations (union, intersection, etc.) as the code defining relations (all the same formulas with a friggin dot over all the symbols. Just twenty papges of repetition.) This is because the idea that a relation is a set of tuples came AFTER Principia.
    A note on side-effects:
    Haskell does this best. Haskell does side-effects by constructing a data structure representing side-effectful computation. Since functions are data, this data structure consists of nested functions taking values and producing side-effect representations (which recursively contain functions taking values returning side-effect representation and so on). As the runtime evaluates this side-effect representation, it progressively calls these nested functions. It's all-together very elegant, built on only one primitive: compose a side-effect with a side-effect-producing function into a new side-effect, without ever actually making anything happen.
    A note on the pie chart:
    96% functions means 96% code that CANNOT sneak up on you. 96% guaranteed thread-safe code. 96% trivially unit-testable code.

    •  3 ปีที่แล้ว +8

      best comment

    • @saitaro
      @saitaro 3 ปีที่แล้ว +4

      Thank you, this is interesting. Could you please explain how the idea of relations as sets of tuples makes 1+1=2 proof easier? And why was it so hard before?

    • @sudoscience5084
      @sudoscience5084 3 ปีที่แล้ว +7

      Excellent explanation of Haskell effects without the 'M-word'. Congratulations!

    • @warwolt
      @warwolt 2 ปีที่แล้ว +1

      Another super important thing about Principia is that Whitehead and Russell worked within the logicism program. You can very easily take natural numbers as primitive, like Brouwer does, and then 1 + 1 = 2 is pretty much true by definition

    • @voltydequa845
      @voltydequa845 7 หลายเดือนก่อน

      «This is because the idea that a relation is a set of tuples came AFTER Principia.»
      --
      That a relations CAN be represented as tuples, and ONLY when suitable (actual value, among others) !
      Smarty functionals, in whatever language, would better prove the superiority by means of concrete implementations, instead of "talking the functional superiority".

  • @muddi900
    @muddi900 4 ปีที่แล้ว +558

    "Immutability of inputs"
    "Immutability of outputs"
    Excel is a functional programming language.

    • @AmeliaBadeliaForever
      @AmeliaBadeliaForever 4 ปีที่แล้ว +63

      Correct

    • @dupersuper1000
      @dupersuper1000 4 ปีที่แล้ว +99

      muddi900 And a beautiful one at that. It sort of flips programming upside down. Instead of looking at the code and imagining the data being transformed at each stage, you type the code into a box, and the code disappears, and all you see is the raw data in its new, transformed state.

    • @aoeu256
      @aoeu256 4 ปีที่แล้ว +4

      @@dupersuper1000 There is Jupyter, Lighttable, Spark for functional languages like Clojure, Haskell, Python, APL, etc...
      th-cam.com/video/nYBW4ExtNvo/w-d-xo.html

    • @X_Baron
      @X_Baron 4 ปีที่แล้ว +41

      What Excel is missing is the ability to name the functions you create and then reuse them (as far as I know). That feature would make VisualBasic mostly obsolete.

    • @harrymarx4090
      @harrymarx4090 4 ปีที่แล้ว +2

      Im working on exactly this...getting excel type fp integrated into 5th gl server sides...its Realy exiting ☺️

  • @ajithkannan522
    @ajithkannan522 ปีที่แล้ว +36

    he is soo genuinely happy explaining wht he knows..its inspiring

  • @decaf4me2
    @decaf4me2 4 ปีที่แล้ว +19

    Fabulous! Clear, concise. Thank you for making the presentation. It helped me get a handle on what FP means and how it translates into the real world. Cheers!

  • @tullochgorum6323
    @tullochgorum6323 10 หลายเดือนก่อน +17

    Hands down the best introduction to functional programming on TH-cam.
    A key problem with adoption is that many of the prominent gurus are math-oriented computer scientists who don't understand how to communicate well with pragmatic working programmers.
    Olsen gets over the key ideas here without muddying the waters with monads or functors or currying or any of the esoteric terms that are so off-putting to the newbie. He presents FP as something accessible that solves real-world problems.
    But he doesn't over-promise. To hear some of the enthusiasts, FP is some kind of magic fairy dust that makes all the messiness of real development go away.
    Outstanding!

  • @janglestick
    @janglestick 4 ปีที่แล้ว +100

    Im so glad youtube algorithm re-upped this. This is one of the best fundamental talks for people who already have a programming or mathematics background or academic experience and want to make sure their next steps are chosen carefully in the world of functional programming. Considering what we learned from Russel and Godel and Cantor, this is pretty close to a fundamental talk about having a sound basis.

  • @johnneiberger7311
    @johnneiberger7311 3 ปีที่แล้ว +105

    As someone struggling to really understand functional programming, this video was quite helpful. He touches on something that still doesn't quite make sense to me. Our job is entirely side effects. We get paid to write code that does stuff, and all of that stuff involves interactions with the outside world. When I tried to learn clojure, as one example, I spent some time on it and still had no clue how to actually do anything useful. Now I'm back at it, although this time trying to learn Erlang and I have a similar problem. I learn some basics, but immutability and the lack of side effects makes it difficult for me to figure out how to get any real work done. It's truly a different way of thinking about solving problems and I haven't really got a handle on it yet.

    • @taragnor
      @taragnor 2 ปีที่แล้ว +7

      Yeah, it really is a different way of looking at the problem which isn't intuitive if you've learned the standard imperative or OOP style.

    • @hatter1290
      @hatter1290 2 ปีที่แล้ว +17

      The phrase “functional programming doesn’t have side-effects” is not exactly true. For example, those of us who work in the Haskell family of languages have just figured out how to encode side-effects in such a way that we can keep some of the composability and reasoning benefits of non-side-effecting functions in our side-effecting functions. We’ve also done it in such a way that side-effecting code cannot pollute non-side-effecting code. FP languages in general are just more careful with how they deal with side effects. This is chiefly because of the observation that side-effecting code is more challenging to compose than non-side-effecting code. And in some cases side effects make certain ways of composing things literally impossible. So any practical FP language has side-effects. They are just more careful and restrictive about side-effecting code in an effort to achieve the ability to better predict what code will do-including the side-effecting parts.

    • @Astfresser
      @Astfresser 2 ปีที่แล้ว

      Store passing style

    • @BryonLape
      @BryonLape 2 ปีที่แล้ว

      When given a data structure to your method, don't change the structure. Create a new one having the results of the method.

    • @nickscurvy8635
      @nickscurvy8635 2 ปีที่แล้ว +15

      The way I understand it is the side effects are unavoidable. The point of functional programming is not to entirely eliminate them, but rather to make sure the only side effects in a program happen at very well known and well defined areas.

  • @sailbatten2056
    @sailbatten2056 2 ปีที่แล้ว +21

    Thus far, this is absolutely the best video on the subject.
    BTW, if you are short on time, start at 11:17, but I would just listen to the preamble anyway to give you sense (FOR ONCE!) that no, there's no magic here and you don't have to forget everything.
    Such a joy to watch this. Just the array to tree concept by itself is an eye-opener.

  • @ichdu7310
    @ichdu7310 3 ปีที่แล้ว +6

    An absolutely amazing talk, thanks to Russ!

  • @kenwang8595
    @kenwang8595 2 ปีที่แล้ว +29

    I learned two things from this talk: function and atom. Function responsible for what change to make. Atom responsible for making change according to the function. Atom takes care of the complexity of multiple threads, ideally implemented by the language. Developer writes simple functions with no concerns of multi thread. If this is the essence of the FP, this is the first time I get the idea of FP. Either way, I found this talk amusing.

  • @ernststravoblofeld
    @ernststravoblofeld ปีที่แล้ว +55

    I think the moral of this story is, any paradigm taken too far leads right back to whatever you were trying to avoid in the first place, but with extra steps.

    • @eriknaslund2096
      @eriknaslund2096 9 หลายเดือนก่อน

      In Programming JavaScript Applications by Eric Elliot he brings up a a story from the MIT Lightweight Languages discussion list, by Anton van Straaten:
      The venerable master Qc Na was walking with his student, Anton. Hoping to prompt the master into a discussion, Anton said “Master, I have heard that objects are a very good thing-is this true?” Qc Na looked pityingly at his student and replied, “Foolish pupil- objects are merely a poor man’s closures.”
      Chastised, Anton took his leave from his master and returned to his cell, intent on study‐ ing closures. He carefully read the entire “Lambda: The Ultimate...” series of papers and its cousins, and implemented a small Scheme interpreter with a closure-based object system. He learned much, and looked forward to informing his master of his progress.
      On his next walk with Qc Na, Anton attempted to impress his master by saying “Master, I have diligently studied the matter, and now understand that objects are truly a poor man’s closures.” Qc Na responded by hitting Anton with his stick, saying “When will you learn? Closures are a poor man’s object.” At that moment, Anton became enlightened.

    • @apestogetherstrong341
      @apestogetherstrong341 8 หลายเดือนก่อน +2

      what? that doesn’t follow at all

    • @ernststravoblofeld
      @ernststravoblofeld 4 หลายเดือนก่อน

      @@user-tx4wj7qk4t No, I did.

  • @ibrahim47
    @ibrahim47 5 ปีที่แล้ว +44

    From the bottom of my heart
    , I'd like to say "Thank you

  • @abuazzan462
    @abuazzan462 3 ปีที่แล้ว +5

    Now this is what i call an explanation!, thank you for aiding me in my fp journey

  • @celina6204
    @celina6204 2 ปีที่แล้ว +7

    This video helped me understand what the heck functional programming actually is. The mathematics comparison is super memorable too. Amazing talk!

  • @Jasruler
    @Jasruler 4 ปีที่แล้ว +14

    From a curious laymen: thank you. Truly. This is 40 minutes of clarity and honesty.

    • @vfestberg
      @vfestberg 4 ปีที่แล้ว +3

      @Vendicar Kahn And by the looks of it, you spent another 40 minutes replying to all positive comments on this video. You seem like a joyful fella.

  • @LoneWolf-wp9dn
    @LoneWolf-wp9dn 4 ปีที่แล้ว +55

    Mentions "Principia Mathematica": Hey maybe i should read this and get my math game going
    Shows pages: I want to die right now... or go work on a farm

    • @lucianoosinaga2980
      @lucianoosinaga2980 3 ปีที่แล้ว +8

      principia isnt useful math anyway

    • @bela9821
      @bela9821 2 ปีที่แล้ว +1

      and it's outdated anyway, so unless you are a historian don't read it

  • @pierpaolotofani3929
    @pierpaolotofani3929 5 ปีที่แล้ว +15

    This is an awesome talk ! You explained functional programming in a great way !

  • @eyesonly4451
    @eyesonly4451 2 ปีที่แล้ว +19

    Thanks for this video. It's the best I've found so far on the fundamental concepts of FP. But after watching it, I realize there is nothing new under the sun, and it sounds a whole lot like what I learned decades ago from one of my old college profs... (1) Do as much as possible from a function of small size, and (2) Don't depend on global variables.

    • @RagingGeekazoid
      @RagingGeekazoid 2 ปีที่แล้ว +1

      Lisp is one of the oldest languages still in use. Developed around 1960. Very good functional features.

    • @-Jason-L
      @-Jason-L 2 ปีที่แล้ว +1

      Functional programming IS decades old.

  • @quverr
    @quverr 4 ปีที่แล้ว +2

    Awesome talk, thank you a lot!

  • @bobweiram6321
    @bobweiram6321 2 ปีที่แล้ว +5

    Another functional programming talk that's thick in theory, but thin in practice. Functional programming has its place, but it isn't the silver bullet its proponents claim. Functional programming, for instance, is great for mathematical or processing data, but falls on its face for a GUI, where the state is constantly flux. Many object-oriented languages today already have facilities for functional style programming such as C# Linq.

  • @K1RTB
    @K1RTB 4 ปีที่แล้ว +50

    Great talk! Although it didn’t sell me on the concept of functional programming.
    First rule: Everything is immutable.
    Second rule: because the first rule doesn’t really work, here are ways around the first rule.

    • @virzenvirzen1490
      @virzenvirzen1490 4 ปีที่แล้ว +10

      It does work. It's about creating abstraction of immutability. If something behaves like it's immutable, then the fact that under the hood it's mutable is just an implementation details. Interface is immutable.

    • @TremereTT
      @TremereTT 4 ปีที่แล้ว +6

      ​@@virzenvirzen1490 Also Prolog works. You define your Programm as a bunch of facts in predacte logic and then you formulate problems and prolog queries the solutions based on facts and logic predicates.
      It's even more abstract than Functional programming, you don't control how the problems are solved , you just define the facts and predicates and how these are unifyable.
      Yet you can still mutate state of the Programm by changing deleting or adding facts and predicates...every prolog programm is basically a self mutating database!
      Mathematicians use Logic! Programmers should too!
      Logic and unifications are way more powerfull and closer to real world problems than the "Linear Algebra 1" model of bijective, surjective and injective functions.

    • @theral056
      @theral056 4 ปีที่แล้ว +1

      I don't get it either. I mean, I don't get the advantage at all. And this is not the first talk on FP I watched. I change states all the time, it's what's required. All I see is that being made more convoluted? Maybe I'm just too dumb for FP. I ain't no mathematician.

    • @TremereTT
      @TremereTT 4 ปีที่แล้ว

      @@theral056 I guess it's ok. As in fp every problem is of the size of just one function.
      But it's just bloody inefficient.

  • @Aki-to
    @Aki-to 3 ปีที่แล้ว +2

    This is such a great talk. Thank you.

  • @matiascova
    @matiascova 3 ปีที่แล้ว +7

    Wow, his passionate presentation style is a brease.

  • @Drone256
    @Drone256 4 ปีที่แล้ว +32

    Since the 1980s I have been amazed at how programmers keep over complicating programming. He gave only scant evidence that this allows a programmer to solve bigger problems in the real world. My decades of coding experience have taught me that focusing on real world challenges is what pays dividends. Programmers often get caught on a treadmill of learning new techniques, yet they don't really get anywhere. Choosing the right problems to solve with your coding skills is far, far more important than your programming style or language. Your shiny new coding style will only impress other coders. Solving the right problem with less sexy skills will make you rich, however.

    • @BankruptGreek
      @BankruptGreek 4 ปีที่แล้ว +3

      if I ve understood your comment correctly all you are saying is that being better at your specialisation is not important. To give an example all you are saying is the same as being the owner of a delivery service and here you are claiming that being a more effecient delivery service is not important since being the (or being better at) connecting service of seller to buyer can make you more money, aka being amazon or ebay instead of just a delivery service.
      Going back at the programming and solving problems, there is a valid point that solving the right problems might earn you more money, but that's not where people specialise, the specialise in programming and are satisfied with being paid by people who specialise in figuring the right problems that need to be solved.
      Some do both and some specialise and that's part of how we function.

    • @Drone256
      @Drone256 4 ปีที่แล้ว +6

      Of course it is important to get better at what you do. But don’t assume your best course in life is to be only a programmer and to engage in greater specialization. You are ultimately a problem solver. Programming is your primary tool, but if that is your only tool then you put yourself at a great disadvantage. Understanding the problem domain is hugely important, even if you are not an expert in the exact problem being solved. For example, I would be reluctant to hire a programmer for a new space probe if the person had no knowledge or interest in space. I’ve worked with people like that before and they are ineffective problem solvers. Their programming solutions might strictly meet requirements, but they often don’t solve the underlying problems well.

    • @DuckieMcduck
      @DuckieMcduck 4 ปีที่แล้ว +9

      "Solving the right problem with less sexy skills will make you rich" I pity whoever has to maintain your code from catching fire and making someone not rich

    • @Drone256
      @Drone256 4 ปีที่แล้ว +5

      DuckieMcduck In my case my business owns and maintains all the code we have written for decades. For you to assume that “solving the right problems” means “making shitty code” is very immature and baseless. You are the prime example of the coder I would never hire. Realize that you are paid to solve problems efficiently. Beautiful code is a means to that end. But if all you see is code then you are too blind to be of much good.

    • @BankruptGreek
      @BankruptGreek 4 ปีที่แล้ว +3

      @@Drone256 the possibility of fancy code being someone's passion hasn't crossed your mind, I love programming because of programming. It's not to make myself money or to be of good use honestly.

  • @ianedmonds9191
    @ianedmonds9191 3 ปีที่แล้ว

    Great Lecture.
    Functional programming is growing and this was a great introduction as to why.
    Thanks.
    Luv and Peace.

  • @no_more_free_nicks
    @no_more_free_nicks 4 ปีที่แล้ว +1

    Thanks, that was a good refresh.

  • @jdp9994
    @jdp9994 2 ปีที่แล้ว +5

    Excellent point about 'refactoring' our ideas, instead of forgetting. Applicable to other areas of endeavor. Learn new concepts/conceptual frameworks and then, depending on your assessment, refactor what you already 'know', and see if it works.

    • @lepidoptera9337
      @lepidoptera9337 2 ปีที่แล้ว

      Refactoring is nothing else than comment writing. If you refactor correctly, your code does exactly the same thing. For most developers the refactoring operation is the equivalent of the crew shuffling chairs on the sinking Titanic.

  • @sunnyrajkotiya
    @sunnyrajkotiya 4 ปีที่แล้ว +11

    A very neat explanation of functional programming. Some points helped me a lot
    1. how to avoid the side effects? Ans: We cannot. You simply have to confine it and different languages handle it in different ways. Some examples are atoms, Agents/Actor model. Redux (a library to manage the states, mostly used with react) has similarly way of working, where you trigger the events and it will go through the pure functions (the state will be passed as param in each of the functions) and the response of these functions will mutate the state internally by library.
    2. As functions do not have side effects, it helps a lot in handling threads.
    what is missed in this talk is to highlight why people often talk about curry functions while explaining functional programming. Why it is so needed in functional programming?

    • @ccgarciab
      @ccgarciab 3 ปีที่แล้ว +2

      It's not needed, it's very convenient, and comes easily with proper function types. ML family languages autocurry functions, but you can curry functions yourself in any language with higher order functions.

    • @anonymous38741
      @anonymous38741 2 ปีที่แล้ว +1

      currying only allows you to use partial application in a way that is a little terser than lambdas. for example instead of:
      increment x = add 1 x
      you can write:
      increment = add 1
      or instead of:
      users |> filter (\user -> isOlderThan 12 user)
      you can do:
      users |> filter (isOlderThan 12)
      this is particularly convenient in function composition when you combine 3+ functions as partially applied functions in the middle of function composition are a lot more terse then lambdas
      getYoungSurnames = toUpper . map surname . filter ((< 12) . age)
      Vs
      getYoungSurnames users = (toUpper . map (\u -> surname u) . filter (\u -> age u < 12)) users

  • @zerosandones701
    @zerosandones701 ปีที่แล้ว +1

    Answered a lot of questions, thanks for putting this out there!

  • @zed625
    @zed625 3 ปีที่แล้ว +4

    This is a great conference for someone who wants to say they learned about functional programming but don't actually want to learn; maybe someone who's being paid by the hour to learn about functional programming and nobody is going to check in on how much they learned at the end

  • @rubiskelter
    @rubiskelter 4 ปีที่แล้ว +5

    Category theory is actually really interesting. We study it at our university, it gives you another taste of what's haskell about.

  • @mostafaismail5256
    @mostafaismail5256 3 ปีที่แล้ว +1

    very clear and helpful, thank you

  • @DomainObject
    @DomainObject 5 ปีที่แล้ว +7

    Fantastic talk! Well done Russ. :-)

  • @tango2olo
    @tango2olo 4 ปีที่แล้ว +2

    Got really inspired.. Indeed a gem of a presentation! thanks!

  • @itsnaveen007
    @itsnaveen007 3 ปีที่แล้ว +1

    one of the best explanation of Functional programming

  • @pegasis3646
    @pegasis3646 3 ปีที่แล้ว +90

    Him: I don't like the "pure function" name bcs it means other functions are bad
    Also him: the nasty outside stateful world

    • @tullochgorum6323
      @tullochgorum6323 3 ปีที่แล้ว +1

      You have 100% missed the point, I'm afraid. The whole point of f

    • @vukkulvar9769
      @vukkulvar9769 2 ปีที่แล้ว

      I would call them "deterministic functions". If you use the same inputs, you'll always have the same output.

    • @zzzzzz1039
      @zzzzzz1039 2 ปีที่แล้ว

      He said messy not nasty which is emtirely different.

  • @arbitertl
    @arbitertl 9 หลายเดือนก่อน +2

    Excellent lecture. Easy language accessible even to juniors! Bravo!

  • @bakdiabderrahmane8009
    @bakdiabderrahmane8009 4 ปีที่แล้ว +3

    Great lecture

  • @ivancho89
    @ivancho89 4 ปีที่แล้ว +2

    Great Talk!

  • @tzadiko
    @tzadiko 3 ปีที่แล้ว +3

    When I went to college there was no undergrad computer science department. All the undergrad computer science courses were in the math department and if you wanted to concentrate in computer science, you graduated with a math degree. As such you had to take all of the required courses for a math degree in order to graduate.

  • @groam6666
    @groam6666 4 ปีที่แล้ว +91

    I use a mix of functional and OO. I think it's a mistake to follow a specific set of rules for programming (OO vs FP). Just write what makes sense, causes less problems and is cleaner code to maintain. For every style of programming, you'll still end up with problems, albeit different ones depending on the style.

    • @Qrzychu92
      @Qrzychu92 4 ปีที่แล้ว +7

      that's why as a C# dev I'm learning F#. Seamless interaction between them are a blessing :)

    • @alexclark6777
      @alexclark6777 4 ปีที่แล้ว +3

      @@Qrzychu92 The thing I love most about F# is that the best bits make it into C# soon afterwards.

    • @theelectricmonk3909
      @theelectricmonk3909 3 ปีที่แล้ว +3

      @@Qrzychu92 I'm learning G#. Because, you know, one better... :D

    • @michaelmao6180
      @michaelmao6180 3 ปีที่แล้ว +4

      If you're working on existing code, do whatever is needed/customary in that codebase is the way to go. But if you're starting on a new codebase, you better stick to one particular style, and also you should choose what language you use carefully. Many modern practices that are extremely prevalent provides the same set of benefits as OO (modularity vs encapsulation, etc.), so it's much more about the style of code you're accustomed to. Designing your code around OO, especially with multi-threading, may cause a new set of problems since they aren't designed to be deterministic. FP brings its own sets of benefits, especially in provability/testing, and also the ability to refactor code without needing to worry about correctness too much. However, you instantly lose these benefits if you mix OO with FP (introducing side effects into a pure FP environment). Hence, if correctness and testing are important for a project, it's much better to do pure FP than mix OO with FP.
      The drawback of doing pure FP is that not many people are able to do pure FP, but that's not the fault of FP, but rather we are in a phase of transition and the educational infrastructure isn't here yet. FP is so fundamentally different from state-based imperative programming, which all non-FP styles assume means this transition will be difficult as we need to learn to think about computation and programming in a completely different light. It's kind of a dilemma. If you mix FP with non-FP, you'll end up not enjoying some of the key benefits of FP, and if you try pure FP, the learning curve is steep for programmers who are already accustomed to thinking under an imperative framework, and this gives it a reputation of being extremely difficult, so new-comers tend to not learn pure FP.

  • @imanfazel7157
    @imanfazel7157 5 ปีที่แล้ว +2

    BRILLIANT talk. much appreciated.

  • @L.E.I.F.
    @L.E.I.F. 9 หลายเดือนก่อน +1

    This content is really nice, I was wondering at the beginning on how annoying the implementation sounds but to end of the video it all falls together really nicely.

  • @michaeldacosta7504
    @michaeldacosta7504 4 ปีที่แล้ว +36

    Came here to learn something about functional programming, out of curiosity. Gave up after 10 minutes, around the time he starts showing documentation from OOP languages and essentially says “Gosh, look at that snippet, doesn’t it sound hard?”. It’s getting frustrating that every video I watch on FP begins by trying to sell me on the idea that I should give up OOP because it’s inferior.

    • @rizwanlokhandwala1645
      @rizwanlokhandwala1645 3 ปีที่แล้ว +12

      That isn't at all what he is saying. He is saying there are aspects of OOP that can make code convoluted and difficult to maintain and that functional programing has solutions to some of these issues. You don't have to choose between OOP and functional programming but rather choose where you want to use aspects of each. You take skills and practices from both OOP and FP to make your code as optimal as it can be.

    • @this-is-bioman
      @this-is-bioman 7 หลายเดือนก่อน

      Exactly my thoughts too! None of these so called gurus ever shows a real world business case solutions using their genius approach. They only work in simple academic scenarios, but fail dramatically for everyday work.

  • @FeridHelalihome
    @FeridHelalihome 5 ปีที่แล้ว +5

    Experts explain hot, complex, wiered things in easy and clean manner , thanks for the great teck talk

  • @RememberingGames
    @RememberingGames 3 ปีที่แล้ว +2

    That was super interesting!

  • @anarcho.pacifist
    @anarcho.pacifist 5 ปีที่แล้ว +10

    Great talk.

  • @honmameiko1333
    @honmameiko1333 3 ปีที่แล้ว +4

    the intro to the functional programing really amazed me

  • @abdoaly7023
    @abdoaly7023 3 ปีที่แล้ว +3

    Thanks for this one it is really helpfull

  • @csaracho2009
    @csaracho2009 ปีที่แล้ว +1

    Very good, thanks!

  • @arpanghoshal2579
    @arpanghoshal2579 2 ปีที่แล้ว +12

    This talk was super awesome.
    I was a java geek, but now I love functional programming (I do elixir)
    For me functional programming means...
    Pure functions with no side effects
    Immutable Data structures
    Eazy multiple threading (bye-bye mutexes)
    Thinking in terms of transformations
    Testable small units
    functional_programing(your_ideas) = awesome_products

  • @klincecum
    @klincecum 3 ปีที่แล้ว +6

    While I enjoyed the video, and found it useful and interesting, It didn’t answer any questions I would have unless I already knew what functional programming was.

    • @SachinGanpat
      @SachinGanpat 2 ปีที่แล้ว

      Same. I came out more confused than I was going in.

  • @ozanmuyes
    @ozanmuyes 4 ปีที่แล้ว +3

    To me the perfect definition of side effect so far. Thanks for the talk.

  • @thebudgieartist3391
    @thebudgieartist3391 3 ปีที่แล้ว +1

    Now I feel hyped about it.

  • @amortalbeing
    @amortalbeing 4 ปีที่แล้ว +15

    I still dont understand why is there lots of buzz around FP! the core concepts that this gentle man has been using, are really normal abcs of any programming languages. in C++/C#, that I have extensively worked, you can have mutable or immutable data structures.
    This really boils down to the programmer him/herself knowledge or desire really!

    • @michaelcarter577
      @michaelcarter577 4 ปีที่แล้ว +9

      FP is really about adding additional restrictions to the programmer to protect them from themselves. You can write functional code in C++/C#, but a dedicated FP language prevents you from straying outside of FP.

    • @RabidDog5150
      @RabidDog5150 4 ปีที่แล้ว +5

      @@michaelcarter577 Nail on the head! I thought I was going mad when I heard the explanation but it does seem to be a means of stopping you from hurting yourself. Unless you are mad too but that is fine because it means I am not alone :)

  • @PaxHominibusBonaeVoluntatis
    @PaxHominibusBonaeVoluntatis 7 หลายเดือนก่อน +1

    the beauty of this speech is (I fully agree with it) that functionality on software is frequently only a side effect for programmer;). For a geek the functional beauty and the right efficient algorithm is all but this cannot be eaten on breakfast and you can't pay your bills as well - so customer/client/buyer interests are also worth to focus on. Cheers! Excellent video!

  • @tamatartinda3883
    @tamatartinda3883 2 ปีที่แล้ว +1

    Best functional programming explanation

  • @pankajsinghv
    @pankajsinghv 5 ปีที่แล้ว +17

    One of best talk I have ever heard on Functional Programming...

  • @eugenemosh3658
    @eugenemosh3658 ปีที่แล้ว +1

    Thank you! Clojure superb!! ♥

  • @topsiterings
    @topsiterings 4 ปีที่แล้ว +2

    awesome!

  • @me-jn1zl
    @me-jn1zl ปีที่แล้ว +1

    Great explanation!

  • @notagain3732
    @notagain3732 2 ปีที่แล้ว

    I just wanted to write a comment this morning and this one really shows my style. So let's start with how when I first started writing comments I was told to forget everything I know about writing comments. But most people here know alot about them so I thought I just keep this default.
    I like this video and how he talks. Another thing one needs is there more than one type of TH-cam comments.. That said one can think of it like any other ordinary comments that has a design known well to subscribers as well as it is user friendly

  • @hamobu
    @hamobu 4 ปีที่แล้ว +10

    Simply making a copy of the variable transforms the problem from "what is the current value? " to "which copy should I be using and am I aware of it ?"

    • @HurricaneSA
      @HurricaneSA 4 ปีที่แล้ว +4

      No. To use his example, say you want to change the letter D to the letter E in an array of alphabet letters for whatever purpose. The system will then produce a copy of the whole array with that change included as a result which you then pass to whatever function needs the modified data. Then the copies are discarded, the array is reset to its original state and you will have to request the change to be made again if you want to change D to E.
      I think the idea is to get rid of situations where programmers use an array of values, then change the values in their code and then later on run some code on the array expecting a result based on the original value of the array but getting the result based on the modified array. Because you can't change the array via code you won't ever have to comb through lines of code to find out where the values got changed.
      Is it worth switching to functional programming for? I would say mostly in cases where you just cannot afford to ever have ambiguity or errors in the data you manipulate. Like A.I systems for example. If you're just making a computer game for kids then you probably don't need to bother.

    • @theral056
      @theral056 4 ปีที่แล้ว +1

      @@HurricaneSA it's like riding a bike, with enforced use of safety wheels, then? In many cases I don't care about my initial array, and over writing it as I go is just more efficient. If for some reason I need to preserve it, I can do that too and create a copy instead. I really don't get the upside at all. I've watched multiple talks. I don't understand. All I take away from FP is that it deliberately removes half your tool box and puts on a safety helmet for you. But now I get to hit nails with a screwdriver, and god forbid I ever need glue, because there's none there. Is there anything beyond the enforced self-protection I'd like to use from FP? I literally don't understand why I'd ever use it. Not trying to be condescending at all here. Maybe I'm just too dumb. But I really don't see the upside. I have access to immutables outside of FP, without jumping through hoops to use a variable.

    • @HurricaneSA
      @HurricaneSA 4 ปีที่แล้ว +2

      @@theral056 Yeah, I agree that it seems rather redundant. However, I suspect the benefit in this case would be more applicable to large projects where you have multiple programmers accessing the same data via different modules simultaneously. I confess though that I'm just a C# programmer so I tend to agree that it seems rather convoluted.

  • @theway5258
    @theway5258 3 ปีที่แล้ว +21

    And when the video ends I still have the same question: what is a functional programming?

    • @notleader8128
      @notleader8128 3 ปีที่แล้ว +11

      A paradigm based on functions that do not change output whenever the same input is entered, and do not cause any visible side effects

    • @shashiverma6219
      @shashiverma6219 3 ปีที่แล้ว

      Have you watched the video of anjana vakil?

  • @keshayio
    @keshayio 3 ปีที่แล้ว +1

    loving that sprintt

  • @madsteeez
    @madsteeez 4 ปีที่แล้ว +1

    I finally get it.. ALL variables are immutable.. even arrays etc.. now it makes sense

  • @BusinessWolf1
    @BusinessWolf1 2 ปีที่แล้ว +2

    I'm at 12:30 and I have a prediction. Functional prog is 60% regular programming, 39% data oriented programming and 1% object oriented.

  • @CurtisForrester
    @CurtisForrester 4 ปีที่แล้ว +10

    Nice video. Confirmation as to why I never have really leaned toward FP languages.

    • @ern0plus4
      @ern0plus4 3 ปีที่แล้ว +1

      fp takeaway: try to minimalize making side effects

  • @marccawood
    @marccawood 3 ปีที่แล้ว +19

    Never has Bertrand Russell, Lord Russell been referred to as one of „two British guys“.

  • @ronilkunte2704
    @ronilkunte2704 4 ปีที่แล้ว +3

    That is a beautiful presentation .. and literally too .. free of clutter .. just like Functional Programming ;)

  • @0877adri
    @0877adri 4 ปีที่แล้ว +3

    great talk, would love to hear more talks from this guy

  • @kogcyc
    @kogcyc 4 ปีที่แล้ว +2

    Good tutorial. I learned a lot quickly. Thanks.

  • @carlgeorgbiermann2915
    @carlgeorgbiermann2915 4 ปีที่แล้ว +6

    Wow, I had no idea what functional programming is about. Now it's pretty clear to me. Good to hear all this from a practical point of view.

  • @geovanniportilla7159
    @geovanniportilla7159 2 ปีที่แล้ว +1

    "Functional programming == Object immutable programming. End of the talk. Thank very much, see you tomorrow".

  • @JackDespero
    @JackDespero ปีที่แล้ว +4

    The most interesting part was the bridge. Because I mostly do the rest with my own Python code. But I always wondered how functional languages dealt with the "messy mutable outside world". Great explanation.

    • @lepidoptera9337
      @lepidoptera9337 ปีที่แล้ว +2

      They don't. That's why they are so useless.

    • @grawss
      @grawss ปีที่แล้ว +2

      I just try to segregate mutability as much as possible. The moment the data comes in, it becomes immutable, and the only time it changes is as close to the "o" in "io" as possible.
      I think people get a little dogmatic about it though. Being real strict about rules like that is mostly a practice in making use of fewer tools to keep things organized and simple, and as a benefit, keeping yourself sharp and able to think things through with fewer options. It's like yeah, a mechanic can make your car work with his expensive education and thousands of dollars worth of tools, but a redneck can do it with half a shoelace. Finding the balance between the two is key.

    • @voltydequa845
      @voltydequa845 7 หลายเดือนก่อน

      @@grawss A nice comment that made me hopeful that some cognitive recover could happen in Our Brave World Of Parrots.

  • @zackwallace1794
    @zackwallace1794 2 ปีที่แล้ว +1

    If I summarized the point of functional programming, it comes down to functions not creating side-effects. But not in the way you might think. It isn't that the functions can't "do anything", it's that they will reliably and always do the SAME thing given the input. So you pass in the number 12, it will return 24 and that's it. It won't return 24 but also sometimes 30. Or return 24 but sometimes as an array and sometimes as a string.
    The point is that you write a function that works one way, always returning the same output given the input. The input itself needs to be the proper format too, which is very useful for testing and during development. If your function receives an integer, then it would cause an error to pass in an array, or a string, or an object. And this can be easily tested and even caught in the linting phase.
    So again, reliably return the same output for the same input, and no "side effects" beyond that. Nothing random, nothing out of scope, nothing changes based on some extra logic (on Tuesdays, only when it's raining, etc).
    Of course I may have my definition completely wrong, but people seem to be confused, "how do we program without creating effects?" That's not the point, the point is your functions return the same output for the same input every time. Immutable data structures is kind of a 2nd issue for me. Understanding how functions should be written is what I focus on first. And really, functions can be written this way even in procedural and OO.

  • @Amy_A.
    @Amy_A. ปีที่แล้ว

    I really appreciate how he didn't sell it as a cure-all for all modern programming woes. So often I see a new paradigm pop up that sells itself as the perfect way to code every application ever, and it turns out to just have different hurdles than the ones it compares itself to. From that alone, I'll probably give functional programming a try some time.

    • @lepidoptera9337
      @lepidoptera9337 ปีที่แล้ว

      Modern programming woes have nothing to do with applications. They all stem from server-centric architecture and that comes from the need of the application provider to steal your data. What can be done in a hundred lines of code on the device takes a million lines of code if it has to be executed reliably on a server. That is the only problem that modern software developers are facing.

  • @dingoniner5528
    @dingoniner5528 4 ปีที่แล้ว +7

    Full circle. When I started programming, all we had was functional programming. I do 100% of my stuff with it. It's kind of like keeping your orange polyester turtleneck shirts in the closet....one day, you'll be at the edge of fashion again.

    • @ccgarciab
      @ccgarciab 3 ปีที่แล้ว +4

      You mean procedural programming?

    • @corryunedited8154
      @corryunedited8154 3 ปีที่แล้ว +2

      @@ccgarciab I think, maybe, the definition of "functional programming" is a little less intuitive to some of us that started programming in or before the mid 80s.

  • @NeverCodeAlone
    @NeverCodeAlone 4 ปีที่แล้ว +2

    Very nice talk...thx for this!!

  • @sck3570
    @sck3570 5 ปีที่แล้ว +4

    Awesome talk

  • @spoddie
    @spoddie 2 ปีที่แล้ว +3

    My problem with this is that real code is largely fixing data and error processing. Maybe if you are coding some back end thing that that reads perfect data from a queue and writes back to a queue you don't need to worry, but I have to check every value and either reject it or fix it.

  • @603dad
    @603dad 4 ปีที่แล้ว +14

    At 36:19 - Are those wire-rim glasses? Looks like my phone's voicemail logo reminiscent of a cassette tape. Wait..handcuffs?? Oh - now it's a bicycle?!?

  • @JumpingCow
    @JumpingCow 5 ปีที่แล้ว +20

    Hi Russ! I liked the part where you show in the book by two English guys that it took 379 pages to prove 1 + 1 = 2.

    • @rokuruss6271
      @rokuruss6271 5 ปีที่แล้ว +3

      Thanks! You aren't by any chance the David Seller I worked with seven lifetimes ago are you?

    • @coldblaze100
      @coldblaze100 4 ปีที่แล้ว

      @@rokuruss6271 waiting for an update

  •  3 ปีที่แล้ว +23

    My favourite thing about functional programming are higher level functions. Classic example is sorting, you don't have to program sort for each data structure, you just need a function to compare the data and pass it to the sort function. It is not only sort, but every other operation with data.

    • @bobweiram6321
      @bobweiram6321 2 ปีที่แล้ว +8

      LOL! You can do the same thing in both procedural and object oriented programming. It's just an abstract data type.

    • @dmitripogosian5084
      @dmitripogosian5084 ปีที่แล้ว

      That's what you can do even in Fortran :)

    • @jacobschweiger5897
      @jacobschweiger5897 11 หลายเดือนก่อน +1

      That exists in object oriented languages as well. Java has Collections.sort() for example which works on any data type with a .compareTo() method.

  • @codeman99-dev
    @codeman99-dev 3 ปีที่แล้ว

    Starting a new role using F# as the primary language. Pretty excited and completely terrified.

  • @RabidDog5150
    @RabidDog5150 4 ปีที่แล้ว +5

    Functional programming (or what it is being sold as because surely this is were programming all started) seems to merely be a wrapper around semantics. Some people understand the concept/design in object based semantics, others understand the concept/design in mathematical semantics. Maybe I missed something.

    • @gzozulin
      @gzozulin 3 ปีที่แล้ว

      Well, of course. That is what he explains with his "forget everything" piece.

  • @ianide2480
    @ianide2480 4 ปีที่แล้ว +25

    Agree or disagree, it doesn't matter because I am not here to argue. My observation is, programmers trying to make "more clever" programming methods in order to solve problems that were created by programmers. That is to say, the human element of being lazy and the attitude of "it works." There is NOTHING that anyone can in OO that cannot be done in Basic, that cannot be done in FP. Keep in mind I am speaking of functional basics here. I have personally gone through many programming languages and I am hard pressed to find actual differences. Isn't immutability a constant? A class a function? This list could go on for a while I suppose.... Feel free to quibble over semantics if you must.
    Wrap a new shiny bow on your new language give it some similar but different name and POOF, we now have the next best thing. I've had the opportunity in my life to write BIOS code (that was fun: ASM and C -General Software, Phoenix, and AMI, and learning a TON about hardware), web pages from HTML, PHP, CSS, VS, JS, the usual suspects anyway, a few basic Windows and Linux drivers, and many custom applications using both Java and VS mostly for data management or job tracking of some sort. I've never once landed on a single programming language and said, "Yes, this is the one that all others need to be modeled after."
    I have noticed that all of them provide you with the tools to tie your legs and arms into knots and create some of the ugliest code possible. Comments are your friends. Extra notes at the start of a code block will save you so much time. I would say to anyone to not get hung up on any language's ability to do X better because Y class/function that's built in. I cannot count the number of times that I've written a simple function in an OO language because it far superior to relying on inheritance and the trappings of mutability. Sure one method of solving a problem might be quicker to write but quicker to maintain is a different story. Bah what do I know anyway, I'm just some random putz on the internet....

    • @DuckieMcduck
      @DuckieMcduck 4 ปีที่แล้ว +4

      comments in code are at best excuses and at worst straight up lies. good code speaks for itself.

    • @DuckieMcduck
      @DuckieMcduck 4 ปีที่แล้ว +1

      @Will Cockram I'm not saying don't comment. I'm saying that if you have to explain why the code is written in a certain way then it's not good code, and by extension this makes the comment "helpful" (even mandatory). It excuses the poor code. In a worst case scenario, the comment will actually be wrong and will mislead the maintainer since it has no bearing on the execution. So if you skip constructs and features under the guise that you can use your comments to simply excuse your way of doing things, think again.

    • @Domarius64
      @Domarius64 4 ปีที่แล้ว +2

      It seems that people with broad experience such as yourself, share the same opinion. That it's more important to just become good at using the tools available rather than harp on about which tool is best. A rather unpopular opinion, it seems, judging from this comment secion. But then again, that's why good programmers are very valuable.

    • @RabidDog5150
      @RabidDog5150 4 ปีที่แล้ว +1

      Pretty much my thoughts. Languages are merely an abstraction from the run time. Use the language you feel best describes the work you are doing.

    • @steveoshaughnessy3736
      @steveoshaughnessy3736 4 ปีที่แล้ว

      Alan Turing proved this. Any algorithm can be computed using a very basic set of operations (read, write, forward 1, backward 1) and a set of rules. Knowing this reduces all languages to how easily they implement libraries of functions. I could (well, maybe once upon a time, 8^) ) write the character C to the screen using an assembly language to move byte values around different registers. Or I could just type print('C'). For me, as a developer, knowing a language is about knowing the syntax and the libraries it supports. I should say, I'm not a heads down developer. I'm a data engineer and hobbyist. For me it's all about solving a problem in the easiest and fasted way I can. I mostly use SQL and Python. And I'm a formatting Nazi. I use long, descriptive names and LOTS of whitespace. This is where Python gives me a little grief. I like to capitalize keywords so the functions stand out.

  • @Novalax
    @Novalax 4 ปีที่แล้ว +32

    An array typically has accessing its elemnts in O(1). The array built from a tree would be O(logn). That's kind of a big issue for something that as commonly used as an array.

    • @ozanincesulu5637
      @ozanincesulu5637 4 ปีที่แล้ว +29

      An array accesses to an element by addition to base index and dereferencing the location to a register (about 2-3 instructions). Let's say you have an array containing 512 GBs of int values (which is a lot actually). When you have a tree you do the above process repeatedly (we can also assume that the tree structure will perform more dereferencing and arithmetic for node access, so let's say 8 instructions). 512GB = 512 * 1024 * 1024 * 1024 bytes -> /4 (size of int) -> log32 -> round up -> 8. thus at most 64 instructions. Considering there are pipelining mechanisms implemented in modern CPUs it actually takes less than that. Now think of how many cycles it is necessary to load such array into the memory, then to write it to a disk. In most optimization requiring tasks that uses arrays (games, image processing, deep learning, ) any required fetch or update is assigned to the GPU so this case that we are currently inspecting is a bit far case. Now consider this, do you prioritize more understandable, error-prone, maintainable code or optimizations that are premature %95 of the time anyway?

    • @GeorgeTsiros
      @GeorgeTsiros 4 ปีที่แล้ว +3

      indexing into an array is a O(1) op only in theory. In actual execution, indexing into an array is not even the same over time, even for the same location.

  • @JeffThePoustman
    @JeffThePoustman 3 ปีที่แล้ว +1

    Superlatives deployed. Gratitude expressed. Curious aspiration ignited.

  • @EddyParkinson
    @EddyParkinson 4 ปีที่แล้ว +2

    Data Processing - calculations are important BUT most software is data processing software. With data processing, it is data structures that are hard work. Watch Grace Hopper, she is fun and explains the issue.

  • @juanandrade2998
    @juanandrade2998 3 ปีที่แล้ว +2

    My only problem (not with functional) but with how Java handles functional, is the syntax needed for VarArgs, they should have used something different than commas, by doing it, one could place VarArgs at the beginning of a method parameter, making it not only extremely easy to code, bu extremely easy to read and understand the data flow.

  • @rarknoefi7545
    @rarknoefi7545 5 ปีที่แล้ว +15

    I fooled around with Scala a little as I consider Java burden. Thanks for the high level abstraction.

    • @burkejohnson4539
      @burkejohnson4539 5 หลายเดือนก่อน

      try Clojure - it's a purely functional version of Lisp that compiles to JVM bytecode

  • @paulchoudhury2573
    @paulchoudhury2573 3 ปีที่แล้ว +1

    Nice explanation from an excellent speaker. I can really see how this paradigm can help with new designs. But tell me how efficient it's going to be to iterate through one of those fancy/cool tree style arrays.

    • @paulchoudhury2573
      @paulchoudhury2573 3 ปีที่แล้ว

      @Dirk Knight Exactly my point. With the data structure described in the talk if you use those arrays you'll be getting tree style performance under the hood. Are you saying that these arrays should never be used for iteration?

    • @burkejohnson4539
      @burkejohnson4539 5 หลายเดือนก่อน

      @@paulchoudhury2573 Eh, I doubt it. common lisp is essentially as fast as C, and functional lisp is essentially nothing but recursion and arrays

  • @ninjasiren
    @ninjasiren 3 ปีที่แล้ว +3

    Seems people are fighting about what is the best programming method. But in the end, it is really depends on your purpose and idea for an application.
    I code using both OO and FP, I switch if what is better and more efficient for what needed/wanted. I have even mixed both with efficient enough flows.
    Seems the most die hard people who likes a specific thing keeps push what they want to what other people want. (I am not saying the presenter is like this, I just heard someone from a Clojure talk just ranted why OO is better)

  • @stevejones4275
    @stevejones4275 3 ปีที่แล้ว +2

    Russ get to 25 mins in before revealing that it solves the problem of mutable datastructures by making themimutable then mutable again!

  • @alexanderryzhov1620
    @alexanderryzhov1620 3 ปีที่แล้ว +4

    the real stuff begins at 14:15