David Beazley - Reinventing the Parser Generator - PyCon 2018

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 42

  • @traal
    @traal 6 ปีที่แล้ว +48

    I’m just going to stand here for 45 minutes and live hand-code a proof-of-concept parser generator… Twice.
    That’s got to be one of the most ridiculously cool live demos I’ve ever seen. Plus, the guy’s genuinely funny too. 😁

    • @alurma
      @alurma ปีที่แล้ว

      He didn't code two parser generators though, just two parsers. Project is cool though :)

  • @c-spam9581
    @c-spam9581 6 ปีที่แล้ว +70

    I'm a simple man. If I see David Beazley, I click.

    • @edwinhe2865
      @edwinhe2865 6 ปีที่แล้ว +1

      me too! love his talks - wished he held courses down under

    • @johnsabini3218
      @johnsabini3218 5 ปีที่แล้ว

      @@edwinhe2865 Chicago is not too far#Sarcasm :) He has a compiler course coming up. It's cold there but there are a lot of pubs near his studio.

    • @kevindong9672
      @kevindong9672 5 ปีที่แล้ว

      me too. I search around for Beazley's all talk videos.

  • @efraimdeluxe
    @efraimdeluxe 5 ปีที่แล้ว +4

    Dabeaz - a steady stream of excellent talks!

  • @iviarcelo
    @iviarcelo 6 ปีที่แล้ว +16

    What tool is being used to execute python code merged into source code?

    • @brianmcconnel640
      @brianmcconnel640 5 ปีที่แล้ว +2

      Seems like EMACS, something like this github.com/millejoh/emacs-ipython-notebook/wiki/Screenshots

  • @Anonymouspock
    @Anonymouspock 6 ปีที่แล้ว +4

    This is more hilariously turning the code into Lisp. Quite informational on why that language is how it is: it barely requires a parser!

  • @domingogomez6999
    @domingogomez6999 5 ปีที่แล้ว

    The compilers course is a must for all the people interesting in computer science

    • @jackeown
      @jackeown 5 ปีที่แล้ว

      I'm in a CS PhD program and have never had a class on compilers. It was never offered in my undergrad and I can't take it at my graduate school, because it wouldn't be covered by my tuition waiver.

    • @jameshalladay3964
      @jameshalladay3964 5 ปีที่แล้ว

      @@jackeown the book to read is the structure and interpretation of computer programs. It teaches you scheme and in 5 chapters you use it to build a complete compiler for a new language. It is also called the Wizard book, and the class it is used in is widely considered one of the greatest computer science courses

  • @reginaldcrapo132
    @reginaldcrapo132 5 ปีที่แล้ว +1

    Great introduction.

  • @saurabh75prakash
    @saurabh75prakash 5 ปีที่แล้ว

    Excellent talk.

  • @YeshwanthReddy
    @YeshwanthReddy 6 ปีที่แล้ว +4

    What editor is he using???

    • @ninjaaron
      @ninjaaron 6 ปีที่แล้ว +2

      He's an emacs user, generally speaking.

  • @ClintOlsen
    @ClintOlsen 5 ปีที่แล้ว +1

    Good talk. I'm not sure if you redeemed yourself from the abhorrent docstring with SLY. This could be more of a lateral move. :D

  • @streetwear37
    @streetwear37 4 ปีที่แล้ว

    I like the version of the dragon book 🤣
    What if I'm one of those who did not cry when confronted with that boom but read it twice? 🤣

  • @modusponens1094
    @modusponens1094 5 ปีที่แล้ว

    What's this f'blah blah {template_thing}' trick? That's bad ass. Where do I get it?

    • @modusponens1094
      @modusponens1094 5 ปีที่แล้ว

      Oh, it's Python 3.6. Cool. I must have missed that memo.

    • @ClintOlsen
      @ClintOlsen 5 ปีที่แล้ว +1

      @@modusponens1094 Yeah, Python appears to be taking lessons from Perl. There are now 3 ways to interpret a string.

  • @streetwear37
    @streetwear37 4 ปีที่แล้ว

    Btw you can set rules of a selfmade lexer generator to solve conflicts by precedence of patterns. My convert to a DFA and look for the longest match an return the longest match, at each state in the DFA, if it accept, pick the token which are defined first.

  • @JasonDoege
    @JasonDoege 6 ปีที่แล้ว +1

    Good talk. The question I have is why do we still separate tokenization from parsing? So many languages have context sensitivity and this practice makes that very difficult to handle.
    The second question I have is, does SLY support stream-based parsing or does it only work on complete documents?

    • @LazieKat
      @LazieKat 3 ปีที่แล้ว +1

      I am not David and your question is 2 years old but anyways...
      PLY and SLY use LALR approach from my understanding as they are based on yacc, and LALR parsers are usually targeted towards context-free grammars. Although, PLY can have multiple grammars at the same time and you can switch between them on the go, kind of nested grammars, which gives you more freedom despite not being formally context-sensitive.
      I don't know about SLY, but PLY did not have support for stream inputs and I would assume the same for SLY, but you can always take user input and convert into strings. I can't think of a scenario where parsing live streams of characters would be that critical and necessary.

  • @itachi2011100
    @itachi2011100 4 ปีที่แล้ว +1

    This is awesome but also cursed python. 35:30

  • @dandng
    @dandng 6 ปีที่แล้ว

    At 32:49, why doesn't the code raise a NameError?

    • @stefanzweig
      @stefanzweig 6 ปีที่แล้ว

      Daniel Duong whitespace and tab should be ignored.

    • @dandng
      @dandng 6 ปีที่แล้ว +1

      Actually a guy asked the same question at the end of the talk, but I didn't really understand the answer.

    • @josefkvita9042
      @josefkvita9042 6 ปีที่แล้ว

      It does raise the error...

    • @ninjaaron
      @ninjaaron 6 ปีที่แล้ว +1

      If you're using a metaclass, you get the class dictionary before the class body is executed in it. He's probably using a custom mapping that defines a `__missing__` method, which will be triggered whenever a name is looked up that isn't defined in the scope. You can use "magic" mappings in metaclasses to basically arbitrarily redefine the semantics of the language inside of a class body, so long as it's valid Python syntax (NameErrors happen at runtime, not during parsing)

    • @jameshalladay3964
      @jameshalladay3964 5 ปีที่แล้ว

      it is because the ignored characters are " \t" a space and a tab

  • @bernardfinucane2061
    @bernardfinucane2061 3 ปีที่แล้ว

    -3-4 does equal one in some languages

    • @AE-cc1yl
      @AE-cc1yl 3 ปีที่แล้ว

      so it does -(3-4) ?

  • @vram288
    @vram288 27 วันที่ผ่านมา

    at 10.0 good

  • @pamdemonia
    @pamdemonia 6 ปีที่แล้ว +2

    First? Really? Wow!

    • @goku14139268520
      @goku14139268520 6 ปีที่แล้ว

      pamdemonia
      Nooooooooo! I missed my chance!