When looking at Haskellers explaining parser combinators you may think its rocket science... yet this guy explains it so anyone can understand it... and this stuff is actually easy!
Chris is one of the modern legends of functional programming. Such a good communicator! Thanks Chris for the talk which inspired me to write my own PC. I then realised that a lot of systems programming could be reduced to a set of 'parsers' and combinators. Very powerful concept.
@@AndersJackson FP may look overly convoluted to someone not used to it, because higher order functions are not easy to reason with, at first. Anyway, one can also implement combinators in an imperative language. If one represents parsers as trees of parsers, one can combine parsers by combining those trees.
@@kiuhnmmnhuik2627 FP are easier to reason about, it is just that most common programming languages we introduce programming languages with are not FP. So it is all about what you are used to.
When looking at Haskellers explaining parser combinators you may think its rocket science... yet this guy explains it so anyone can understand it... and this stuff is actually easy!
Chris is one of the modern legends of functional programming. Such a good communicator! Thanks Chris for the talk which inspired me to write my own PC. I then realised that a lot of systems programming could be reduced to a set of 'parsers' and combinators. Very powerful concept.
Thats a great talk. loved it!
Thanks, it is very helpful
I didn't see how he ignores the whitespace between all the other stuff.
Thank you for explaining!
Sample code and explanation get A++ grade.
Very helpful. Thanks!
Awesome
at 21.0 good
Source code?
This is just overly convoluted recursive descent by a snowflake name. The only thing exceptional here is how smug your recursion is.
And this is an simple introduction to write that in a functional programming language. So what is the problem?
someone thinks they're smarter than everyone else...smh
@@seethruhead7119 everyone thinks they're smarter than anyone else
that is what humans do.
@@AndersJackson FP may look overly convoluted to someone not used to it, because higher order functions are not easy to reason with, at first. Anyway, one can also implement combinators in an imperative language. If one represents parsers as trees of parsers, one can combine parsers by combining those trees.
@@kiuhnmmnhuik2627 FP are easier to reason about, it is just that most common programming languages we introduce programming languages with are not FP.
So it is all about what you are used to.