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.
@Avantarius2 жыл бұрын
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!
@abhishes7 жыл бұрын
Thats a great talk. loved it!
@JohnDlugosz6 жыл бұрын
I didn't see how he ignores the whitespace between all the other stuff.
@cshung6 жыл бұрын
Thank you for explaining!
@wuzixiao14 ай бұрын
Thanks, it is very helpful
@AdvancedSoul6 жыл бұрын
Very helpful. Thanks!
@venkateswarans1012 Жыл бұрын
Source code?
@bikerd122 жыл бұрын
Sample code and explanation get A++ grade.
@worldboy96846 жыл бұрын
Awesome
@vram2883 ай бұрын
at 21.0 good
@MisterFanwank4 жыл бұрын
This is just overly convoluted recursive descent by a snowflake name. The only thing exceptional here is how smug your recursion is.
@AndersJackson3 жыл бұрын
And this is an simple introduction to write that in a functional programming language. So what is the problem?
@seethruhead71192 жыл бұрын
someone thinks they're smarter than everyone else...smh
@GeorgeTsiros2 жыл бұрын
@@seethruhead7119 everyone thinks they're smarter than anyone else that is what humans do.
@kiuhnmmnhuik2627 Жыл бұрын
@@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.
@AndersJackson Жыл бұрын
@@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.