mini-kep / kep-parser.hs

Rosstat time series parser in Haskell - makes a clean machine-readable CSV
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

applicative and monadic parsing links #2

Open epogrebnyak opened 5 years ago

epogrebnyak commented 5 years ago

-- EP: Here is where I start reading about applicative vs monadic parsers. -- https://habr.com/ru/post/436234/ -- https://stackoverflow.com/questions/7861903/what-are-the-benefits-of-applicative-parsing-over-monadic-parsing -- iffy-miffy (good!): https://stackoverflow.com/a/7042674/1758363

-- More to read: -- https://two-wrongs.com/parser-combinators-parsing-for-haskell-beginners.html -- https://habr.com/ru/post/50337/ -- https://www.futurelearn.com/courses/functional-programming-haskell/0/steps/27222

epogrebnyak commented 5 years ago

https://www.reddit.com/r/haskell/comments/46u45o/what_is_the_current_state_of_parser_libraries_in/

epogrebnyak commented 5 years ago

http://www.cs.nott.ac.uk/~pszgmh/pearl.pdf

epogrebnyak commented 5 years ago

-- https://stackoverflow.com/questions/20660782/writing-a-parser-from-scratch-in-haskell

epogrebnyak commented 5 years ago

https://eli.thegreenplace.net/2017/deciphering-haskells-applicative-and-monadic-parsers/

epogrebnyak commented 5 years ago

http://dev.stephendiehl.com/fun/002_parsers.html#nanoparsec and code https://github.com/sdiehl/write-you-a-haskell/blob/master/chapter3/parsec.hs

epogrebnyak commented 5 years ago

https://vaibhavsagar.com/blog/2018/02/04/revisiting-monadic-parsing-haskell/ and https://github.com/vaibhavsagar/notebooks/blob/master/revisiting-monadic-parsing-haskell/Parser.ipynb

epogrebnyak commented 5 years ago

https://www.reddit.com/r/haskell/comments/apje14/parser_combinator_tutorial_for_beginners/

epogrebnyak commented 5 years ago

https://www.quora.com/How-do-I-understand-parser-combinator-in-functional-programming-like-Haskell

epogrebnyak commented 5 years ago

https://qntm.org/combinators

epogrebnyak commented 5 years ago

https://fsharpforfunandprofit.com/posts/understanding-parser-combinators/

epogrebnyak commented 5 years ago

https://github.com/data61/fp-course/blob/master/src/Course/Parser.hs

epogrebnyak commented 5 years ago

https://arunraghavan.net/2018/02/applicative-functors-for-fun-and-parsing/

Lacks complete code

epogrebnyak commented 5 years ago

list of lists - https://gist.github.com/fishtreesugar/4d86c77ca18c4587f1f8

epogrebnyak commented 5 years ago

https://gist.github.com/amitdev/1610871 - Sheme https://gist.github.com/uiureo/1386719/08dec558eebf849ffd7f06263a8f0333bdb34853 https://gist.github.com/NCrashed/8199589 https://gist.github.com/michalmuskala/27383652b268aa5d791e

epogrebnyak commented 5 years ago

https://gist.github.com/chshersh/27844477752359735dfa41ac184d3bf2

epogrebnyak commented 5 years ago

https://gist.github.com/abhin4v/017a36477204a1d57745 https://gist.github.com/kseo/8049897