home.social

#parsercombinators — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #parsercombinators, aggregated by home.social.

  1. Amazing post! A little mind bending but worth to try and learn something.

    ––––

    Staged Parser Combinators in Scala: Have Your Cake and Eat It (Too)

    moleike.github.io/blog/staged-

    #Programming #Scala #plt #FunctionalProgramming #FP #parserCombinators

  2. Amazing post! A little mind bending but worth to try and learn something.

    ––––

    Staged Parser Combinators in Scala: Have Your Cake and Eat It (Too)

    moleike.github.io/blog/staged-

    #Programming #Scala #plt #FunctionalProgramming #FP #parserCombinators

  3. Amazing post! A little mind bending but worth to try and learn something.

    ––––

    Staged Parser Combinators in Scala: Have Your Cake and Eat It (Too)

    moleike.github.io/blog/staged-

    #Programming #Scala #plt #FunctionalProgramming #FP #parserCombinators

  4. Amazing post! A little mind bending but worth to try and learn something.

    ––––

    Staged Parser Combinators in Scala: Have Your Cake and Eat It (Too)

    moleike.github.io/blog/staged-

    #Programming #Scala #plt #FunctionalProgramming #FP #parserCombinators

  5. Amazing post! A little mind bending but worth to try and learn something.

    ––––

    Staged Parser Combinators in Scala: Have Your Cake and Eat It (Too)

    moleike.github.io/blog/staged-

    #Programming #Scala #plt #FunctionalProgramming #FP #parserCombinators

  6. I like Swift-parsing.
    Winnow(Rust) > Swift-paring >> ParserCombinator.jl(Julia)

    #parsercombinators

  7. Parser combinators in #Haskell are like the cool kids at school 🎓, effortlessly solving Advent of Code problems while #regexes are stuck in detention 🚫. Who knew regexes were still a thing in 2025? 😂 In Haskell, we leave those relics to flounder in the past while we flex our combinator muscles 💪.
    entropicthoughts.com/parser-co #ParserCombinators #AdventOfCode #FutureCoding #Flexibility #HackerNews #ngated

  8. Parser combinators in #Haskell are like the cool kids at school 🎓, effortlessly solving Advent of Code problems while #regexes are stuck in detention 🚫. Who knew regexes were still a thing in 2025? 😂 In Haskell, we leave those relics to flounder in the past while we flex our combinator muscles 💪.
    entropicthoughts.com/parser-co #ParserCombinators #AdventOfCode #FutureCoding #Flexibility #HackerNews #ngated

  9. Parser combinators in #Haskell are like the cool kids at school 🎓, effortlessly solving Advent of Code problems while #regexes are stuck in detention 🚫. Who knew regexes were still a thing in 2025? 😂 In Haskell, we leave those relics to flounder in the past while we flex our combinator muscles 💪.
    entropicthoughts.com/parser-co #ParserCombinators #AdventOfCode #FutureCoding #Flexibility #HackerNews #ngated

  10. Parser combinators in #Haskell are like the cool kids at school 🎓, effortlessly solving Advent of Code problems while #regexes are stuck in detention 🚫. Who knew regexes were still a thing in 2025? 😂 In Haskell, we leave those relics to flounder in the past while we flex our combinator muscles 💪.
    entropicthoughts.com/parser-co #ParserCombinators #AdventOfCode #FutureCoding #Flexibility #HackerNews #ngated

  11. The most difficult part of #AdventOfCode 2024 day23 is building a parser combinator for computer names composed by two alphabets.

    (('a'..='z'), ('a'..='z')) doesn't work. The solution took me +10min is

    (one_of('a'..='z'), one_of('a'..='z'))

    #rustlang #parsercombinators #winnow

  12. The most difficult part of #AdventOfCode 2024 day23 is building a parser combinator for computer names composed by two alphabets.

    (('a'..='z'), ('a'..='z')) doesn't work. The solution took me +10min is

    (one_of('a'..='z'), one_of('a'..='z'))

    #rustlang #parsercombinators #winnow

  13. Context free grammars (CFG) are better than parsing expression grammars (PEG), because CFGs represent how we think.

    Parser combinators are similar to PEGs, so they are worse than CFGs, too.

    So, don't use Rust libraries nom, combine. Use lalrpop.

    Don't use Haskell libraries parsec, gigaparsec, attoparsec, megaparsec, trifecta. Use Earley, happy.

    See more detailed story in my new article safinaskar.writeas.com/this-is .

    The story also includes some cases, where PEG and parser combinators may still be useful. Also, the article gives links to my Haskell parsing libraries.

    #haskell #rust #parsing #parse #cfg #peg #combinators #parsercombinators #parsingcombinators #nom #combine #lalrpop #parsec #earley #happy

  14. Context free grammars (CFG) are better than parsing expression grammars (PEG), because CFGs represent how we think.

    Parser combinators are similar to PEGs, so they are worse than CFGs, too.

    So, don't use Rust libraries nom, combine. Use lalrpop.

    Don't use Haskell libraries parsec, gigaparsec, attoparsec, megaparsec, trifecta. Use Earley, happy.

    See more detailed story in my new article safinaskar.writeas.com/this-is .

    The story also includes some cases, where PEG and parser combinators may still be useful. Also, the article gives links to my Haskell parsing libraries.

    #haskell #rust #parsing #parse #cfg #peg #combinators #parsercombinators #parsingcombinators #nom #combine #lalrpop #parsec #earley #happy

  15. Context free grammars (CFG) are better than parsing expression grammars (PEG), because CFGs represent how we think.

    Parser combinators are similar to PEGs, so they are worse than CFGs, too.

    So, don't use Rust libraries nom, combine. Use lalrpop.

    Don't use Haskell libraries parsec, gigaparsec, attoparsec, megaparsec, trifecta. Use Earley, happy.

    See more detailed story in my new article safinaskar.writeas.com/this-is .

    The story also includes some cases, where PEG and parser combinators may still be useful. Also, the article gives links to my Haskell parsing libraries.

    #haskell #rust #parsing #parse #cfg #peg #combinators #parsercombinators #parsingcombinators #nom #combine #lalrpop #parsec #earley #happy

  16. Context free grammars (CFG) are better than parsing expression grammars (PEG), because CFGs represent how we think.

    Parser combinators are similar to PEGs, so they are worse than CFGs, too.

    So, don't use Rust libraries nom, combine. Use lalrpop.

    Don't use Haskell libraries parsec, gigaparsec, attoparsec, megaparsec, trifecta. Use Earley, happy.

    See more detailed story in my new article safinaskar.writeas.com/this-is .

    The story also includes some cases, where PEG and parser combinators may still be useful. Also, the article gives links to my Haskell parsing libraries.

    #haskell #rust #parsing #parse #cfg #peg #combinators #parsercombinators #parsingcombinators #nom #combine #lalrpop #parsec #earley #happy

  17. Context free grammars (CFG) are better than parsing expression grammars (PEG), because CFGs represent how we think.

    Parser combinators are similar to PEGs, so they are worse than CFGs, too.

    So, don't use Rust libraries nom, combine. Use lalrpop.

    Don't use Haskell libraries parsec, gigaparsec, attoparsec, megaparsec, trifecta. Use Earley, happy.

    See more detailed story in my new article safinaskar.writeas.com/this-is .

    The story also includes some cases, where PEG and parser combinators may still be useful. Also, the article gives links to my Haskell parsing libraries.

    #haskell #rust #parsing #parse #cfg #peg #combinators #parsercombinators #parsingcombinators #nom #combine #lalrpop #parsec #earley #happy

  18. This talk I gave on parser combinators is (just) over a decade old now and it's kinda neat to see people still link to it, even people writing about parsers in other languages...

    youtube.com/watch?v=r_Enynu_TV

    #ParserCombinators

  19. This talk I gave on parser combinators is (just) over a decade old now and it's kinda neat to see people still link to it, even people writing about parsers in other languages...

    youtube.com/watch?v=r_Enynu_TV

    #ParserCombinators

  20. This talk I gave on parser combinators is (just) over a decade old now and it's kinda neat to see people still link to it, even people writing about parsers in other languages...

    youtube.com/watch?v=r_Enynu_TV

    #ParserCombinators

  21. This talk I gave on parser combinators is (just) over a decade old now and it's kinda neat to see people still link to it, even people writing about parsers in other languages...

    youtube.com/watch?v=r_Enynu_TV

    #ParserCombinators

  22. This talk I gave on parser combinators is (just) over a decade old now and it's kinda neat to see people still link to it, even people writing about parsers in other languages...

    youtube.com/watch?v=r_Enynu_TV

    #ParserCombinators

  23. New blog post! Let's continue to write a parser combinator library in Scala 3 à la @pchiusano and @runarorama 's Red book... but using TDD!

    blog.agilogy.com/2022-12-16-wr