No video

The purest coding style, where bugs are near impossible

  Рет қаралды 956,825

Coderized

Coderized

Күн бұрын

Пікірлер: 1 000
@petrie911
@petrie911 11 ай бұрын
Bugs are nearly impossible? You underestimate my power.
@hari4406
@hari4406 3 ай бұрын
The full saying is "never underestimate the power of stupidity"
@clickonce9050
@clickonce9050 3 ай бұрын
I think the proper response is, "Impossible, Here, hold my beer."
@rongarza9488
@rongarza9488 2 ай бұрын
@@hari4406 OR “A common mistake that people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools.” ― Douglas Adams, Mostly Harmless (source GoodReads)
@kinghosty
@kinghosty 2 ай бұрын
@@hari4406 ahaha
@darrell857
@darrell857 29 күн бұрын
Total BS clickbait claim, pure functional doesn't exist in practice because as soon as you interface with the operating system there is I/O and side effects. "functional style" is what is used in practice and does not have any of these guarantees.
@savege-l2737
@savege-l2737 11 ай бұрын
The animation is amazing
@NotHumanPerson
@NotHumanPerson 11 ай бұрын
So true
@revimfadli4666
@revimfadli4666 11 ай бұрын
IKR? The Doodley of programming. Even the chill voice is similar
@vaisakhkm783
@vaisakhkm783 11 ай бұрын
Which software are you using Transitions look awesome 😍
@MandosaWright
@MandosaWright 11 ай бұрын
Damn, I love the Buster Sword with materia 😂
@CoClock
@CoClock 11 ай бұрын
Simply amazing
@asdfghyter
@asdfghyter 11 ай бұрын
i think one of the largest benefits of pure functional programming is that the referential transparency allows you to use equational reasoning on your code to _easily_ see which programs are equivalent, which makes refactoring almost trivial. it’s a lot less stressful to know that you can move things around however much you want without worrying about anything changing behind your back
@darrennew8211
@darrennew8211 11 ай бұрын
In contrast, when you want to refactor things, you might wind up having to change a whole bunch of things that are unrelated to the actual change, especially if your domain isn't something you could consider functional. Imagine a highly complex set of calculations about some business you're supporting, and now Marketing wants you to (say) change how long customer responses take way down at the bottom of the stack depending on how much money the customer spent last month. Now you have to pass that data through every level down to the bottom where you need it, and in every place you call that bottom function of deciding how long something will take. The alternative is to pass around an entire blob of everything about the customer, just in case you need some of it for a specific calculation somewhere, at which point you still have to find all references to it as well as handle returning new values back up the stack when you change it. Doing a functional approach to an OO problem makes refactoring as hard as doing a simulating an OO approach in the middle of functional code.
@asdfghyter
@asdfghyter 11 ай бұрын
@@darrennew8211 it is sufficient to have a single data type that you pass around, you don’t need to populate it with everything you might possibly need, since adding more things to it only requires changing the place its constructed and the type definition. if you really need it to be globally changed immediately from deep in a branch (it’s probably a design issue but) you can always just put in a mutable reference for that specific value (and thus breaking purity). yes, it’s an annoying refactor to make, but it’s mechanical and you can just follow what the compiler tells you and be confident that it’s still working as expected this is not an issue i encounter regularly though, what is the context where you have ran into it when writing FP code? if you use the standard pattern of Elm code for example, what you’re mentioning is a complete non-issue, since there all state goes through a global function and you can just add the extra state you need at the appropriate location and it will be propagated along as needed by the code you have already written
@darrennew8211
@darrennew8211 11 ай бұрын
@@asdfghyter I think adding all widely-distributed state to a global structure for an entire multi-million-loc program would probably be problematic without better support. I've never had the pleasure of working on a megaline program in a purely functional language, but my brain has problems dealing with pure functional once it gets above about five thousand lines. It sounds like you're basically saying "pass a pointer to the entire memory of the program around, and you can fix the problems with functional programming." :-)
@asdfghyter
@asdfghyter 11 ай бұрын
​@@darrennew8211 the idea of elm-style loop is that you have a tree structure with state that is relevant to different parts of the program, then when you enter a part of the program, you extract that part. you can also have some data that is relevant to all of the program. in order to change components of the state that is not yours, you return a message that tells the main loop to update that data. another solution that introduces some more impurity is to use erlang-style message passing between components. that way each component is still internally pure, but they can send messages to each other and get mutable state that way. Anyways, the thing you are describing sounds to me like it would be a problem even in OO languages, since you still need some way to have a reference to some way to find the data you need. How would you solve it in an OO-way? It's probably possible to solve it in a similar way for FP programs.
@darrennew8211
@darrennew8211 11 ай бұрын
@@beowulf_of_wall_st My point is that if you have a routine that you suddenly need to have access to something to calculate a result that you never needed access to before, you might have to find all the places you call that thing and pass the new required information down the stack. Doubly-sucks if you suddenly need something like access to a database in a function you call from lots of places. That was always my problem with FP - you wind up with one seemingly simple change ("account for X in the calculation for Y") that requires changing dozens of places in the code. Using FP where OOP or procedural (or ECS or whatever) is more appropriate leads to those kinds of problems, IME. I'll grant that I haven't had a whole lot of experience in that, nor have I worked with people who have had a whole lot of experience in that.
@arthasmenethil5748
@arthasmenethil5748 11 ай бұрын
3blues1brown meets fireship. Amazing animation that clearly communicates your message. I wish you made courses ESPECIALLY low level courses. You would be an awesome teacher
@legendariersgaming
@legendariersgaming 11 ай бұрын
Also reminds me a bit of scruffy
@yaroslavkolyada6914
@yaroslavkolyada6914 11 ай бұрын
Wow this describes my perception of this video so well. Amazing content!
@shakerlakes
@shakerlakes 11 ай бұрын
Both 3blues1brown and fireship are excellent teachers and presenters. Fireship is like a human google AI summary of relevant subjects. How that guy is able to digest so many subjects is amazing.
@mepipe7705
@mepipe7705 10 ай бұрын
But in the fireship that I know there is much more sarcasm
@natecaine7473
@natecaine7473 8 ай бұрын
Sorry, I can't agree. 3blue1brown's animations graphically illustrate complex relationships and make seemingly invisible patterns comprehensible. (Even if Grant does use those "Pi" characters; they are stand-ins for *us* . They are confused or perplexed by or questioning things that *we* should be confused by....and that Grant is about to explain.) I didn't get any of that from Coderized's "coding style" video. I don't know much about this topic and I didn't come away having learned anything. This is more a *review* video for those that already *know* these styles and differences, and might need a refresher, or see them brought together in one place. So maybe it succeeds at that. I would prefer some actual code examples shown side-by-side that illustrate how each approach (or language) handles an important feature, and then the examples dissected to show the pros and cons of each approach. (Other commenters made this same point, and there *are* videos out there that do just that.) Instead (and this is all too common) the animations here are little more than "eye-candy" to fill the screen during the narration. At times you could close your eyes and not miss anything, because this is no real information on the screen. At about 1:50 he does show something technical, and I had my hopes up. But then it's soon back to cutesy and meaningless animations that contribute nothing as he confusingly discussed closures. (And the proof of that is that he later went back and re-edit the video with additional material to try and fill in the gaps.) With Grant's videos (3Blue1brown), I almost always want to know more about the topic, and am inspired to seek further. Often I am so captivated that I wind up binge watching more of his videos. Here, with Coderized, I feel cheated that the video is over and I didn't learn anything. I *am* inspired to learn more about this topic, just not via this channel.
@macwas5900
@macwas5900 11 ай бұрын
The animation is so clear, I love how it enhances your explanation. Thank you for this! Hoping to see more
@coderized
@coderized 11 ай бұрын
Functional programming is a powerful paradigm in the programming world, where strict rules are applied in order to reduce bugs to a point where, in many common cases, they are almost impossible to write. It doesn't come without some difficulties though, and so this video aims to explain very simply, the concepts that underline the two main functional paradigms.
@sherlockmaverick
@sherlockmaverick 11 ай бұрын
Yeah, it stopped playing midway for me, haha! Thanks for everything you're doing, I'm learning a lot from your work!
@hiteshjoshi2736
@hiteshjoshi2736 11 ай бұрын
Pin this comment xD
@ProBarokis
@ProBarokis 11 ай бұрын
I was hoping that you will explain monads in this version. Was disappointed. Well... maybe it's too hard to explain them in one short segment.
@Citrus_-ff7qf
@Citrus_-ff7qf 11 ай бұрын
it's completely worth watching the video over and over cus it's that good
@coderized
@coderized 11 ай бұрын
@@ProBarokis Monads would need their own video I think
@sufilevy
@sufilevy 11 ай бұрын
I never thought I would say this about a programming video, but this video is just... beautiful.
@coderized
@coderized 11 ай бұрын
Appreciated 💜
@RobloxPrompt
@RobloxPrompt 4 ай бұрын
I think this is very interesting. Cause while making an adder you try your best to derive logic from binary inputs such as 0b1 for example then 0b10. You want to combine those inputs in an and gate to get 0b11 for individual bits. So then you start creating an equation to explain what each logic gate could be doing. And you can use that example as 0b1+0b1==0b10 or 0b1 and 0b1 == 0b10. With xor gates you simply have the even numbers and 0 and you can think of it as a Table or index in which the bits have to equate to. Which is why you create if and then functions. Making it a more declarative type of mathematical language. Just it uses symbols for the if and then functions. Which means you could also do ⟹ [{|0b1|}] to represent then true. Meaning if the function is true then it outputs 0b1. It also uses lim(n) as a function since setting the limit would be important for 8 bit input counters or adders. Think of it as similar to boolean algebra but with if and then statements and a limit function to have a limit bit integer. It's also structured so that the bit's are represented clearly and so that only with the prefix 0b it can indicate as binary. Anything with |n| would mean the exact value of n. n multiplied by 1 being defined as 1 or 0. or {|n(1)|} := {|1|,|0|}. Since it would be multiplied by a factor of 1. But if multiplied by a factor of 2 and so on then its {(|0b10| ∨ |2|), (|0b1| ∨ |1|), (|0b0| ∨ |0|)} Which would be (n+n'...). Why n+n' Well simply because that signifies the addition between the two binary numbers. And you use if functions to basically check if n equals a certain number whether its decimal or binary and then if the number equals each individual number of a table then the result should be true. This would work for both xor and xnor. But if you want to do xor then just do n%2=={}
@Wilzzub0b
@Wilzzub0b 11 ай бұрын
I love these videos! The slow pace, beautiful animations and how you compare these really complex subjects to our everyday objects makes it so much more clear to me!
@ZILtoid1991
@ZILtoid1991 11 ай бұрын
Here's the best part about programming paradigms: Unless you're in a really bad enterprise situation where you're forced to use only one, then you can mix and match them. Functional programming is pretty useful, but there are times, when the side effects are needed, such as in game development, digital signal processing, etc. D supports multiple programming paradigms, and thus that's my main preferred programming language.
@coderized
@coderized 11 ай бұрын
I 💜 multi-paradigm languages. Always nice to be able to use the right tool for the job
@ericpmoss
@ericpmoss 11 ай бұрын
Yes -- the same reason I like Common Lisp, give or take a few questionable macros that seem to be popular.
@darrennew8211
@darrennew8211 11 ай бұрын
You sometimes lose a lot of the benefits of some paradigms by doing that, though. If you can return closures from methods inside objects that refer to instance variables, you lose some of the encapsulation. If you have a functional language where you can return a writable pointer to data, you lose the referential transparency. Stuff like that. Sort of like how an unsafe language lets you screw up *anyone's* code, not just yours.
@ontheruntonowhere
@ontheruntonowhere 11 ай бұрын
@@concernedcitizen3254 It's not about being fashionable. It's about understanding that the current state of the art is far from its pinnacle and we're slouching iteratively towards Bethlehem with each paradigm shift. We've been coding for maybe 100 years...where will we be in 100 more? 1000? 10,000?
@imaadhaq540
@imaadhaq540 11 ай бұрын
There are ways to solve the issues of needing to create side effects for game development without sacrificing the benefits of immutability and declarative programming. Take ECS, where every time the world is analyzed/queried in a system, it's like it takes a "snapshot" of it's current state, with everything about it only being readable/immutable. If you want to modify an entity's component, you can mutate the world by replacing that component with a modified, still immutable one, but it still will not affect the "snapshot" until the next time you query. Because systems always run in a set order, the mutations one system makes will never interrupt the task of another system in unpredictable ways
@ItsMingee
@ItsMingee 11 ай бұрын
Wow, great video! I left a comment on your other video and it's impressive to see how fast you iterated on it. Thanks so much for the work you do. My feedback on this is that since functional is a difficult topic that handles a lot of abstract ideas (with some abstractions on top of the abstractions), even if the explanation is logical and concise it doesn't necessarily reduce the difficulty in understanding it. One still has to keep a lot of these abstract concepts in their head. This was amplified since the video touched on many various topics (memoization, declarative/imperative, side effect, closure, etc.) in a relatively short video. The animations you used were beautiful and I loved to look at them. But in a lot of ways they didn't actually help me understand the topic any better, even in cases where they were used to represent abstract ideas. Contrast this with 3B1B (I know that's a high bar haha) where most of the animations he uses actually enhances the viewer's understanding of the topic at hand (and then is a little cute in the down time). Take 5:48 for example. While the diamond represents the abstraction of an expensive operation, the content doesn't actually visually represent that efficiency (i.e. processing an expensive operation multiple times) which forces you to hold that in your head kind of abstractly as you process the rest of the video. Another example is in the filter/sort/map around the 4:00 mark. The animations are beautiful and they do make sense. But more so if you already know what they do! The subtlety, speed, and singular nature of those animations make it less useful to someone who isn't already familiar with the topic at hand. Again this is all because I love the content that you make and I will continue to watch regardless haha. So it's not critical, just my two cents. Thank you for making content!
@liam_iam
@liam_iam 11 ай бұрын
I think this is good feedback. I liked the visuals and tone but it unfortunately didn't help me take away any insight that I can apply to my own work. Maybe that's unfair as it might not have been the intention of the video. But I really would have liked to see the same concepts covered through a more problem-based learning approach. "Here's a scenario where non-functional code is problematic, and here's how you can apply these functional concepts to write better code". Great work though, just can be pushed further imo :)
@yewo.m
@yewo.m 11 ай бұрын
5:17 - Fun fact, before JavaScript classes were introduced, people just used functions as classes or object constructors. The function would return a plain object, onto which you would assign functions which you wanted to be the object's methods. Any data or "methods" which you wanted to simulate as private properties and methods would not be returned on the plain object but simply created inside the scope of the function
@wileysneak
@wileysneak 11 ай бұрын
although this was/is a valid pattern, it may be important to note that js has always been based on the prototype model, classes are mostly sugar around the same proto model. e.g. rather than write a function that statically returns new closures (costing memory because scope), you'd write a prototype object then construct that instead. search 'prototype mdn' for more info
@darrennew8211
@darrennew8211 11 ай бұрын
That's called "Prototype OOP".
@BlazingMagpie
@BlazingMagpie 11 ай бұрын
@@darrennew8211 Creating objects in closure isn't prototype OOP. Prototype OOP is attaching another actual object to search for properties in if they don't exist in initial object.
@darrennew8211
@darrennew8211 11 ай бұрын
@@BlazingMagpie That's prototype inheritance. But sure, it can get kind of fuzzy around the edges, given the number of different ways to do encapsulation, instantiation, and inheritance.
@CyCloNeReactorCore
@CyCloNeReactorCore 11 ай бұрын
i kinda still do this
@superblaubeere27
@superblaubeere27 10 ай бұрын
Ok, I still miss the part where he tells us why he thinks that functional makes bugs near impossible
@amazeinggames
@amazeinggames 5 ай бұрын
Well, every paradigm can have good or bad code; you can never have a *bugless* paradigm or bugless language (the bug is created by the user, afterall). The title is just meant to be sensational
@KevinArellano
@KevinArellano 5 ай бұрын
As long as you code in dark mode, it wont attract any bugs.
@powertomato
@powertomato 5 ай бұрын
Short version: Because if the entire code is stateless and immutable, then the entire code can be represented by mathematical functions which then can be used to compare against the specs and to even automatically prove properties. Long version: Say you have to implement a traffic light, and need to prove that at under no circumstance, two perpendicular lights will both signal a green light. In imperative programming QA and testing are the state of the art approach. But those are probabilistic: unless you have a testcase for each and every possible input, for each and every possible program state, tests are only evidence but never a full proof. Even if you just have two 64bit input variables, that means having 2^128 (~3.4e38) testcases for a full proof. This problem is known as "state space explosion". In order to reduce it you need to involve semantics definitions of the programming language and because of side effects those can get pretty nasty pretty fast. In functional programming you can just prove each function individually, since there are no side effects. So all you need to do is show that the traffic-light output function is not capable of showing green lights for two perpendicular lights for a range of inputs. Then you show the arguments are indeed in that range, by showing the previous function's output is in that range. Rinse and repeat until you're left with constants and user input. It's just so counter-intuitive to think functional. In the famous cooking recipe analogy to an algorithm, it would be as describing cooked spaghetti as a series of transformations on raw noodles and water: Functional: cook_spaghetti( spaghetti, add_salt( boil(water) ) ) Imperative: 1. take water 2. boil water 3. add salt 4. add spaghetti 5. cook spaghetti IMO the imperative list of commands is just so quick to write and cheap to develop that it's hard to justify higher development cost. Unless you're sending stuff to space or write safety critical software, tests will do just fine and will be much cheaper. However there are some uses outside that space: when you're dealing with lots of concurrent events, handling everything in imperative event handlers is a nightmare to maintain. Observables ala Reactive UI have been a godsend in that regard.
@oscarfriberg7661
@oscarfriberg7661 4 ай бұрын
@@powertomato It’s not really about proving that the programs are correct. No one got the time to write formal proofs. It’s just that stateless programs are in general easier to reason about. You don’t have to worry about which order you call X() and Y(). If you can call both, then both are safe to use. When programming with states there’s a risk calling Y() before X() cause trouble, because the programmer didn’t consider this possibility. Suddenly you need to reason about which order things are done. But this is just one type of bug. Stateless programs are still subject to other types of bugs.
@GreatTaiwan
@GreatTaiwan Ай бұрын
@@oscarfriberg7661 " But this is just one type of bug. Stateless programs are still subject to other types of bugs. " per example ?
@chawker67
@chawker67 11 ай бұрын
I can't even imagine how much work you put into this video... It's so beautiful and smart it's a form of art at this point.
@victor-ling
@victor-ling 11 ай бұрын
I absolutely love how you expressed a con of functional programming as "Tricky for Imperative Programmers" ... this is perfect. I have been doing functional programming professionally for over a decade now. So many times I come across comparison videos that get this part confused and end up only saying that functional programming is "tricky" or "hard to read" ... but that is just their imperative bias coming through unchecked. We aren't born with the intuitive understanding of how a for loop works, we have to learn it ... and everyone learning programming learns it very early ... but we can't take for granted that learning still occurred. When people come across a map function your first instinct is that it's more confusing and harder to read than a simple for loop ... but this isn't a fundamental fact, it's just that you've been using a for loop for so much longer you just aren't used to using and seeing the map function. Once you are used to higher order functions like map, you may start to find them incredibly elegant (I do) and then start to prefer them. So thank you for getting this part right where so many other videos have failed!
@coderized
@coderized 11 ай бұрын
Thanks! This was really nice to read
@samuraijosh1595
@samuraijosh1595 11 ай бұрын
bruh let's be real. most imperative programmers arent going to have that hard of a time figuring out how map works. functional code can get really function-nested or transformation-nested and thats what trips people off. if you want to design an optimised functional style model of something, you have to plan ahead of the right transformations your input data should go through to give you the desired output and mastering that isnt just a matter of lack of familiarity with functional paradigm. it's genuinely objectively harder for normies to wrap their head around.
@DryBones111
@DryBones111 11 ай бұрын
@@samuraijosh1595 That's because most people do a terrible job at domain modelling in their current paradigm too. Less of a functional programming problem, and more of a poor design problem.
@epgui
@epgui 9 ай бұрын
The hardest part about learning FP is unlearning the imperative paradigm. People confuse simplicity and familiarity all the time, and it significantly hinders progress.
@amigalemming
@amigalemming 9 ай бұрын
An excellent FORTRAN programmer is in every programming language an excellent ... FORTRAN programmer.
@TimothyWhiteheadzm
@TimothyWhiteheadzm 11 ай бұрын
In my experience pure functions are not significantly more bug free. Most bugs I experience are: 1. incorrect interpretation of requirements 2. careless coding 3. issues with data being passed from one part of the program to another or one system to another. 4. UI related unexpected behavior. 5. a misunderstanding of the language/framework being used. In the code, whether the function is 'pure' or takes in mutable arguments has very little effect on how many bugs may occur in that function and pure functions may in some instance be much harder to work with and understand thus creating more bugs which is why most of us do not particularly try to use pure functions even when it is possible to do so. Functional programming can have an edge when you do full unit testing and need highly reliable software where each function is analyzed for correctness but that type of code is actually quite rare in the real world.
@darrennew8211
@darrennew8211 11 ай бұрын
It tends to work best when your problem domain is function. Something like a SQL interpreter (where the results are committed at the end) or a compiler or a sorting algorithm or something like that. If you're doing something intrinsically mutable (game engine) it's much less feasible and helpful, because as you say most of the errors made by people experienced enough to be using functional programming are logic errors.
@darrennew8211
@darrennew8211 11 ай бұрын
@@aaronfleisher4694 I disagree that logic bugs are always careless coding. Sometimes they're just mistakes. Sometimes they're just situations your users tried that you didn't think of and break your code.
@darrennew8211
@darrennew8211 11 ай бұрын
@@user-tx4wj7qk4t I disagree with your list of common bugs. Those are "common bugs that are pretty trivial to find the cause for." IME, any time the code base gets bigger than one person can keep in their head, the most common errors are 1) logic errors, 2) people who didn't know the requirements (whether coders or customers), 3) misunderstanding how libraries or frameworks you rely on work. 90% of what you say is right, but it's specific to a certain kind of program and a certain size of program.
@TimothyWhiteheadzm
@TimothyWhiteheadzm 11 ай бұрын
@@user-tx4wj7qk4t I think you are generalizing too much. The software development space is large and the problems in on type of development are vastly different from those in another type of development. The issues in an OS project vs a website are vastly different. You mention null reference exceptions for example. When I code in Rust, I never ever get those because you can't. In JavaScript or Java it is certainly possible by in my experience relatively rare in Java and when it occurs in JavaScript it tends to be due to unexpected data entering the function not because of whether or not the parameters are mutable. I stand by my point that in my own line of work purely functional programming would not only be impossible but where it is possible it would make very little difference to the number of bugs I deal with because the vast majority of them have to do with issues of requirements, carelessness, communications between systems etc. We generally don't do unit testing for this reason because end to end testing is far more effective at picking up the bugs that actually occur. But in other types of development the experience will be very different. As mentioned I also have some work in Rust and the types of bugs are very different but still almost always intersystem or requirements related. Most of my Rust work however involves either new development or updating the code to handle updated dependencies. With Rust, my experience is that once it compiles it usually works and any changes will be due to new requirements not bugs.
@darrennew8211
@darrennew8211 11 ай бұрын
@@user-tx4wj7qk4t Yes. It's entirely possible for something to be common but trivial. You know what's even more common and even more trivial, in exactly the same way? Misspelling a keyword, or leaving out a closing brace. Null reference exceptions are no longer a billion dollar mistake now that we have memory protection on computers. I disagree that the reduced cognitive load of FP would necessarily reduce the number of logical errors. A logical error is when you write code that you think is correct but it isn't. Making it easier to write correct code won't make you think the solution is better. I think people who are used to writing smaller simpler programs have a different idea of the distribution of bugs compared to someone writing large complex interacting long-lived systems.
@HoloTheDrunk
@HoloTheDrunk 11 ай бұрын
Ah yes, time for monthly self-gratifying medium-length video about a subject I already know about
@melissaprice1424
@melissaprice1424 11 ай бұрын
Perfectly clearly explained if you are talking to an audience who already knows the information. Totally useless to a beginner.
@vaisakhkm783
@vaisakhkm783 11 ай бұрын
​@@melissaprice1424 it's best for people like me ... where i have written few haskel and ocaml by never learned much deep
@kennyt1m403
@kennyt1m403 11 ай бұрын
​@@melissaprice1424I could not say that it's totally useless since it introduced me to the different paradigms in one of the visuals as a beginner but I have to admit that most of the stuff goes in one ear and out to the other
@NoahNobody
@NoahNobody 11 ай бұрын
What the heck! Those neat animations really combined with those succinct explanations really helped me understand concepts I've had trouble understanding.
@dijoxx
@dijoxx 5 ай бұрын
The animations are beautiful as others said, but this is probably not the best way to explain all the concepts and the benefits they offer. I am very experienced in functional programming but these descriptions look a bit rushed, too theoretical and confusing. Just my two cents.
@ulrikof.2486
@ulrikof.2486 2 ай бұрын
I totally agree.
@BigOlKnothead
@BigOlKnothead Ай бұрын
Teach myself to code, and I've watched video after video about functional programming. And this is the first one of them I've watched that I understand, so I mean, there's that.
@baconheadhair6938
@baconheadhair6938 12 күн бұрын
@@BigOlKnotheadHi im baconheadhair
@BigOlKnothead
@BigOlKnothead 12 күн бұрын
@@baconheadhair6938 okay? im Knothead. What's good?
@Rafael4
@Rafael4 11 ай бұрын
Thank you for the dedication in keeping the videos with high quality!
@teeesen
@teeesen 11 ай бұрын
I loved the Room 101 joke. On another topic. We have a bad habit in computing to use the same word for different concepts. Often we use the same word for a static entity and a dynamic entity. And I think this can be very confusing to learners. Some example are “variable”, “scope”, and “function”. I’m thoroughly guilty of this myself, although I’m trying to do it less. When I try to teach this topic, I find it useful to distinguish between function definitions and function values. Closures are just function values. The idea that a single function definition can give rise to different function values at different times takes some time for programmers to understand when they first encounter it. Anyway, great video; please keep it up.
@Rainfires
@Rainfires 11 ай бұрын
I appreciate this very much! It’s a great way of thinking about the paradigm and how we should think while using it, but it does lead to some misconceptions about things like its performance and storage aspects. For the languages themselves, there’s some funky stuff that actually goes on underneath the abstraction layer we think on. The craziest example I have is how some languages don’t completely create new versions of data, but structure references in a way that enables very very fast equality checking for structures as nested as you want. So, some underlying data structures stuff ends up being faster than it’s non-functional brethren despite suggesting the intuition (coming from a procedural mindset) that it should be slower.
@samuraijosh1595
@samuraijosh1595 11 ай бұрын
can you give an actualy example of this instead of making a vague point that tries to assuage the bad reputation functional style has in terms of its performance?
@Rainfires
@Rainfires 11 ай бұрын
@@samuraijosh1595 Gosh, sure! It’s going to be a struggle. A handful of functional programming talks do bring this up and mention it in passing, but it’s not the easiest to google search transcripts of KZbin videos. I’ll see what I can dig up from my memory and I hope I can satisfy your question. Typing out a response on my phone is tricky. One would be Richard Feldman’s talk “outperforming imperative with pure functional” describing some work he’s doing on a newer language. A handful of Clojure talks mention this when introducing the language as a core for how they perform equality checks. There’s one by Mohit Thatte called “What Lies Beneath - A Deep Dive Into Clojure’s Data Structures”. And, I could have sworn there’s a talk by David Nolan where he’s doing a beginner’s talk for CLJS where he mentions the data structures in passing. I’m sure there’s other examples, but, simply, (some) functional language designers do not simply slap immutable structure primatives into their languages without thought or the recognition that there are performance hurdles. There’s tricks that go on under the hood that are intentionally hidden or at least abstracted from thought while you utilize it with the general immutable paradigm!
@wety789
@wety789 11 ай бұрын
That monad joke was amazing 😂. Great video and great animation, looking forward to more videos from you in the future!
@Daniel_Zhu_a6f
@Daniel_Zhu_a6f 11 ай бұрын
nah, it's tired. monad is just an interface of 3 functions. the real torture is haskell syntax.
@Sebastian-hg3xc
@Sebastian-hg3xc 11 ай бұрын
It actually harms the video because it brings up an irrelevant concept that most viewers won't know about and thereby get confused by why it's brought up in the first place.
@Outfrost
@Outfrost 8 ай бұрын
No actual mention of how, supposedly, "bugs are near impossible", because of course that's not true, and not even a characteristic of the functional paradigm.
@prof_glue
@prof_glue 4 ай бұрын
It's definitely for the youtube algorithm/to get more attention. Apparently the original video title was "what the func()"
@maran.ath4
@maran.ath4 3 ай бұрын
​@@prof_glue🤣🤣🤣🤣🤣🤣🤣🤣I'm adding that to my vocab bucket ...what the func()
@kressckerl
@kressckerl 3 ай бұрын
I accidentally clicked the video again because there's a new title and thumbnail
@Misteribel
@Misteribel 2 ай бұрын
You may have forgotten to watch the video? He mentions immutability and the absence of side effects, the two most common causes of any bug. Though he could have added absence of null, referential transparency and equivalence too.
@maran.ath4
@maran.ath4 2 ай бұрын
@@Misteribel no way you just said mutability and side effects are the two most common causes of bugs.... We still have logic errors, incorrect assumptions, improper handling of edge cases, unexpected interactions between components, and MOREEE.... immutability Nd the elimination of side effects will just reduce "specific" bug types that are related to side effects and mutability, but to say that those are the most common causes of bugs...come on now...OP is still right, that statement of it making bugs nearly impossible is simply not true and not even a characteristic of the functional paradigm
@lasindunuwanga5292
@lasindunuwanga5292 11 ай бұрын
I think u have put a great effort in creating the animations. It is a great work and the explanations using these graphics are also very clear. Thanks ❤
@babylonsjukan
@babylonsjukan 11 ай бұрын
I'm B L O W N by the animation, it is like watching art in its purest form while learning a ton. 👏
@parablesboltnoel
@parablesboltnoel 10 ай бұрын
Care to share your secret... would love to make such illustrated videos for my students in class
@snelbops
@snelbops 9 ай бұрын
Great animations, would love to know how too 😊
@ogbillity
@ogbillity 5 ай бұрын
I believe he is using Adobe After Effects
@Deathkyun
@Deathkyun 11 ай бұрын
Just started training at a company that primarily uses Scala, and it's actually been a pretty interesting experience getting a handle at a new style of programming.
@Bobbobbob984
@Bobbobbob984 11 ай бұрын
Do you think there are actually less bugs?
@Deathkyun
@Deathkyun 11 ай бұрын
@ashaw596 If you're using pure functions, the compiler detects a lot of the stuff for you that would otherwise get cought at runtime. So from my, albeit short, experience yeah it seems as advertised.
@Deathkyun
@Deathkyun 11 ай бұрын
​@@user-tx4wj7qk4t Thankfully the company provided us with the latest edition of the book. Having to go through all of it and provide output in 3 weeks was quite the challenge, but we pulled through. We're getting engrossed with the frameworks that support it now.
@SimGunther
@SimGunther 11 ай бұрын
7:11 The infamous Monad was recognized in Homological Algebra after the original term "standard construction" was used for it, but before it was officially a "monad" in category theory back in 1967. The etymology of the original term "triad" gives a crucial hint for what the monad is. First, since every function should take in one and only one parameter and return one and only one value, we need a rule set that is surjective to map B -> C. Enter the context! This world context C has access to the value B and carries rules, such as lazy invocations of the runtime to write/read file content, if one wants to manipulate the context passed around from one function to another. Secondly, we must have an injective function mapping A -> B. Luckily, any pure function will do the trick, but if you wanted to, you could use a function that is monadic as well. The reason that division is monadic in nature is due to division by zero cannot a defined result; thus we say this case returns Nothing while everything else creates Just the divided value. We commonly say that the IO monad is a more specific form of the state monad because it has more specific rules about the kind of state we're manipulating and how it changes. It's not like we can represent Tree Monads as IO Monads since it'd be silly to have tree rules used to manipulate file sockets. But if we wanted to use the value in the Tree Monad in an IO Monad, one must implement a way to extract a value from the Tree Monad. This may not be guaranteed in every monad like the Maybe Monad, but it's something to think about when designing your own monads. That's why Monads are called "triples" or "triads" in category theory. Because it stands for the three components of this specific structure: the input, the output value, and the world containing rules to manipulate itself (thus why monads are endofunctors) and the output value itself. The more you know 🌈
@coderized
@coderized 11 ай бұрын
I learned a lot from this, thanks!
@clamhammer2463
@clamhammer2463 6 ай бұрын
So, I took the time to learn quaternions. Doesn't that exempt me from learning monads?
@SimGunther
@SimGunther 6 ай бұрын
@@clamhammer2463 While useful as a way to look at a 3D rotation in a 4D perspective, you were better off just learning 3D rotors as a Marc ten Bosch article explains. On the other hand, if you're in a code base already inundated in quaternions, you're good to go there. Might as well just learn linear types and effect systems if you only care to have effects from a straight forward perspective.
@clamhammer2463
@clamhammer2463 6 ай бұрын
@@SimGunther this was mostly a joke but I was required to learn it in order to encode the pitch/yaw/roll of a spaceshuttle to easily do the math with an easier data structure. After looking into monads and learning what they are and what they are for, I'll realistically never reach in that pocket of my toolbag again.
@SimGunther
@SimGunther 6 ай бұрын
@@clamhammer2463 Glad to hear about that experience with quarternions! Also, that impracticality and unwieldy nature of Monads beyond the super mathy world is exactly why I mentioned linear types and effect systems if that's the itch you need to scratch in a functional language.
@WarrenMarshallBiz
@WarrenMarshallBiz 10 ай бұрын
"where bugs are near impossible" Challenge accepted.
@th34lch3m1st
@th34lch3m1st 11 ай бұрын
Great content. If all programming courses were as focused on the main concepts as in these videos, without getting lost in details and syntax (ceremonies, as Venkat Subramaniam would call them), becoming a programmer would be a breeze. Instant subscription for me.
@torarinvik4920
@torarinvik4920 11 ай бұрын
Good video, but OO is neither Imperative or Declarative. Procedural is opposite of OO, and Imperative is opposite of declarative. So a language can be both pure OO and pure FP at the same time. For this to happen functions and all other values needs to be objects, objects need to be immutable, and there can be no side-effects. Inheritance doesn't break the FP purity either. I know of no such language to date though.
@xwtek3505
@xwtek3505 7 ай бұрын
It's actually rather easy to make bugs in even pure functional program. There is a paradigm where bugs are nearly impossible, though. It's the dependently typed paradigm, which is a subset of pure functional paradigm. In a nutshell, a dependently typed language allows a function to return a value of different type depending on the input *value* (not type, that's just generics), and the type is enforced at compile time. This is very useful because you can now encode proof and contract that ensures that the program works as intended. Essentially a statically typed contract oriented programming that you can reason about manually
@thedofflin
@thedofflin 9 ай бұрын
I finally understand what a closure is, I swear I've banged my head up against FP so many times because I couldn't get my head around closures. Thank you for your short, simple and clear explanation.
@joseph0x45
@joseph0x45 11 ай бұрын
your video titled "Never install locally" forever changed the way I work. Thank you for making these. And also, I like your voice very much :))
@coderized
@coderized 11 ай бұрын
Really nice to hear, thank you!
@bmansk8520
@bmansk8520 11 ай бұрын
I have been coding in javascript mostly and recently got into C# and typescript. Coming from javascript (specifically react) I was totally on board with functional coding. Then moving to TS and C# I found out about the wonder that is classes, and OO programming. Now I'm finding myself mixing the two, and this video was a awesome look at something I thought I already knew a lot about. I didn't even know there was a thing as "pure functions". Awesome quality, and I definitely learned something.
@coderized
@coderized 11 ай бұрын
Thanks man! Glad you enjoyed it. Yeah, to embrace a mix of the different paradigms is probably the best way to go! :)
@dvikauglaumishrauca
@dvikauglaumishrauca 11 ай бұрын
Beautifully explained funational programming basics through animation. Code samples and more on monads would be fun too.
@sdjhgfkshfswdfhskljh3360
@sdjhgfkshfswdfhskljh3360 11 ай бұрын
Finally, unbiased review. I'm tired of people believing that I *must* use functional languages.
@DomainObject
@DomainObject 11 ай бұрын
No one is saying you *must*. But you definitely *should*.
@maskettaman1488
@maskettaman1488 11 ай бұрын
No one with a job is telling you to use functional languages
@bluedark7724
@bluedark7724 11 ай бұрын
Functional has its uses, a pure functional program doesn't do anything, as everything that matters to humans needs side effects. Coding languages support or do not support functional paradigms. C# is focused on OOP, where Rust is more focused on other styles.
@kirkkork
@kirkkork 11 ай бұрын
How is this animation so good!? Damn good job.
@raffimolero64
@raffimolero64 11 ай бұрын
there's a saying in the haskell community: "You should be able to figure out what a function does from just reading the function signature." half of the work is just the function signatures. a lot of the work is upfront so bugs in functional code are called "bad function signatures" and "type errors", both compile time concepts that never make it to production. -mostly because there are like 2 haskell users in production.- refactoring is guaranteed to be correct in the end, but you may have to churn through a whole chain of other function signatures if you forget to make something a monad, for example. i am *not* speaking from experience, just what i've heard around.
@coderized
@coderized 11 ай бұрын
Great comment!
@mskiptr
@mskiptr 11 ай бұрын
Sounds about right. Tho unless you go into theorem-proving territory, you will often have multiple possible functions for any given type. (still, most of them will be obviously incorrect, so it's definitely harder to mess up)
@rodrigofschaer
@rodrigofschaer 2 ай бұрын
Never thought I would get cozy consuming functional programming related content Beautiful, purely beautiful. So purely beautiful it would never need a monad or other filthy thing. Congratulations on the video and the effort put in the animations.
@coderized
@coderized 2 ай бұрын
Thank you!
@dontthrow6064
@dontthrow6064 11 ай бұрын
7:10 - for a moment I thought, what could be so wrong. Then I heard monads and started crying uncontrollably. My friend asked me what's wrong, when I told him "monads", he started crying too.
@execute214
@execute214 11 ай бұрын
mmm.. video... 24/10 does anyone else feel deja vu?
@coderized
@coderized 11 ай бұрын
Yeah 😅 - I uploaded this a few days ago but took it down shortly after to fix some issues and add in some clearer explanations. It has quite a few changes since the last one!
@CrazyAssDrumma
@CrazyAssDrumma 11 ай бұрын
This is a great intro, I'd love for you to dive deeper and show some real world problems being solved by using oop vs functional, or imperative vs declarative etc :D Bonus points for comparing how to test each paradigm e.g. mocking nested functions etc in each paradigm
@ivandrofly
@ivandrofly 11 ай бұрын
Top animation... I've just been learning functional programming for a month, and this information is gold
@baranjan6969
@baranjan6969 2 ай бұрын
Technical videos are usually someone typing examples with a screen recorder, I don't hate that but this was really unique learning experience too. Thanks
@urban.p
@urban.p 11 ай бұрын
I have no idea what this functional programming is. Some real examples from programming languages would be really helpful.
@ekstrapolatoraproksymujacy412
@ekstrapolatoraproksymujacy412 11 ай бұрын
That's the point, no one really uses functional programming in the real world
@acopier
@acopier 8 сағат бұрын
@@ekstrapolatoraproksymujacy412 you would be surprised where functional languages are used
@TinusBruins
@TinusBruins 11 ай бұрын
A closure is just an instance of an anonymous class with a single method wrapped in syntactic sugar
@minhquangpham
@minhquangpham 11 ай бұрын
Haven't finished the vid yet, but looking at the animation and the effort you put into the vid, you earned my sub ;)
@afik1200
@afik1200 11 ай бұрын
What I don’t understand about closures are two things: 1) when (if ever) is the memory freed? Say f defines x in it and also returns g that uses x. You cannot free x in the end of f because you may call g later. So is it never freed? 2. If f returns set and get functions to some inner state variable. The set function has side effects that couples it to the get function, so why is it considered functional?
@atharvsankpal
@atharvsankpal 11 ай бұрын
Nice Video, amazing visualization
@JulianSloman
@JulianSloman 11 ай бұрын
Well animated, but not very informative, somehow... I guess it's targeted at complete beginners, so perhaps it would have been informative to me in the past. -- Would like a refresher on Monads though once you get around to it - but feel like at least explaining how side effects are handled in pure programming would have been sensible.
@Desi-qw9fc
@Desi-qw9fc 9 ай бұрын
As someone who writes in a functional language to make a living, the most important thing to remember about "bugs" is that the worst ones don't announce themselves; the program runs and produces output with no errors, but the output is wrong because the programmer has made a wrong assumption or misunderstood something about the input data.
@artxiom
@artxiom 2 ай бұрын
You guys are spoiled. I had memory corruption bugs that took me weeks(!) to find in C++. At least logic bugs in functional languages are quite easy to pinpoint.
@ChiragAgg5k
@ChiragAgg5k 11 ай бұрын
Those animations smooth af. Glad i found this channel
@ThatGuyFromThere1
@ThatGuyFromThere1 11 ай бұрын
03:37 "or woman's" - Bro didn't want to get cancelled Btw, nice animations and amazing explanation!
@SensSword
@SensSword 11 ай бұрын
Absolutely amazing animation. Well done.
@bluedark7724
@bluedark7724 11 ай бұрын
Pure Functional programming is only valid as a space heater, as every http call, every user's input , every mouse movement is a side effect, without side effect you don't have productivity software or video games.
@alaacherif2165
@alaacherif2165 11 ай бұрын
Idk how you're not at 1 mil subs yet but you deserve it
@rismosch
@rismosch 11 ай бұрын
Thinking functional programming doesn't lead to bugs is something a naive programmer with zero experience would claim. Programming languages like Rust may claim safe memory management, but it doesn't prevent you from making logical errors, for example doing the wrong mathematical operation or writing incorrect data to a file. And especially when you are working with other libraries (including std), you are working on trust that this library doesn't produce bugs. But I encurage you to simply go to the source repository of your library of choice and you will find an issue list which is filled to the brim.
@gigachad8810
@gigachad8810 11 ай бұрын
1. Rust doesn't "claim" memory safety. 2. Some types of errors can indeed be solved by different (types of) languages. For example, data races are probably pretty rare in functional languages. 3. Std bugs are "relatively" rare and are mostly related to platform specific behaviour. For rust 0.7% of the issues on github affect std. But I do agree with the fact that a lot of bugs are logic related. Most important bugs are not though. (looking at you, 70% of chromiums high severity security bugs)
@artxiom
@artxiom 2 ай бұрын
I don't think anyone thinks that. It just leads to significantly less bugs because it completely removes several types of bugs (so does Rust) - and for everyone who writes real world software this is a huge advantage.
@malkitsingh01
@malkitsingh01 11 ай бұрын
Appreciate the high quality work and the efforts that you have put in making this video ❤
@salzlord
@salzlord 11 ай бұрын
This is what I love to do. Sometimes when I’m bored and have nothing else to do I download some github stuff and just improve it as much as I can. This can be really simple stuff or really hard stuff (which tbh I mostly give up on)
@JoshPaulie
@JoshPaulie 11 ай бұрын
Your mograph is cracked. Very high production!! Subscribed
@lucaspinto9114
@lucaspinto9114 11 ай бұрын
This might be the most didactic and beautiful video about programming that I ever saw. I am a med student but I want so much to learning coding! Thank you for this wonderful work!❤
@pauljackson3491
@pauljackson3491 11 ай бұрын
I'm going to have to be the downer and say I don't understand it. Mainly because there aren't examples. If I was programming in C how would I do it? Maybe I am using closures all the time and don't know it.
@DocSineBell
@DocSineBell 10 ай бұрын
I just love how resilient is FP code to bugs. I'm trying to use it in the core parts of my codes because you know you can really trust for them to just work. I also love its strong modular nature. It makes so easy to change the code behavior.
@pm1783
@pm1783 11 ай бұрын
Ok, even though bug-free software is impossible you got me curious with the title of this video. I’m glad you added the “nearly” caveat though lol… However, I had to hit the pause button just a few minutes in at 3:18 because you’re already violating tenets of safe, clean & bug-limiting software engineering. If someone is reading this comment and you happen to be a new developer just starting out your career, please please please remember this: always strive for code that is easily & quickly understood, is cleanly written regardless of the paradigm, has helpful & appropriate comments, is unit tested, validates all external input, and gracefully handles errors. Even if you never write anything like safety-critical code that is a lot more restrictive & stringent, following those straightforward items I just listed will take you very far. Don’t be clever - be clear.
@hiteshjoshi2736
@hiteshjoshi2736 11 ай бұрын
For some reason i remember watching this same video few days ago and yet it was uploaded 30 mins ago
@bonk2935
@bonk2935 11 ай бұрын
He re-uploaded it
@coderized
@coderized 11 ай бұрын
I took the original down shortly after to fix some issues and add in some clearer examples - hopefully it's better explained now.
@rafazak7303
@rafazak7303 5 ай бұрын
The video was great. But it only ensured me to keep as far from functional programming as possible. Maybe its good for students to broad their perspective but I can't imagine any large real life system architected in this paradigm.
@Antanimbus
@Antanimbus 3 ай бұрын
I've been learning CS for 2 weeks now, which means that I probably didn't understand much of this video. But I sensed that it was clear and important. Saved it for later. Animation is amazing!
@Holakraai
@Holakraai 10 ай бұрын
Very good introduction to the paradigm. I once came along an article about the essence of functional programming. It focuses around the principle of "composition". Essentially what functional programming tries to accomplish is enforce the use of monovariadic (single parameter) functions, so that they become simple mappings from A->B, which is also in line with the philosophy of evaluation > execution and referential transparency: the ability to replace such a function with a value, and the code would still work, which supports memoization once more. And by being mappings from an input to an output, you can isolate them, test them and debug them. This is the reason why in my opinion "bugs are near impossible". Currying through closures is a way to create at once a chain of monovariadic functions, that can be evaluate at the end of the chain - Haskell implements currying as its primary function definition by design. This ensures high compatability. And more importantly it is easier to reason in terms of simple A->B mappings, which leads to category theory, where the big evil "Monad" comes from, which is just the big brother of the monoid (Array.concat) and the cousin of the functor (map(a => b)). Essentially just wrapping an entire context around a value, providing a way to wrap any new (naked) value into this context, and allowing to chain multiple functions together so that their contexts can interact (or merge) while returning the value "unwrapped". Again: Composition! This is incredibily useful to implement side-effects in a pure way. Instead of a central state that can be accessed by everything. A monad just carries that state with it and exposes just what is needed when evaluated, encapsulation done right. It allows for incredibly cool design patterns, which unfortunately do not mix well with other paradigms. Simple explaination: As soon as you introduce variable state, you lose the ability of absolute composability. You tie your logic to the order of execution. I think it depends for what target we write code: Humans (Functional might seem unintuitive, but once understood can unleash higher levels of expression. Focusing on clarity and sound reasoning), Computers (Procedural, that is just how the processor works, least overhead). OOP is something wedged inbetween the two (allures you with its intuitive concepts of objects, but down the line just becomes a jambled up mess). I really hope they find a way to make functional programming more performant...
@sy-py
@sy-py 11 ай бұрын
Can't have bugs if your code doesn't do anything :)
@Brootahlizer
@Brootahlizer 11 ай бұрын
Your animations are excellent - which software do you use to make them?
@brawnie3969
@brawnie3969 Ай бұрын
Good video, I liked how you explained everything and the animations :D
@br3nto
@br3nto 5 ай бұрын
3:32 I’m glad you mentioned “a closure is a poor man’s objects”. It’s often overlooked in these types of vids that instance methods are closures over the instance variables. Objects are just a convenient way to group multiple closures together which all operate on the same scope. And like higher order functions, objects can be returned from functions. I think a good parallel is functional vs object programming is similar to the distinction between deterministic vs non-determinist finite automata.
@santherstat
@santherstat 11 ай бұрын
very beautifully made video. as a beginning programmer, I really appreciate the way you explain things
@christopherstage9814
@christopherstage9814 11 ай бұрын
I really enjoying the pacing and visual representation of the functional programming concept in this presentation. Cheers to you for this approach in explaining it. I’ll have this as resource to use in my dev team’s ever evolving philosophical discussions on writing gud kode. 😄
@dreamingacacia
@dreamingacacia 11 ай бұрын
It's funny when an amatuer like me which only understood the basic algorithms and basic OOP ended up with the functional paradigm without knowing what's better for performances. It's just the ease of management and readable codes that drew me in. If I understand correctly the ground rules would be 1.dynamic variables must take from input 2.private variables in functions must be constant. So you could say good bye to nearly all the bugs in the world. Though I already used these rules from the get go, since I never study something fabulous that people like to use. Btw I called the functional paradigm as modular programming, it's because I'm self-taught and came up with it by working experiences.
@stiggrindland
@stiggrindland 5 ай бұрын
Such incredible production level on your videos, dude. The quality, awesome work 🤜🤛
@tharunkanna1401
@tharunkanna1401 11 ай бұрын
Love the animation, great content. Expecting a lot more of computational theory from you.
@naman_dw
@naman_dw 11 ай бұрын
Which software do you use to create these amazing animations?
@frittex
@frittex 11 ай бұрын
The visuals and the explanations are AMAZING
@IterativeTheoryRocks
@IterativeTheoryRocks 3 ай бұрын
I remember using a strongly-typed pure functional language… it was a nightmare to get anything past the compiler! But when you did, it never had bugs. Instead of coding quickly then spending ages bug fixing, you would spend ages coding and hardly any time bug fixing. And, as a bonus, it was sometimes possible to mathematically prove your code was correct.
@AidenElliott-ff2vt
@AidenElliott-ff2vt 9 ай бұрын
My personal favourite is OOP. The flexibilty, the encapsulation, it all fits together so perfectly. Each to their own, obviously, but in my mind, OOP just works.
@EdouardTavinor
@EdouardTavinor 7 ай бұрын
well, until you add concurrency. then oop would work fine, if every object was in its own light-weight thread and communicated through message passing. unfortunately i'm not aware of an oo language that works this way.
@sloan00
@sloan00 11 ай бұрын
Your videos almost look like digital art. Great job.
@jannsander
@jannsander 11 ай бұрын
Wow, your animations are top notch wich makes is dangerously convenient to ignore the awesome script and just get carried away by your really nice presentation stile... I watched the video twice, now i got it
@FrazerKirkman
@FrazerKirkman 11 ай бұрын
Thanks for explaining how closures can be like objects.
@LunizIsGlacey
@LunizIsGlacey 11 ай бұрын
What did you use to animate this? It's so beautiful and clear!
@dilian08
@dilian08 11 ай бұрын
While the animation is great, it needs more coding examples. The previous and this videos are a bit too abstract to not have examples. For example, how a closure would actually be passed into other functions. Or even a comparison of code written in OOP and functional programming
@coderized
@coderized 11 ай бұрын
That's not really the goal of this channel. I'll do simple code comparisons and high level concepts but there are other channels and resources for more detailed learning. I can only cover so much and the point is to give people a basic understanding, enough to want to learn more on their own.
@Danyruddy7
@Danyruddy7 5 ай бұрын
I want to say that many things that I took for granted by years were confirmed with the animations. I now understand better what's happening behind the scenes in programming. Thank you!!!
@snk-js
@snk-js 11 ай бұрын
man you nail it on animation and communication altogether
@min11benja
@min11benja 11 ай бұрын
I love the animations, do you use after effects?
@coderized
@coderized 11 ай бұрын
Yup
@saudzubedi
@saudzubedi 8 ай бұрын
Keep making videos pls. There are KZbinrs like you who has the best content but don't upload or upload once in like 6 months
@tom_stephen
@tom_stephen 11 ай бұрын
Honestly, this is so good that now I want to know whole tree, "paradigm X in 10 minutes". I haven't felt such joy watching something since I've discovered Fireship, and those animations are so smooth :D I still can't fully grasp what functional programming is, but I feel like I'm a bit closer, haha
@coderized
@coderized 11 ай бұрын
Thanks this is a really nice comment 💜
@be_cracked8212
@be_cracked8212 11 ай бұрын
You have really outdone yourself with the animations on this one
@baksonyan4ik
@baksonyan4ik 11 ай бұрын
uooooghhh seeeeggs, another dose of very understandable and good information
@feyntmistral1110
@feyntmistral1110 11 ай бұрын
What I've never gotten is why people seem to think that functional programming is in some way incompatible with object oriented programming. Classes with functional code are just as powerful and still offer you the ability to group related data under one object. It's like people think that just because you're using objects, every method in an object must only reference objects and thus be non-deterministic with lots of referential checking to ensure you're not doing null operations. No, you make member variables inaccessible from the outside, wrap them in accessor functions, and you've got functions you can pass to other functions now. Do your null checking in the accessors and you've got the simplest functions you can write so you know they're bug free, but just in case you can very easily write tests for every function of a class.
@artxiom
@artxiom 2 ай бұрын
It's not but also OOP is way less useful or necessary in functional programming. I feel it's actually more limiting, most of the time you have functions working with a multitude of data and then why put it in class A over B or C, ...? Also you are tight coupling state to functions. Modules are way more useful for grouping related functionalities and data imo, because they don't introduce any coupling - it's just a logical structure, not a functional one.
@adenzu
@adenzu 11 ай бұрын
it was a breath watching a video with a peaceful voice and no music in the background
@John-ul6rt
@John-ul6rt 11 ай бұрын
This was a really good watch, thanks!
@kpodp0ra
@kpodp0ra 11 ай бұрын
As a person, what learns by example; I find this video very confusing. Everything seems heavily theoretical to me, and I find it hard to translate the content of this video into some programming language.
@ekstrapolatoraproksymujacy412
@ekstrapolatoraproksymujacy412 11 ай бұрын
because it is a theoretical construct that in its pure form is useless in the real world
@ScrotoTBaggins
@ScrotoTBaggins 3 ай бұрын
I think there are plenty of videos out there showing examples. This type of video is a gem.
@sb_dunk
@sb_dunk 11 ай бұрын
I work with a guy that loves functional programming, and writes his apps in this way. I review his code often, and I can tell you that his code has as many bugs as anyone else's in my team.
@AlFredo-sx2yy
@AlFredo-sx2yy 11 ай бұрын
but but but muh functional magic thingirinos!!!111!1!!1!! wait, you mean to tell me that using a different programming paradigm doesnt actually magically prevent programmers from making logic mistakes in their code?? wow, who would have thought! Like, i love functional programming, but i have to agree with you, this video tries to make it look like magic and its not a good thing to sell false expectations to newcomers to programmers, specially when this type of videos are usually aimed at the kind of people who are most susceptible to believing the title without giving it any second thoughts.
@user-ll4dh6ly4h
@user-ll4dh6ly4h 11 ай бұрын
From concept to animation and the way you describe everything is on the spot a solid 10/10 🔥🔥🔥
@segganew
@segganew 6 ай бұрын
Monads are no the only way to encapsulate side effects. My favorite alternative is algebraic effects, which in my opinion are much readier to understand.
How principled coders outperform the competition
11:11
Coderized
Рет қаралды 1,6 МЛН
The Absolute Best Intro to Monads For Software Engineers
15:12
Studying With Alex
Рет қаралды 624 М.
Can This Bubble Save My Life? 😱
00:55
Topper Guild
Рет қаралды 87 МЛН
WILL IT BURST?
00:31
Natan por Aí
Рет қаралды 30 МЛН
女孩妒忌小丑女? #小丑#shorts
00:34
好人小丑
Рет қаралды 86 МЛН
Running With Bigger And Bigger Feastables
00:17
MrBeast
Рет қаралды 167 МЛН
10 weird algorithms
9:06
Fireship
Рет қаралды 1,2 МЛН
5 Signs of an Inexperienced Self-Taught Developer (and how to fix)
8:40
C++ Developer Learns Python
9:26
PolyMars
Рет қаралды 2,7 МЛН
How Senior Programmers ACTUALLY Write Code
13:37
Thriving Technologist
Рет қаралды 1,5 МЛН
Every programming language explained in 15 minutes | Prime Reacts
43:42
Why Rust is NOT a Passing Fad...
8:54
Travis Media
Рет қаралды 34 М.
Never install locally
5:45
Coderized
Рет қаралды 1,8 МЛН
Why You Shouldn't Nest Your Code
8:30
CodeAesthetic
Рет қаралды 2,7 МЛН
Every Developer Needs a Raspberry Pi
27:27
Sam Meech-Ward
Рет қаралды 441 М.
Can This Bubble Save My Life? 😱
00:55
Topper Guild
Рет қаралды 87 МЛН