Dear Functional Bros

  Рет қаралды 419,758

CodeAesthetic

CodeAesthetic

4 ай бұрын

Access experiments at CodeAesthetic.io
Discord, deleted scenes, song names and more at patreon.com/CodeAesthetic

Пікірлер: 1 200
@NihongoWakannai
@NihongoWakannai 4 ай бұрын
Code Aesthetic: Makes a whole video about being a "never nester" Also Code Aesthetic: 4:10 puts an entire function's logic inside an if statement instead of using a return.
@randomizednamme
@randomizednamme 4 ай бұрын
As well as multiple early returns within the if 😂
@user-fi6wo6bp8g
@user-fi6wo6bp8g 4 ай бұрын
Early returns are not there in most functional languages. So it's not common to use them. The same is true for local variables. Creating them usually requires a `let ... in` construct so they are also avoided
@quanquoctruong1276
@quanquoctruong1276 4 ай бұрын
The fact that he chained function calls after function calls... it has the same effect to the call stack as recursion does... smh right now
@Muskar2
@Muskar2 4 ай бұрын
Judging from their second channel and their website, I think they've been on a journey to rediscover non-OOP and computer science since the never nester thing. Also, it's not a bad thing to change your mind.
@jordanray1537
@jordanray1537 4 ай бұрын
My guess is it was just for ease of understanding. He's showing how the condition moves down to the recursive solution so any change there is not necessary for the point. Would've been nice to see him do the solution in the video and simplify it to flatten the if statement.
@nERVEcenter117
@nERVEcenter117 4 ай бұрын
I learned functional programming via F# and Clojure, and came away with a rather impure lesson: You only need a SUBSET of pure functional concepts to write great software. I've found that in most languages, you get 80% of the benefit from 20% of the tools: Referential transparency via expression-based programming; no state or local-only state (avoid global state or state passing at all costs); chained stateless transformations, via things like universal function call syntax, pipe operators, map, filter, reduce, and comprehensions; a strong preference for passing around and transforming simple data structures, such as records/structs; liberal use of tagged unions/variants to create exhaustive conditionals that make illegal states unrepresentable; and making functions short and sweet, which allows for minimal nesting and easy naming. Your program then becomes a pyramid of calls to what is essentially a DSL.
@dupersuper1000
@dupersuper1000 4 ай бұрын
Hard agree. I’ve been all the way down the FP rabbit hole and back again. My takeaway is that the biggest bang for your buck is functional style state management. Usually there is a framework that does this for you. Use it.
@charliejonas3416
@charliejonas3416 4 ай бұрын
Agreed, using imperative code inside the local scope of a function is a good trade off to maintain simplicity and performance, so long as your exported function maintains referential integrity
@hugodsa89
@hugodsa89 4 ай бұрын
F#❤
@mikeiavelli
@mikeiavelli 4 ай бұрын
I somewhat agree. But then, what are examples of stuff you consider to be functional but out of that subset you mention? To me, you summed up what functional means, and I don't get why you would call that an "impure lesson" (other than for the local-only state). 🤔
@jdmichal
@jdmichal 3 ай бұрын
"Your program then becomes a pyramid of calls to what is essentially a DSL." *Lisp curse intensifies* Seriously look up the lisp curse by Winestock. The problem is that in a team of 5 people, they'll be able to come up with at least 6 different DSLs for the feature set. And which one is the most correct is usually dependent on future unknown expansion of feature set.
@InconspicuousChap
@InconspicuousChap 4 ай бұрын
Lambda calculus (which most of the FP is based on) is not just about purity and statelessness of functions and converting loops to tail recursion calls. It ensures transparency of the functions. The entire tree of terms is always available. Which means, the compiler can reduce expression trees, sees data access patterns, can replace operations and data structures with more efficient ones, eliminate effectively dead code, etc., and do so across the function calls. These techniques are used even in imperative language translators (e.g. GCC and Clang), but they are tied by unpredictably mutable state.
@clawsie5543
@clawsie5543 4 ай бұрын
But full immutability also makes a lot of things harder. I implemented a compiler in Haskell once. It was not fun, at all. Want to modify a syntax tree while type checking it? Have fun rebuilding the entire tree, which is both error-prone (accidentally changing left-hand side and right-hand side of binary operators or using older (not type checked) nodes) and makes code harder to understand. Or you can use the same syntax tree and make the same checks every time (like dealing with == operator for arrays differently). Or maybe there is some fancy way of doing it with a shit ton of abstraction that I couldn't figure out because I don't have a PhD in category theory and computer science. Ironically, Haskell taught me the beauty of procedural programming.
@clawsie5543
@clawsie5543 4 ай бұрын
@@user-tx4wj7qk4t the comparison between mathematics and programming is weird, because they are mostly unrelated in this context. Even if you want to go along with it, mathematicians use a mix of mathematical notation and kind-of-imperative natural language, 'cause explaining everything using only maths and logic would be unreadable. Maybe functional languages are good for toy compilers (that probably use parser and lexer generators), but any serious compiler like gcc or nodejs uses procedural/imperative style, with hand written parsers. Most of the widely used languages combine procedural or imperative with other paradigms. It's weird to say that procedural style is garbage when Haskell literally reinvents it. What is a state monad? It's Haskell reinventing mutability. What is IO monad? Just statements in imperative languages. Why do you need those if functions are so good? Cause you can't program in a convenient way using only functions without adding a shit ton of abstractions and concepts.
@MynameisBrianZX
@MynameisBrianZX 4 ай бұрын
To be fair, these optimizations also happen in imperative languages, especially if the compiler does effect analysis. Of course, guarantees are more reliable than compiler inference. This is not to say functional languages always yield inherently more performant programs, that should be left up to benchmarks in practical applications.
@clawsie5543
@clawsie5543 4 ай бұрын
@@user-tx4wj7qk4t you completely missed the point about mathematics. Are math articles/books written in math notation only? No, because it's unreadable. Do teachers throw pure formulas at students? No, they explain it with words + show some formulas/definitions. At no point did I claim that mathematical language is imperative. "How to prove X? Show, this, this and that", that's pretty imperative. Whatever, this discussion is pointless, you seem to be one of those pure functional programming zealots.
@cursivecrow
@cursivecrow 4 ай бұрын
@@user-tx4wj7qk4t "It definitely doesn't make things harder, that's why mathematicians use "immutability", aka real variables. No mathematician is writing "imperative" math." this is factually incorrect (and a misunderstanding of mathematics). If I define the variable x = 1 in one context, and x = 3 in another context, my x is not universally immutable; it is contextually immutable and it may be a different value in a different state. Not to mention that there is an entire category of mathematical functions that are iterative over some mutating variable en.wikipedia.org/wiki/Series_(mathematics)
@muno
@muno 4 ай бұрын
This was a really good execution of a 3b1b-style "rediscovering the fundamentals from scratch" journey. Also, I have a sudden urge to take pictures of my receipts and upload them somewhere, but I'm sure it's completely unrelated
@felixfourcolor
@felixfourcolor 4 ай бұрын
Google Opinion Rewards gives you $0.10 to $0.20 of google play credits every receipt. #sponsored
@HEROIKE315
@HEROIKE315 4 ай бұрын
Heyy, you're that rivals of aether mod creator. I see you 👀
@ABHISHEKJAIN-wv7bh
@ABHISHEKJAIN-wv7bh 4 ай бұрын
and he declared war on CODERIZED channel also⚔
@Eichro
@Eichro 3 ай бұрын
woag
@TheSast
@TheSast 4 ай бұрын
sorry, you got the wrong person, me and my lifestyle are DISfunctional.
@hashemwannous374
@hashemwannous374 4 ай бұрын
Dysfunctional*
@user-or6sr6rg2u
@user-or6sr6rg2u 4 ай бұрын
Dusfunctional*
@hiiamelecktro4985
@hiiamelecktro4985 4 ай бұрын
Dizfunkshunul*
@sohn7767
@sohn7767 4 ай бұрын
Rizzfunctional*
@Gregorius421
@Gregorius421 4 ай бұрын
Deez funkshions are belong to us
@joelbarr1163
@joelbarr1163 4 ай бұрын
Recursive functions can be scary because it can lead to very long call stacks and stack overflows. I recently learned about tail calls which some languages can use to avoid this. Essentially, if the last line run in a function is another function, the rest of the resources from the completed function can be freed up. I learned about this from Lua, but it looks like there is some compiler support in C++ as well
@roronosekai4886
@roronosekai4886 4 ай бұрын
Same thing exists in Scala 😉
@SimonMeskens
@SimonMeskens 4 ай бұрын
Scheme's spec mandates that implementations guarantee tail recursion. WASM has a tail recursion extension as well. JavaScript was supposed to get guaranteed tail calls, but it was veto'd by Apple and Google IIRC. A lot of compilers (for example Rust's) will do TCO or tail call optimization, but this isn't guaranteed, so I personally find it annoying to rely on. I don't want to write higher level code and then check the assembly to see if it's actually optimized the way I want it. Of course it's basically guaranteed to be available in functional languages like Haskell, OCaml, Elixir, etc.
@joranmulderij
@joranmulderij 4 ай бұрын
Even though it works, it really feels like a hack. What if the compiler accidently does not recognize this for some reason? Then you have unexpected behavior that might also be hard find out about.
@roronosekai4886
@roronosekai4886 4 ай бұрын
@@SimonMeskens in case of Scala if you want to make sure you can use a simple annotation. If you write something wrong compiler will tell you right away
@EdouardTavinor
@EdouardTavinor 4 ай бұрын
@@joranmulderij once you get used to it, it's simple enough to reason about. for example, if i want to write a non-tail recursive factorial, it will look like this: func factorial(int n) { if n
@garretoconnor9877
@garretoconnor9877 4 ай бұрын
Important to note that in JavaScript, Array.sort() sorts the array in place. However, ECMAScript 2023 introduced a new non-destructive method for sorting an array, Array.toSorted(). PS. It also introduced Array.toReversed() and Array.toSpliced(), non-destructive alternatives to Array.reverse() and Array.splice().
@Bliss467
@Bliss467 4 ай бұрын
now if only they'd give us summed, grouped, unique, and partitioned..... yes, you can do literally all of that in `reduce` but reduce is notoriously easy to write and hard to read. also, they have you put the initial value _after_ the function, which is just sacrilege.
@MagicGonads
@MagicGonads 4 ай бұрын
@@Bliss467 the initial value after the function is correct because in bind-order the function is what you would bind first when specialising it under partial operation
@cadekachelmeier7251
@cadekachelmeier7251 4 ай бұрын
Can we petition to introduce Array.toMapped, Array.toFiltered, etc. that mutates the original array to just really destroy the souls of new developers?
@simonwillover4175
@simonwillover4175 4 ай бұрын
​@@cadekachelmeier7251 I think those functions are both ridiculous though. Array.prototype.toMapped = function(transform){this.forEach((e,i,a,)=>{a[i]=transform(e,i,a);});}; // this just uses for each! toFiltered would either be inefficient OR take up extra memory. inefficient way: Array.prototype.toFiltered = function(condition){ // yes, this for loop is horrendous for(let i = 0, c; i < this.length; c?(i++) :(this.splice(i,1))) c=condition(this[i])); return this; }; extra memory way: Array.prototype.toFiltered = function(condition){ const f = this.filter(condition); // apply is used because ...ellipsis is slow f.unshift(0); f.unshift(this.length]); this.splice.apply(args); return this; };
@tobiascornille
@tobiascornille 4 ай бұрын
@@Bliss467 Object.groupBy now exists!
@theslightlyhillyrider969
@theslightlyhillyrider969 4 ай бұрын
The functional emphasis on reducing state and minimising side effects also, in my opinion, greatly helps with reducing code complexity in the way described in "Philosophy of Software Development". In that book, he emphasises creating modules or functions with deep functionality, and simple interfaces. If your functions are pure and have no side effects, it simplifies the actual interface and avoids information leakage - you only have to know what the function explicitly does, what its parameters are, and what it returns. The implementation is entirely irrelevant. I've definitely edited some people's code where I've been confused by bugs, only to find that a function somewhere is sneakily mutating the state of the code when I'm not aware of it. Having a guarantee that a function doesn't do such a thing is really useful when trying to quickly understand and use a system. I think something like naming functions which are pure as this_is_a_function_P and ones which have side effects as this_is_another_function_Imp would potentially help, provided people do stick to those rules. Just my two cents!
@voidmind
@voidmind 4 ай бұрын
With JavaScript, you can customize ESLint to give you errors or warnings when a function modifies its inputs. You can customize the rule to not report errors if your parameters are written with a specific pattern. I configured it so that if you intend for an input to be modified (like when using an array.forEach()), your parameter name should start with "mut_". We have eliminated non-pure functions thanks to this
@LosFarmosCTL
@LosFarmosCTL 4 ай бұрын
that should be something that the compiler enforces, for example in swift when you want to change some value of the containing struct inside of a method, that method has to be explicitly marked with the mutating keyword, otherwise you will get an error
@Yougottacryforthis
@Yougottacryforthis 4 ай бұрын
so you want a const guranatee? we can have that in oop too :)
@theslightlyhillyrider969
@theslightlyhillyrider969 4 ай бұрын
@@voidmind that fixes part of the problem, though it still doesn't stop you having some class method foo(int a) {b = a; self.c = 20; return b}, so doesn't guarantee pure functions as side effects are still possible. However, that sounds like a good approach to do this in a language which doesn't enforce these kinds of rules
@theslightlyhillyrider969
@theslightlyhillyrider969 4 ай бұрын
@@LosFarmosCTL yep, or rust for example has all data as const by default, which is a much better way than the standard mutable by default approach, though I doubt many other languages will adopt it sadly
@Emil_96
@Emil_96 4 ай бұрын
I recently watched a video on "hardware programming" which I now realize is just basically building functional programs into hardware.
@lucaxtshotting2378
@lucaxtshotting2378 2 ай бұрын
von neumann is rolling in his grave because of you comment
@zactron1997
@zactron1997 4 ай бұрын
This pipeline approach is one of the things I love about Rust. In JS, the array methods operate on the entire array at each step, whereas Rust iterators work on a single item from the iterator at a time across the entire pipeline.
@electra_
@electra_ 4 ай бұрын
That's one thing I'm always a little annoyed about in JS, the functional methods are *only* defined on arrays, not iterators. Which sucks sometimes. Apparently they are in development on iterators but its not implemented everywhere, including node.js, so like... not really usable
@Metruzanca
@Metruzanca 4 ай бұрын
@@electra_ Yeah the tc39/proposal-iterator-helpers seems to be missing the implementation step. I'm really excited to get something like that in js.
@MegaJoka100
@MegaJoka100 4 ай бұрын
C# LINQ also operates directly on the IEnumerable. So it does everything item by item instead of always processing the whole collection.
@8BitShadow
@8BitShadow 4 ай бұрын
@@MegaJoka100 yep, god I love enumerables because of that lol
@OfficialViper
@OfficialViper 4 ай бұрын
Also, JS copies arrays in ram to work on them (which sucks even more if you chain multiple of those functions together), while Rust "resolves" your chain of functions at compile time. It's part of Rusts zero-cost abstraction philosophy. Rust is awesome.
@fiddytroisvis
@fiddytroisvis 4 ай бұрын
As an early career developer without a CS or mathematics degree, I really appreciate how you explain things and your delivery. I would love for you to do a series of deep dives into various principles and paradigms. Whatever you do I'm sure it'll be great and I'll be here for it. Happy holidays, stay safe 🎄
@kylewollman2239
@kylewollman2239 4 ай бұрын
The timing on this video is perfect. I've been on an fp video binge the last few weeks and you have a way of visually explaining things that I've always appreciated.
@WillEhrendreich
@WillEhrendreich 4 ай бұрын
Have you tried #fsharp?
@LetsGetIntoItMedia
@LetsGetIntoItMedia 4 ай бұрын
This video was a really great overview! Since you're on an fp video binge, maybe you'd be interested in the series I'm starting (check out the channel page). I think there's also a lot of value to understanding some of the math concepts... NOT because smart words make you smart, but because the smart words are actually fairly simple concepts that are quite universal, so knowing them helps you see patterns in problems, which you can then solve more simply
@kylewollman2239
@kylewollman2239 4 ай бұрын
@@LetsGetIntoItMediaThanks for sharing. I just watched the first video in the series and I think I'll enjoy the series and learn a lot from it.
@LetsGetIntoItMedia
@LetsGetIntoItMedia 4 ай бұрын
​@@kylewollman2239 lovely, thanks for watching! I hope you enjoy the rest. And please leave me any feedback on the format/pace/content, so I can tweak the series to be most fun and helpful as possible!
@connerjones4554
@connerjones4554 4 ай бұрын
As someone who is trying to learn programming, and has only so far found OO educational materials, I have had a lot of trouble trying to comprehend what a functional approach would look like. I finally get it. Thank you so much! I feel like I have the power to ask better questions now, and keep moving forward.
@lucaxtshotting2378
@lucaxtshotting2378 2 ай бұрын
it looks like a lot of code that noone can read. Because at the end of the day, at the level of the CPU and even before function and data is the same thing. In my opinion it is ok to concatenate functions in a left to right syntax, but having the ARGUMENT and not the result of a function be another fucntion (so kind of right to left) is just making your code unnecessarily hard to read
@lucaxtshotting2378
@lucaxtshotting2378 2 ай бұрын
in fact this is why SQL can be frustrating sometimes, although CTEs help
@davidzwitser
@davidzwitser 4 ай бұрын
I love the visualisation of the functions! Btw, you would be super cool if you did a video about array programming! Like with APL or BQN etc. Those are the most aesthetic language in my opinion and it would blow a lot of peoples mind if they saw that video!
@Finkelfunk
@Finkelfunk 4 ай бұрын
I mean he kind of set it up. We now need a video on functional combinators, monads and then we can slowly start to swallow the array pill and have our 20 lines of BQN code that form an Excel clone, a web server, the entirety of Facebook, a missile guidance system, a hospital management software and a smart thermostat all in one go.
@xybersurfer
@xybersurfer 4 ай бұрын
you say that like array programming is the next step, but i have my doubts. it seems to lack the composability of functional programming by imposing more arbitrary limitations. from what i remember, there is also a lack of higher order functions in array programming
@davidzwitser
@davidzwitser 4 ай бұрын
@@xybersurfer it’s funny that you say it lacks composability when that is one of the strongest features. Code_report (KZbin channel) has some good videos showing it 😁 also comparing with Haskell. They also have operators (in APL speak) or modifiers (in BQN speak) which are sort of higher order functions, but BQN (the language I write in (I have some videos on my account if you’re interested)) also supports higher order functions in the functional sense. And the restriction (constraining to arrays) isn’t arbitrary, it gives a lot of power and expressivity exactly due to limiting the baseline to a bedrock foundation and building from there using the most flexible and essential functions and making them compostable in every way you’d want. I personally really love them, and if you get your mind into array thinking they’re super expressive, powerful and fun to work with
@xybersurfer
@xybersurfer 4 ай бұрын
​@@davidzwitser oh then perhaps these limitations are specific to the variant of array programming that i used. i looked at the video "I ❤ BQN and Haskell" by code_report. it's shorter than Haskell, but it looks like write-only code (similar to APL). to me it would make more sense if this form of polymorphism was added to Haskell
@4starTitan
@4starTitan 4 ай бұрын
Thank you very much! I've only ever learned OOP, and have been struggling to properly conceptualise functional programming for months, but this video made so much sense. Ive been seeing those snippets of functional programming code at work, it is good to be able to better understand the method and thinking behind them.
@georgehelyar
@georgehelyar 4 ай бұрын
​@@user-tx4wj7qk4t have you considered uploading your own video?
@protosevn
@protosevn 4 ай бұрын
The currying explanation finally made it click for me, good video mate! Also even if a FP lang is not truly "pure" having immutability and the semantics that brings, it gets a lot easier to reason about code.
@atijohn8135
@atijohn8135 4 ай бұрын
Monads/applicative functors are going to be the next FP feature to appear in mainstream languages I think. The usefulness of piping a transformation that can fail/have multiple outcomes is just so great compared to infinite 'if' checks, scary runtime exceptions, or unpacking multiple lists only to map over them immediately after. Kotlin already has a "access member if not null" operator, Rust is similar with its Result and Option datatypes.
@user-hd7ju4wu4b
@user-hd7ju4wu4b 4 ай бұрын
We already have flatMap in js arrays so almost there
@TheMasonX23
@TheMasonX23 4 ай бұрын
I implemented Result/Option in C# using a Nick Chapsas video as reference, and they've been a godsend for cutting down on null exceptions and all the guard clauses to prevent them. If only they were built-in, I'm sure they'd be way better than what I cobbled together haha. Definitely not as nice as Rust, where they're core language featues, but way better than nullable or relying on null checks.
@LetsGetIntoItMedia
@LetsGetIntoItMedia 4 ай бұрын
I really hope so! I think the Effect library will do a lot to bring those to TS in a very usable way. I was using fp-ts before, but found it clunky. Effect might make it all usable enough to actually get popular 🤞
@Starwort
@Starwort 4 ай бұрын
​@@TheMasonX23actually, neither Result nor Option are core language features; they're perfectly standard data types that you could implement equivalently in user code (the difference is that because they're part of the core _library_ they're ubiquitous in APIs, which wouldn't be the case for a user code version)
@Howtheheckarehandleswit
@Howtheheckarehandleswit 4 ай бұрын
​@Starwort Well, the `?` operator isn't something you could build yourself, and it makes using Result and Option *so much nicer*.
@torarinvik4920
@torarinvik4920 4 ай бұрын
One of the biggest benefits of keeping things pure is that it's easy to write unit tests. I am an "FP bro" and must say that your code was a little bit complex. I usually split the pipeline steps into variable assignments to make it more self documenting, unless its steps are very simple.
@LetsGetIntoItMedia
@LetsGetIntoItMedia 4 ай бұрын
Totally! Testing is not a way to catch bugs, it's also a great way to force better code design. If something is easy to test, it's probably written pretty well. And FP is great for that since everything is simple input-output. Mocking, particularly, becomes a non-issue
@torarinvik4920
@torarinvik4920 4 ай бұрын
@@LetsGetIntoItMedia Agree 100%. Just like Rust gives a guarantee of memory safety, pure functions give a sort of guarantee that the function does one thing only. Regardless of the logic that produces the transformation. One can even take it to the next level by writing property based tests. I find writing property test very difficult, but for the more capable and skilled programmers out there it can give extreme code coverage.
@LetsGetIntoItMedia
@LetsGetIntoItMedia 4 ай бұрын
Ohhh yeah, I find property based testing really difficult in practice too. Because then it adds a bunch of complexity in generating the random inputs, and making sure that you cover all the possible edge cases. That, to me, is not worth it. I'd rather just keep functions small, and have tests be very very hardcoded. Think through your edge cases and manually write them all out. And if a production issue comes up, add that as a new unit test to catch that regression in the future. One of my teammates once said, "tests are only worth it if they save you more time/pain in bugfixes, production issues, middle-of-the-night emergencies, and reputation than the amount of work required to write them". I think property testing is over that threshold.
@torarinvik4920
@torarinvik4920 4 ай бұрын
@@LetsGetIntoItMedia Good point. What do you feel about using a debugger? Personally, I'm so bad at programming that I actually spend 80% of the time stepping through the failing tests in the debugger until I find the root of the issue. I used to hate the debugger, but now I'm starting to become comfortable with it.
@LetsGetIntoItMedia
@LetsGetIntoItMedia 4 ай бұрын
There is no other way 😁 when I was first introduced to a debugger, it blew my mind. (But I'm about to contradict myself. There are definitely other ways, and often necessary...) But that was in Java, where stack traces are much nicer. In Javascript, there are so many anonymous functions and library code that it makes it much trickier. Particularly in pipelines, since there's not an obvious place to even place a breakpoint. I end up using pipe(fn, fn, a => { debugger; return a; }, fn) a lot. The debugger is still a good tool, but Javascript makes it tricky. Next best thing is to keep trying to isolate pieces of code and run them in smaller test cases. Unit testing is key.
@scheimong
@scheimong 4 ай бұрын
Take note that doing FP in JS may induce a steep performance penalty, for you are allocating a new array at every chained step and copying the data. And in most cases the runtime cannot optimise this because the closures have no pureness guarantee (i.e. may have side effects). If you want the true functional experience, learn SML or Haskell. If you want the practical functional experience and still keep your sanity (i.e. the choice to opt-in/out at will), learn Rust.
@evandrofilipe1526
@evandrofilipe1526 4 ай бұрын
I like rust less as its not actually functional, instead the trait system is quite good.
@marouanelhaddad8632
@marouanelhaddad8632 4 ай бұрын
I'm not sure the performance penalty is at all something to worry about in web dev with JS. What data collection are you working with on a web app directly, that is large enough for performance to take a noticeable hit? Even if we make some ridiculous large shopping cart or whatever, with 1000 of different items added, it would still take a FP approach less than the blink of an eye to process - on an old and bad PC! I think you're prematurely optimizing for something that would never be an actual measurable difference. In turn, you're losing the FP way which can be easier to reason about and way more concise. (oh yeah, I said it won't even be noticeable in an old and bad pc with an unreasonably artificial huge shopping cart. If it's a standard budget modernish laptop then it even make less sense)
@Papageno123
@Papageno123 4 ай бұрын
Imagine if all developers thought like that, software would be even slower. I'm a huge FP fan, but I won't use it for languages that don't have compiler support to make it fast (e.g in-place opportunistic mutation). "Premature optimization".... lol, people really need to stop using that term.@@marouanelhaddad8632
@evandrofilipe1526
@evandrofilipe1526 4 ай бұрын
@@user-tx4wj7qk4t By what definition of sane?
@Papageno123
@Papageno123 4 ай бұрын
You can very easily define an array mathematically, same thing with a circular buffer... @@user-tx4wj7qk4t
@bobDotJS
@bobDotJS 4 ай бұрын
These videos are always so insanely good. Incredible channel!
@nuno-cunha
@nuno-cunha 4 ай бұрын
@@user-tx4wj7qk4t Get off your high-horse, and stop spamming the same copy & pasted reply. Have fun with your pseudo-intellectual (and possibly imaginary?) job as well. Jesus...
@DavidSVega-cu1dv
@DavidSVega-cu1dv 4 ай бұрын
This is absolutely hands down the best explanation I’ve ever seen on functional programming. I’m only a few minutes in and I’m just so blown away I had to comment. Definitely the best visualization of what’s going on, this is literally so extremely helpful for understanding this concept which I’ve been struggling to start to understand. Thank you so much, you make beautiful and helpful videos!
@nate7803
@nate7803 4 ай бұрын
This channels has 8 videos and 300k+ subs. Shows the quality of the videos. Keep them coming please. DI was my favorite so far.
@tubeyoukonto
@tubeyoukonto 4 ай бұрын
Please make more videos!! Ive never had the nuances of programming seen explained this well and I think this is really valuable! Well done and thanks!!
@NigelMelanisticSmith
@NigelMelanisticSmith 4 ай бұрын
This is the best lead up to how map works I've seen, good work
@edgeeffect
@edgeeffect 4 ай бұрын
Your animation of a statefull function was a work of art!!!!
@xybersurfer
@xybersurfer 4 ай бұрын
did you mean stateless instead of stateful?
@edgeeffect
@edgeeffect 4 ай бұрын
@@xybersurfer no
@W4ldgeist
@W4ldgeist 4 ай бұрын
Dude... your videos are just so enjoyable. Been coding professionally for over 20 years by now and still I love to watch your videos. I sometimes even learn a thing or two. Keep them coming, you are really awesome and make coding more accessible to everyone.
@tuckertcs
@tuckertcs 4 ай бұрын
You have no idea how excited I am when I see a new video of yours. As always, great video!
@garyzhang1781
@garyzhang1781 4 ай бұрын
This is really mind blowing! Probably the best video I’ve seen on KZbin this year! Thank you very much for making this! ❤❤❤
@GdeVseSvobodnyeNiki
@GdeVseSvobodnyeNiki 4 ай бұрын
That's cool and stuff, but this example only works because you only use functions that operate on lists and use fluent pattern. The good thing of functional programming is that you can pipe anything as long as output of previous matches input of the next. Absense of nulls and exceptions and adts are also nice. Monads and all that wizardry is just a consequence of using it all together
@clawsie5543
@clawsie5543 4 ай бұрын
And it also works because every function being piped doesn't require any additional information beside what is in the list. As soon as you need to propagate some information, you end with a lot of useless arguments that are just being passed around. Like what if you want to know the index of filtered element in original array? You now need to create an array of pairs (index, element), and every function needs to accept that pair and propagate that index through every call. That is error-prone (what if you accidentally pass an incorrect number somewhere?) and clutters the functions (that index is not used for anything in most functions).
@adambickford8720
@adambickford8720 4 ай бұрын
@@clawsie5543 you're doing it wrong. You don't need to flatten everything down to pass it along, just have that part of the chain as a closure over the original index and the code that needs to reference it, just does :shrug:
@morphles
@morphles 4 ай бұрын
This is a nice video! I'm extremely a fan of declarative paradigms, but it's quite hard to get others to understand why it's cool. Functional is just one step there. Stuff like logic programming is even more intriguing, though haven't have much opportunity to get into it yet. At least SQL is known by everyone and IMO one of the best arguments to be made for people dissing on declarative - imagine writing this complex SQL query manually! I think that should help people understand the value of declarative too.
@joranmulderij
@joranmulderij 4 ай бұрын
I love declarative stuff as well. I do have to say that it is very often not the best way to solve a problem, but in cases where it does work, it is often by far the best solution.
@morphles
@morphles 4 ай бұрын
@@joranmulderij Dunno about the domain you work it, but for me it's almost seems the best, at least as bulk of code. As video author said yeah you need to wrap it around on edge IO cases, but bulk imo very often can be done that way. At least in web dev and shell pipelines. Also a lot of times there it seems to not be the case IMO existing surrounding code is the reason why and not that it would not work. Just some imperative stuff is so proliferate that it's very hard to do work with it. Imo in future it will be declarative almost always everywhere, at its way more composable, and also giving way more leeway for compilers/systems to decide on how to execute (think SQL changing execution plans automatically based on what it knows about indexes/data stats and what not). For me it seems like a tragedy that imperative was allowed to poison software development for so long. But then, as you can see I have strong opinions :D
@joranmulderij
@joranmulderij 4 ай бұрын
@@morphles The main downside to declarative programming is that it is way easier to get yourself stuck. You really need to "design" the interface. But once that is done and your use case fits tightly without what the declarative system was designed for, then the DX is amazing. I'm currently writing a declarative nodal reactive state management library with two way data flow, which would allow you to have a full-stack reactive system without getting your hands dirty with caching mechanisms etc.
@olmanmora21
@olmanmora21 4 ай бұрын
This video besides being so educational is quite relaxing. Glad to see you around again!
@brainandforce
@brainandforce 4 ай бұрын
As a scientific programmer (in chemistry) who uses Julia intensively after bad experiences with C: I feel like to first order, state is the enemy of scientific programmers (more generally, when state is not relevant to a problem, it should be abstracted away as much as possible). Functional programming maps very naturally onto a lot of what we do, but a lot of the trouble people around me had was the degree to which we were taught we had to manage state when we really didn't.
@andy_lamax
@andy_lamax 4 ай бұрын
in the context of software development, mutable states are allowed if they are local to the functions. And vois la, just like that, loops are back in business, and you don't need to rely on recursion you might blow up your callstack if you are looping of a large dataset
@voidmind
@voidmind 4 ай бұрын
As a JS developer, the best extract I got from functional programming is being mindful of how I funnel state changes in my code. Pure functions help a lot, as well as understanding the difference between a shallow and deep copy. And yes, I'll favour map, forEach, reduce, along with most array methods, over imperatively written loops.
@thehobojoe
@thehobojoe 4 ай бұрын
Be aware that in javascript, many of these operations will have significantly higher CPU and memory overheads vs more traditional approaches, particularly with how much JS loves to mutate and copy arrays under the hood. This is not to say you shouldn't use them, composing reliable and easy-to-read functions is an extremely powerful way to write easy to parse and easy to debug code, but it should be applied carefully and checked for performance when used in performance-critical areas of code. As someone who writes a lot of performance-critical JS (irony, I know), I generally avoid them for that reason, but they have their place.
@marusdod3685
@marusdod3685 3 ай бұрын
@@thehobojoe javascript is already slow, might as well take advantage of that to write more readable code
@maurolimaok
@maurolimaok 4 ай бұрын
Nice to see the channel keeps going. Thanks!
@cameronwright2847
@cameronwright2847 4 ай бұрын
Love your videos, they break down concepts very well. I’ve been doing Advent of Code in Rust and functional programming goes so well with the language. Though can’t say it’s 100% functional, too many for loops.
@paulmcburney6874
@paulmcburney6874 4 ай бұрын
Prof. who teaches Java here, and I have fallen in love with streams. Kotlin in particular has some absolutely gorgeous lambda based stuff in their stdlib.
@capability-snob
@capability-snob 4 ай бұрын
Never change, functional programmers; never change.
@anthonyewell3470
@anthonyewell3470 4 ай бұрын
immutable, const
@AJRobinson
@AJRobinson Ай бұрын
So I watched about 5 of your videos, and I felt myself saying to things like "don't use comments" that this guy is taking everything to the extreme. Then about a week later, I found myself really cleaning up my code using different techniques that you've discussed, especially about inverting the logic of the if statements! I understand now that having knowledge of these different styles doesn't mean you have to use it 1000% of the time, but it really helps to sprinkle it in here and there and made your code that much better! Thanks my guy, you definitely earned my sub.
@Vorono4ka
@Vorono4ka 4 ай бұрын
A new video from you is like the best Christmas gift. Thank you a lot
@evanhowlett9873
@evanhowlett9873 4 ай бұрын
The problem with functional programming in a language like JavaScript is that the JS runtime does not optimize functional techniques. Languages like F#, LISP, Scala, etc. can eliminate stack overflows and sometimes even do something called loop fusion where, in your pipeline example, all operations happen in a single loop instead of looping multiple times which is always the case in JS.
@marusdod3685
@marusdod3685 3 ай бұрын
you shouldn't be recursing anyways. usually for every recursive implementation there is a less error prone higher order function
@SogMosee
@SogMosee 3 ай бұрын
@@marusdod3685 example please. Here's a prompt: you need to keep calling a db or api until the nextToken stops coming back
@Schindlabua
@Schindlabua 8 күн бұрын
@@SogMosee What you are looking for is called an "unfold" or more generally an "anamorphism". It's type looks like: const unfold = (fn: (state: B) => [A, B] | null, initialState: B): [A] => { ... } and you would use it like: const results = unfold(nextToken => { if (!nextToken) return null; const { data, nextToken } = callApi(nextToken); return [ data, nextToken ]; }, ""); The implementation is left to the reader, turns out "unfold" is a pretty useful higher order combinator that pops up everywhere. Obviously it's not a javascript builtin and obviously we don't do promises here etc but yeah if given a toolbox of higher order functions, we usually don't need to recurse.
@Schindlabua
@Schindlabua 8 күн бұрын
And thinking about it, `unfold` is pretty similar to generators found in most programming languages, perhaps even equivalent.
@babyboie20
@babyboie20 4 ай бұрын
HOLY CRAP this helped me so much. I have written recursive functions and used them and even explained them in coding interviews but the way you broke it down here helped me understand even more! You lost me a little after the halfway mark but that just means I need more practice and more exposure to. Hella dope, thanks again!
@bossysmaxx3327
@bossysmaxx3327 3 ай бұрын
dude this is the most clean explanation of functional programming ever created.
@MasterOfCards232
@MasterOfCards232 4 ай бұрын
Great video building the concept from the ground up Ironically those of us that grew up with JQuery were encouraged to learn and use this from the beginning with method chaining and now it seems like users of more modern JS frameworks are rediscovering this with ES6 lol
@Dyras.
@Dyras. 4 ай бұрын
an alternate title can be - "Overly Complicated Iterator , without using iterators"
@blu12gaming44
@blu12gaming44 4 ай бұрын
TBH Functional Programming is very much a means of carrying over principles from analog data processing (such as control theory and analog computing) into the world of digital computing. Filter design, block diagrams & transfer functions, feedback & feedforward, hysteresis, etc. are all from the world that existed before digital took off.
@ximono
@ximono 4 ай бұрын
Good point. Explains why Gary Sussman prefers languages with a lisp.
@angeldude101
@angeldude101 3 ай бұрын
There are actually multiple hardware description languages, used to describe circuits to imprint on a silicon die or an ASIC, that are based on functional programming or simply are functional programming languages. More traditional HDLs like Verilog and VHDL are almost _weirdly_ imperative for something intended to model essentially a pipeline of gates and circuits wired directly into other gates and circuits.
@isaacwolf2806
@isaacwolf2806 4 ай бұрын
Last 1m 30s of the video was phenomenal. Loved the music and overarching summary.
@igor28lg
@igor28lg 4 ай бұрын
Just wanted to say, your videos are AWESOME! Keep up the good work, mate!
@codeinger1
@codeinger1 3 ай бұрын
These animations are absolutely incredible! What software are you using to create them?
@BlackPenguins17
@BlackPenguins17 5 күн бұрын
He uses a python script.
@nicholasfinch4087
@nicholasfinch4087 4 ай бұрын
That segue to a "sponsor" was brilliantly done 🤣
@yrds96
@yrds96 4 ай бұрын
Great video as always. I'm not a F bro, but in my classes, sometimes using map, filter, take, pipe etc.. makes my code simpler than write pure imperative code. In the next video, what about data oriented programming, it would be great seeing you explaining about some of the most famous DOD pattern, Entity Component System
@user-jw9fi4hl1c
@user-jw9fi4hl1c 4 ай бұрын
Thank you for sharing this inspiring video, it really helps me to understand FP more deeply.
@h.hristov
@h.hristov 4 ай бұрын
The song name in the outro music is called: Novembers - Just Ripe (Album is called Pour Me a Cup of That) I don't like the idea of paywalling the song names fam
@DigiiFox
@DigiiFox 3 ай бұрын
Thanks. I'm trying to find the first song he used. No idea why it's behind a paywall on his patreon when it's not even his music.
@h.hristov
@h.hristov 3 ай бұрын
@@DigiiFox Just shazam it brother
@KaseCami
@KaseCami 4 ай бұрын
Excellent video, I would also have talked about fold/reduce.
@jfdirienzo
@jfdirienzo 4 ай бұрын
This chanel is just pure pure gold ❤️ I have exactly the same opinion about functional bros but I almost came to a point I felt bad mutating a state even though it made the code do the right thing in a clear and readable way. This video spackled joy in my heart :)
@fagnersales532
@fagnersales532 4 ай бұрын
I MISSED YOU SO MUCH!!! REVISITED YOUR CHANNEL AT LEAST TWICE A WEEK! SO GLAD TO SEE A NEW VIDEO 😢❤
@JVimes
@JVimes 4 ай бұрын
Certain things have many excited proponents that can't explain "why it's good" to anyone but each other. (Like, in my opinion: IOC, DI frameworks, fluent syntax.) I find most of these aren't worth using in pure form most of the time. However, my takeaway from functional programming class was that I felt extremely certain how my program behaves. After I got over the big mind flip! It's data processing didn't stick in my mind.
@MagicGonads
@MagicGonads 4 ай бұрын
fluents are kinda crazy
@sullivan3503
@sullivan3503 4 ай бұрын
Is IOC just callbacks?
@lekretka
@lekretka 4 ай бұрын
You are basically using IOC when working with frameworks. Let's say you have a game engine. Basically you just put your code in custom class and implement a couple of callback methods eg. Init() and Tick() and these methods will be called by the framework itself. It's good because you shouldn't care about who is calling these methods, what is the right order and preconditions, framework just doing it for you. Why is it good? Because you can abstract yourself from some things and focus on your features, which is basically why people use frameworks. DI containers are essentialy a mechanism for constructing your objects and providing dependencies. You can sure do that manually in composition root, where you build all your objects in specific order so all constructors can receive valid dependencies, and objects that created internally have their dependencies too, so it gets quite tedious and not very productive. With DI framework you can just define that "Foo is provided for IFoo as singleton" or "Bar is provided for IBar as new instance each time". Then if you want to add new class, you just write its code as usual, list all dependencies in constructor, then you bind it in container and it will resolve automatically providing all dependencies for you. Want to add new dependency? Just add it to constructor and it will just work. Specifically in games if you want to create new object from factory, factory don't need to know all the dependencies required for an object, DI container can provide all the dependencies for you. Isn't that good?
@marusdod3685
@marusdod3685 3 ай бұрын
All of those patterns are FP in disguise. Inverson of control is just making use of higher order functions that call into your code. an interface is really just a record of closures. DI is the same as js modules, nothing new or exciting, it's just a workaround in pure OOP languages because they don't allow code outside of classes. fluent is just functors
@lekretka
@lekretka 3 ай бұрын
@@marusdod3685 by that logic your FP is literally procedural in disguise, because in the end it's all just data in memory and function pointers.
@thedoctor5478
@thedoctor5478 4 ай бұрын
If you're already writing a bunch of procedural code, and using all your language features, you should already be intuitively doing all this (If you've been coding long enough anyway). I've noticed that LLMs almost never give you functional code unless you're super specific in asking for it, and even then they will often mess up, and go back to managing state. This is because most people aren't optimizing, and so most the training data isn't optimized but I digress. The video was beautiful.
@SogMosee
@SogMosee 3 ай бұрын
what an interesting observation, dare I say ive noticed that shit too!
@TheMasonX23
@TheMasonX23 4 ай бұрын
I've absolutely loved LINQ in C# for years, but only after learning Rust and more about FP in general, and I realize now that it was the use of higher order functions and FP paradigms that I enjoy so much. Also, I was blown away be the realization that Tasks are monads that I've been using this whole time...
@iamdono
@iamdono 24 күн бұрын
i really liked the transition to the ad. nice vid! subbed!
@LetsGetIntoItMedia
@LetsGetIntoItMedia 4 ай бұрын
Functional bro here! Guilty as charged. You're totally right... The concepts aren't actually that complex (a Monad is basically something that has a map() and flatMap(), and you can arrive at the need for that with a few simple code examples), *but* the words can be used to gatekeep or show off your smartness Also, the focus is often elegance for elegance's sake, rather than usefulness, simplicity, composability, safety, testability, etc. Though it is, in a way, the elegant foundations in math that allow FP patterns to get so powerful Also, I do think there's value in the words. It would be extremely difficult for society to function if we never put labels on things... how could we ever succinctly talk about anything without terms for concepts? Learning the FP words are useful not because knowing definitions is useful, but because they help you see those patterns in a problem space and then go r you immediate strategies for breaking them down into smaller bits and solving them concisely
@daneparchmentjr
@daneparchmentjr 4 ай бұрын
@@user-tx4wj7qk4t Lol what a big non-response from you. Not only were you unnecessarily condescending, you never even addressed what he didn't understand about monads. You never addressed the elegance for elegance's sake argument, and then spent the rest of it inflating your own self-ego about being using functional programming. Then you all wonder why people don't take functional programming seriously. @LetsGetIntoItMedia I think the responder is a perfect example of why functional programming has a hard time making traction in comparison to oop when it comes to marketing it's benefits. A lof of of the folks trying to push it, spend way more time focusing on impractical simple examples that aren't of much help to anyone building applications, and seem to just use it as a way to flex how smart or clever they are.
@LetsGetIntoItMedia
@LetsGetIntoItMedia 4 ай бұрын
Hmm yeah, I had a lot of thoughts to that response (which I'm not seeing anymore here, but saw the notification). My take is that I actually agree with a lot of the points that person made, but just absolutely NOT the tone or extremity. I totally agree that engineers *should* be into math, as they are literally writing computer math. But people come from all sorts of backgrounds, and that doesn't necessarily include a love for math. It might just be a love for creating stuff from more of a design perspective, or just a plain need for a job. And that's good, because we get a variety of perspectives and experiences in the field. People often *don't* think of math as something enjoyable, or realize how much code is like math. That's not a problem, that's an *opportunity* to share a new wonderful perspective. I also agree that FP isn't as off-putting or "gatekeepy" as the stereotypes suggest, but that's because I'm a math nerd on the side. But fact of the matter is, it *is* a stereotype, which means many people think it is unapproachable, and therefore by definition it *is* unapproachable. If most people agree that a balloon is red, then it probably *is* red. There is jargon in OO as well, that's for sure. And jargon isn't a bad thing. It's a way to capture a whole concept in a single word. So if everyone agrees on its definition, it makes communication much quicker and more efficient. *But* that's why, when talking to people who don't know those words, you have to do a good job explaining them. The problem is, based on the general sentiment, that people *don't* do a good job explaining the jargon, which feels like gatekeeping. Also, re: my definition of a monad, of course it's simplified. There are monad laws and all that, but that's exactly the stuff that turns people off. The average person doesn't need to know the exact precise definition of a monad, just some practical examples of how they can help simplify problems. Whew... I wasn't sure if I wanted to respond to that message, but I decided to make my perspective known. There's an *opportunity* to make the community better by *proving those stereotypes wrong*
@janhetjoch
@janhetjoch 4 ай бұрын
Why didn't you start the function with `if(index >= receipts.length) return;` rather than having your whole function inside an if statement? You made an entire video about being a never nester! I expected better... otherwise great video as always tho, that one thing just really bugged
@thegoldenatlas753
@thegoldenatlas753 4 ай бұрын
Why he didn't just use a iterator for the whole thing ill never get. In rust all of this could've been array.iter().map().filter().sort() Done
@joelbarr1163
@joelbarr1163 4 ай бұрын
For recursion especially! If I ever write a recursive function I try my best to put the exit condition at the top (and about 100 comments warning any reader that it's a recursive function and works a bit differently 😅)
@Gregorius421
@Gregorius421 4 ай бұрын
Nesting and also prepending the accumulator list instead of appending was something FBros wouldn't do. But this doesn't affect the point of the video.
@VivekMChawla
@VivekMChawla 4 ай бұрын
Your videos are stunning! Thank you for making these!
@tomysshadow
@tomysshadow 4 ай бұрын
The initial example of replacing a for loop with a function reminds me very much of how I would split loops up in JavaScript if I had to do a setTimeout between each iteration. I wasn't aware that solution was "functional programming!"
@pratikchakravorty983
@pratikchakravorty983 4 ай бұрын
The man the myth the legend!
@frankhaugen
@frankhaugen 4 ай бұрын
I write C# in a functional style, mostly, but monads, functors etc. Aren't part of my daily vocabulary. If you want me to tell you what part of my code is what, I'm not able to do it 😂
@someonlinevideos
@someonlinevideos 3 ай бұрын
You’re explanation with visual of currying made it make sense to make. I literally sat there dumbfounded with how powerful that is. 8:39 REALLY, really great explanation and great video. Thank you.
@Sean_neaS
@Sean_neaS 4 ай бұрын
If you find the functional code difficult to trace through in your head, type annotations really help. If you add compile time type checking it becomes really robust and maintainable. Without that, it's easy to make mistakes and get confused. That's why they often go together. Something like this fictitious type annotation syntax: result: [{ receipt: float, transaction: float, total: float} ] = receipts.map(...
@Eagle3302PL
@Eagle3302PL 4 ай бұрын
Or just use a sane strongly typed language for FP, JavaScript FP is a bit of a meme. Many multi paradigm languages do it so much better e.g. Rust, Scala, Kotlin
@marusdod3685
@marusdod3685 3 ай бұрын
@@Eagle3302PL typescript has a much better typing system than all those languages combined
@sdblck
@sdblck 4 ай бұрын
As a person who is extremely repelled by functional programming at first glance, this video really helped me take a better look at it. Might try this programming paradigm with some of my projects.
@thegoldenatlas753
@thegoldenatlas753 4 ай бұрын
Definitely don't do it in JavaScript like he did. Its not a functional language and doesn't fully handle the paradim. Instead use a language like Rust, everything he did here can be condensed to nearly a single line.
@amaryllis0
@amaryllis0 4 ай бұрын
@@thegoldenatlas753 Why would you want to condense a bunch of distinct operations onto a single line? That's terrible code design
@thegoldenatlas753
@thegoldenatlas753 4 ай бұрын
@@amaryllis0 the point of FP is to show what your doing over all. Quickly at a glance you can see your filtering mapping and sorting an array of data. Spreading out across multiple lines gives no advantage and ends up just being messy and more likely to loose performance gains. For instance i have a project where a user can put in a phrase and it transcribes it to a fictional language All i do is User_Input.chars().filter(|c| c.is_ascii_alphabetic() || c.is_whitespace()).collect::().to_uppercase().split_whitespace() With this you can quickly and easily see I'm going through the characters removing anything not a space or english letter and then turning it into a string then uppercasing it and splitting it by into individual words. Its quick, clean, and concise in its purpose. And i can do all of that in a single statement.
@biochem6
@biochem6 4 ай бұрын
@@amaryllis0 Because nobody uses rust in production, mainly bc rust devs are awful
@ResonantFrequency
@ResonantFrequency 4 ай бұрын
Functional programming as an all encompassing paradigm just isn't useful but that is what is frequently marketed. The whole point of most applications is to produce side effects and a programming style that excludes them is obviously not going to get the job done. But as a preferential style it is incredibly useful. Rather than writing code with no side effects, having a goal of removing all unnecessary side effects can have a huge effect on increasing the stability and readability of your code. When you isolate and tuck away all of the stateless code in your program, the actual necessary and relevant state just falls out into a few places where a previously incomprehensible code base becomes much clearer and easy to maintain.
@raoulnair5885
@raoulnair5885 4 ай бұрын
Each masterpiece you craft unlocks doors to learning, inspiring minds to reach for their own artistry. Artful knowledge, skillfully shared, each video a masterpiece to learn from.
@xX_dash_Xx
@xX_dash_Xx 4 ай бұрын
doing tricks on it 💀
@turolretar
@turolretar 4 ай бұрын
was this written by ai
@juanreyes7867
@juanreyes7867 4 ай бұрын
Big Thanks, Awesome Content... I needed this kind of explanation, so now a lot of things make sense!!
@DaneJessen101
@DaneJessen101 4 ай бұрын
You do a really great job making your videos. Keep up the good work 👍
@johnlong9786
@johnlong9786 4 ай бұрын
Fantastic video! I love FP and dislike the F-Bro lingo as well. My gross oversimplification of FP to regular programmers has always come down to: 1. Write more pure functions. 2. Use more immutable variables. Nearly all the complexities of FP can be derived from making these two happen, yet MANY good, simple patterns in any language also stem from these.
@ntrgc89
@ntrgc89 3 ай бұрын
"functional programming bros are bad marketers" ... proceeds to rewrite a for loop as a recursive function
@charlietian4023
@charlietian4023 6 күн бұрын
Isn't that the point?
@ElizaberthUndEugen
@ElizaberthUndEugen Күн бұрын
@@charlietian4023 No. That is a basically a strawman. In FP one would use a higher level function that does the loop. Like `map`. One would not write it recursively. That is idiotic. Recursion is applied when a problem is naturally recursive. Like processing a tree-shaped data structure.
@charlietian4023
@charlietian4023 Күн бұрын
@@ElizaberthUndEugen I see, can you provide an example? So CA isn't the most familiar with FP either
@ElizaberthUndEugen
@ElizaberthUndEugen Күн бұрын
@@charlietian4023 he goes into `map` etc. in the last third of the video.
@charlietian4023
@charlietian4023 Күн бұрын
@@ElizaberthUndEugen I'm aware how map works, but could you provide an example of how that's used instead of iteration or recursion?
@ayushgun
@ayushgun Ай бұрын
Loved the visualizations! The elegance of the map/filter/reduce approach towards data pipelines is attractive, but I think it is still useful to consider the “good old” for loop - especially in performance oriented situations. The overhead from passing/calling predicates and performing additional loops can bite you when low latency is important. Though, often, there’s probably better places to optimize first. 😉
@taukakao
@taukakao 3 ай бұрын
I really enjoyed working with these functions in Angular. Mostly with rxjs though, which I find incredibly intuitive. Though I still used state everywhere, but I think just for the things that actually made sense.
@sudosai
@sudosai 4 ай бұрын
It's all fun and games until you have to deal with exceptions in your functional pipeline.😅 Btw really good video
@LetsGetIntoItMedia
@LetsGetIntoItMedia 4 ай бұрын
That's the next level of FP... it starts with pure functions and pipelines, but then introduces other types (like the scary "monad") which are off-putting words for simple concepts to solve this problem. But IMO they're worth it, because they really simplify error handling, and make it impossible to "forget" to handle errors. They bring errors into the normal flow of code, so you treat them with the care they require, rather than just slapping on some error handling after-the-fact
@alandosman5002
@alandosman5002 4 ай бұрын
Well It's still fun, Monads has a type which is called Either it's basically so useful to return errors, you either take return left or right, .map, filter, etc.. works on right and mapLeft, peekleft etc.. work on the left part :)
@catgirlQueer
@catgirlQueer 3 ай бұрын
what exceptions? errors are handled through a sum type, in Rust (which is not purely functional, but has arithmetic types with (imo) better names for some situations), this is done through Result, in haskell the standard is Either Left Right, if there's only one error case (like "the string you passed in is not a valid integer" for a parseInt) you can use Option / Maybe Type
@alandosman5002
@alandosman5002 3 ай бұрын
@@catgirlQueer you explained it, so that was what I was saying tho.
@SogMosee
@SogMosee 3 ай бұрын
@@LetsGetIntoItMedia does this mean that all functional pipelines must complete regardless of errors and depending on where the error occurred in the pipeline then you get a different error message / stacktrace at the end and then use an if statement to handle both success case and error case to do side effects? is that all this comes down to-the basic alternative to try catch / .then.catch?
@Cukes_
@Cukes_ 4 ай бұрын
One problem with functional programming, at least in Javascript, is that the performance overhead is quite large. Constantly making new arrays and objects significantly slows down the code. Mutating objects is just so much faster, which is unfortunate, because good functional programming is so fun to write and read!
@WillEhrendreich
@WillEhrendreich 4 ай бұрын
Which is why going for a language that has functional programming as a goal from the beginning is a huge advantage. Most of the overhead is mitigated by the compiler making the right decision in those cases. Like, in #fsharp, there are cases where the CLR restructures your code to be procedural imperative style, and gives you the perf benefits of that. I think Ocaml does it too.
@ethanchristensen7388
@ethanchristensen7388 4 ай бұрын
I primarily use javascript, but this is one of the reasons I really want to use Rust. You get to do functional iterators that don't have that overhead, and it allows for mutability too.
@rutabega306
@rutabega306 4 ай бұрын
Not large enough to matter
@zabsetu4964
@zabsetu4964 4 ай бұрын
Glad you're still posting! 😊
@Metruzanca
@Metruzanca 4 ай бұрын
If you're going to make such a good video on Functional programming, you gotta mention Iterators and Lazy evaluation. I'm not a functional bro, but I know they love those things. They're the reason why in javascript arr.filter().map().take()/reduce() is O(3n) and in rust its O(n). No, we're not dropping the constant here, if you get carried away with "functional style" in js, your app will really show its lack of iterators. For those unaware, iterators will basically turn our data pipeline on its head where instead of looping the array 3 times for each transformation, we're going to process 1 item at a time and apply all transformations sequentially on it. And this IMO is key for marketing someone to functional programming, because otherwise functional just looks like slower less optimized code. What's funny is that rust has iterators, but functional bros would get angry if you called rust a functional language. Some even get mad if you call Ocaml functional, since ocaml has for/while loops.
@Metruzanca
@Metruzanca 4 ай бұрын
btw, Ramdajs is a library that is well known for two things. 1. Functional style, lodash-like helper functions and 2. terrible performance, due to lack of iterators. So bad that it spawned another library that sold itself as "ramda but smaller and with better performance" and one of the core things they did to speed it up was add iterators (among other things).
@Holobrine
@Holobrine 4 ай бұрын
I love how Rust does it with iterators. It’s effectively a decorator pattern that results in an iterator that only does all the computations when you actually do the iteration. In this way, the collection is only iterated through once no matter how many operations you perform through it. You can map and filter and the rest several times and still only do one iteration through the collection to do all of that.
@Gregorius421
@Gregorius421 4 ай бұрын
This is how iterators are implemented in many languages.
@Finkelfunk
@Finkelfunk 4 ай бұрын
"I love how Rust does this! You see... *_proceeds to explain something literally every programming language under the sun has been doing for 20 years_* " True Rustacean moment
@Holobrine
@Holobrine 4 ай бұрын
@@Finkelfunk I don’t think Python and JS do it this way. Every map() and filter() call iterates through and returns a new list.
@Finkelfunk
@Finkelfunk 4 ай бұрын
@@Holobrine Yes, because Python and JavaScript are interpreted languages and lack compiler optimization to combine sets of operations for iterations.
@RickyRister
@RickyRister 4 ай бұрын
@@Holobrine ever since python 3, python's map() returns an iter
@greob
@greob 4 ай бұрын
Nice video! I suggest keeping the background music to a minimal volume level though, it's often way too loud.
@troghlem352
@troghlem352 4 ай бұрын
Adding some ducking could help. Keeping the music in to get the smooth ambiance and mood, but seamlessly reducing the volume by maybe 5/6 dB whenever the voice come in. That can easily be done with most simple gate plugins.
@macdoo99
@macdoo99 4 ай бұрын
lmao I always assumed functional programming was terrifying so hadn't looked into it further but it's just recursion and lambdas??? That's crazy. I'll have to look into it more. Thanks for the video!
@sachindraragul1094
@sachindraragul1094 4 ай бұрын
Ocaml is great in this segment. The most practical functional language with immutability as default and has option to have mutable state when needed
@Finkelfunk
@Finkelfunk 4 ай бұрын
Haskell bro and Lambda enjoyer here: I have to admit, we _seriously_ have a problem marketing such clean and cool programming. I once showed Haskell to a friend of mine, and he was super skeptical at first. By the time I got to infinite lists, lazy evaluation and the lack of conventional if-statements he was baffled how beautiful and simple code can look and feel while being so insanely complex. Our professor from our lectures on higher concepts of programming put it best when he said that you have 3 lines of code, they compile to an entire ego shooter, and once you try and understand the code you will fail for the first 4 hours, after that it's gonna make you cry because it's the most beautiful thing you've ever seen. Never in my time working with languages like C++ have I looked back onto code I wrote so many times and thought to myself: "Damn, that's really beautiful code you wrote up there". I _seriously_ recommend anybody to try out functional programming. The borrow checker is nice, but it can't prove mathematically that the code is side effect free, no matter how hard it might try.
@cloogshicer
@cloogshicer 4 ай бұрын
Maybe it's just me, but if I need 4 hours to understand 3 lines of code, those are not very good lines of code and I don't see any beauty in it. I don't understand the obsession with brevity.
@Finkelfunk
@Finkelfunk 4 ай бұрын
​@@cloogshicer The problem is not that they are brief for the sake of brevity. Obviously that was a bit sarcastic by him but at its core, he was very right. The beauty of functional code comes from it being so clever and thought out. It's not like some old 90s Java legacy code deep in the basement where you take 4 hours because you have no idea what the author even tried to do and the knowledge is lost to them and god alone. It's the way you approach a problem in an extremely smart and coherent way to condense it into such a simple expression that you first need to wrap your head around what is exactly happening under the hood. Why types line up, how functions play into one another. Those hypothetical 4 hours are mostly spent figuring why the solution works the way it does and how all those puzzle pieces click, not trying to understand the code. One upside of functional programming and lambda calculus in general is that mathematicians sure know how to make an intuitive notation readable once you know a few concepts. Practically anybody can read Haskell code (and far easier than C or Java mind you), but actually understanding _why_ certain aspects work is a whole other level. It's a lot like solving a Rubix cube, it's extremely simple to twist and turn but figuring out why a certain number of twists and turns give specific combinations is quite satisfying - and once you've solved it you appreciate its beauty. It's hard to pick a specific example here, but there is nothing quite like having an insanely precise and optimized approach to a problem which takes time to wrap your head around because the person who thought it up actually spent time and effort doing it.
@cloogshicer
@cloogshicer 4 ай бұрын
​@@Finkelfunk In my opinion, beautiful code is code that is easy to understand. Brevity and elegance, in my experience, doesn't serve understanding. I see code as mainly an educational tool for the next developer (or myself, in 6 months). And brevity/simplicity/elegance doesn't help with that. Otherwise, we wouldn't have textbooks, and physics students would only be handed the final equations (+ any definitions they're made up of) and left to figure out how everything works on their own. This is what functional programs are like to me.
@Finkelfunk
@Finkelfunk 4 ай бұрын
@@cloogshicer Let me reemphasize: The code itself is not the issue. It's not obfuscated bash syntax. Like I said, I am pretty sure you'd understand Haskell code with relative ease without ever having written a single line in that language, and you'd do so much easier than in C. It's sometimes even easier to read than Python code because the notation is descriptive and simple like you'd be used to in mathematics. The code is a clear stream of functions, a into b into c into d. The syntax is very clear and descriptive, functions like "dropWhile" or "splitOn" are not exactly hard to grasp. The beauty and complexity comes because of the way people start to think about problem solving once you stop declaring 15 helper variables and push data from a into b and back. It's a different way to approach a problem which makes the solutions much more compact and efficient. As people have elegantly put it here: You are much more easily able to reason about the code, because what you see is what you get. In C this is simply not possible because of all the noise surrounding the code. You start to think way more about the flow and shape of your data and how to manipulate it in effective but concise ways. That's the beauty of FP and I seriously recommend you give it a serious go. It will only serve to make you a better programmer in the long run.
@cloogshicer
@cloogshicer 4 ай бұрын
​@@Finkelfunk I've written some Elm and Haskell and let me tell you, it is not easy for me personally at all. I find imperative code much easier to understand. Especially recursion is very difficult for me. And I have over 10 years of dev experience in other languages. You say that "what you see is what you get" but what I feel like a lot of FP-affine people keep forgetting is that for each function definition, you need to understand all the definitions it's composed of, and so on, recursively. For simple problems this isn't an issue, and sometimes you can skip entire parts of the tree, but most of the time you can't.
@guray00
@guray00 4 ай бұрын
How do you make this animations? Are awesome! 🚀🚀
@element1111
@element1111 4 ай бұрын
he coded the svgs by hand
@IngwiePhoenix
@IngwiePhoenix Ай бұрын
Great animations, very nice pace to listehn to and read with (even me with my visual impairment using a screen magnifier) and good humor. Thanks, subbed. This is exactly what I need on my off-days. ^_^ Yknow, the days where you .filter() out the work-thoughts, .map() your time to things you like to do and .take() the most important ones off a .slice() of time. :)
@davidyoung623
@davidyoung623 4 ай бұрын
This is probably the best explanation of filter and map that I've ever seen.
@Misteribel
@Misteribel 4 ай бұрын
"There shall be no state" Enter: State Monad 😂 Btw: many functional languages have an imperative-looking way of using, applying, binding functions, which makes this not as unreadable as you make it look here. In fact, functional code is generally much easier to read than imperative or OO code, as without side effect, what you see is what you get. You can reason about code, which is much, much harder with mutable state, where you never know what can happen, as any part of your program can change the state.
@LetsGetIntoItMedia
@LetsGetIntoItMedia 4 ай бұрын
Well said! I'm admittedly a big FP nerd. Sounds like you might be interested in my series! For many applications, the mental shift has been really great. I've been able to "reason about code", as you say, in ways I really couldn't before
@PeriOfTheGee
@PeriOfTheGee 4 ай бұрын
Are we not gonna talk about how much memory allocations are happening in the higher order functions you created? I think its quite important that when creating such functions, you need to design the data structures that go with them to make sure you dont "copy over the whole array on each iteration".
@doBobro
@doBobro 4 ай бұрын
array.concat is a real 99% hog here.
@joe-skeen
@joe-skeen Ай бұрын
Your statement at 14:30 is so true! And yet, the more engineers I work with, the more I find lack the skill of building a basic data pipeline, instead pushing harder on the clever verbose error prone algorithm approach.
@Richard-sp3ul
@Richard-sp3ul 4 ай бұрын
Awesome video. Everytime I see a functional solution using map, filter etc I want to do it over imperative.
@amigalemming
@amigalemming 4 ай бұрын
Situation is currently this one: Programmers control a database via the non-functional language SQL which is translated by the database system into an operator tree, i.e. a functional program, for optimization. The database is programmed in an imperative language which the compiler translates to a functional internal register language for optimization. The result of the optimizer is written to imperative assembly language code. The CPU analyzes data dependencies and reorders instructions accordingly, that is, it would also benefit from a functional machine language. Summarized: Functional programming already reached world dominance but at all occurrences it is pretended that imperative programming would be the normal way of programming, would be machine oriented and efficient.
@velvetdarkness7888
@velvetdarkness7888 4 ай бұрын
Functional bro here. That's probably my favourite "very beginner functional stuff video" now. I had ~10y of Dart+JS+TS before turning into (Pure) Functional Bro writing stuff in Haskell. Most of the videos about functional programming, at some point, make me think "this guy doesn't know shite and talks nonsense". However this is video is nearly perfect in this regard. However the video only covers only tip of the iceberg. Lambdas and map/filter/reduce are pretty much everywhere. Some languages are even getting algebraic datatypes (just calling them differently). Some languages actually have stuff that are almost monads tho hardcoded for specific cases (Promises and nullable types, yeah). These are cool and all but it's all a bit of shoehorning - functional paradigm works poorly in essentially imperative languages the deeper you go with functional stuff. Syntax is a bit awkward because there is no proper function composition or currying. You have to be careful with performance because in absence of purity and lazy computations you'll can end up reallocation same array bajillion times. You can bork the stack because you don't have TCO or it's not guaranteed to kick in. In the end it's almost only syntax sugar with awkward syntax at the end. Unfortunately most mainstream languages won't ever get the coolest parts of the iceberg like referential transparancy, advanced typesystems and stuff that depends on that. Just because you have to design the language for it from the beginning. What I'm trying to say, I guess, is: don't judge functional programming and functional bros (except the snobby smug ones - judge them to hell) right away for "impractical math nonsense" from your essentially imperative language point of view. F bros are using totally different language.
@mincedpear
@mincedpear 2 ай бұрын
An ad that said “this app will change your life” came right after the “you will help fight back against credit card fraud one lawsuit at a time”, just beautiful
@SuperCamelFunTime
@SuperCamelFunTime 4 ай бұрын
Your presentation style is second to none.
@KX36
@KX36 4 ай бұрын
replace loops with recursion... because why use a built in CPU register designed for loop counters when you can instead abuse the stack pointer.
@randomizednamme
@randomizednamme 4 ай бұрын
Writing spaghetti imperative code to save 50 microseconds on your page load time. There is a time and place for every style of programming.
@KX36
@KX36 4 ай бұрын
@@randomizednamme ?? loops are spaghetti code ??
@randomizednamme
@randomizednamme 4 ай бұрын
@@KX36 they can be if you’re trying to optimize heavily or as the programs complexity grows. My point is the difference is so small that it won’t be a performance problem for most programs and you should choose the more maintainable option.
@Finkelfunk
@Finkelfunk 4 ай бұрын
You can rest easy knowing that you wouldn't even begin to comprehend the amount of batshit certified insane optimization that is generally done in a functional programming language's compiler.
@ScaryHutmanPictures
@ScaryHutmanPictures 4 ай бұрын
Did you just use JavaScript for a functional programming video?
@evandrofilipe1526
@evandrofilipe1526 4 ай бұрын
Scandalous
@williamrutherford553
@williamrutherford553 4 ай бұрын
I love functional programming, and using Haskell really opened my mind to completely different paradigms that I've taken to other languages. But sometimes, it's just not that good at solving particular problems effectively. Coding something like Huffman Encoding in Haskell is a super cool coding exercise, but if you try to apply THAT knowledge to another language you'll be on a wild goose chase to reach a way less optimal result. It's cool that any turing complete program can be converted to lambda calculus, but that doesn't mean much in the real world when our computers are built as complex turing machines instead of lambda calculus machines.
@teagancollyer
@teagancollyer Ай бұрын
The introduction of the Black Sky promo was a really good transition
Premature Optimization
12:39
CodeAesthetic
Рет қаралды 738 М.
5 Signs of an Inexperienced Self-Taught Developer (and how to fix)
8:40
Спаси её волосы🙏🏻
00:40
БРУНО
Рет қаралды 1,9 МЛН
Não pode Comprar Tudo 5
00:29
DUDU e CAROL
Рет қаралды 69 МЛН
Don't Write Comments | Prime Reacts
14:31
ThePrimeTime
Рет қаралды 193 М.
The purest coding style, where bugs are near impossible
10:25
Coderized
Рет қаралды 796 М.
Every CSS Animation property
9:26
chunkydotdev
Рет қаралды 33 М.
Dependency Injection, The Best Pattern
13:16
CodeAesthetic
Рет қаралды 703 М.
The Unreasonable Effectiveness Of Plain Text
14:37
No Boilerplate
Рет қаралды 563 М.
I re-coded Minecraft, purely for MAXIMUM FPS (World Record)
11:26
Don't Write Comments
5:55
CodeAesthetic
Рет қаралды 750 М.
I Optimised My Game Engine Up To 12000 FPS
11:58
Vercidium
Рет қаралды 405 М.
Why You Shouldn't Nest Your Code
8:30
CodeAesthetic
Рет қаралды 2,5 МЛН
Never install locally
5:45
Coderized
Рет қаралды 1,5 МЛН
Спаси её волосы🙏🏻
00:40
БРУНО
Рет қаралды 1,9 МЛН