Egg: A Modern LL(1) Parser Generator for Go Parsing is a staple of computer science, yet finding the right tool for the job in Go often feels like a choice between heavy, complex frameworks or writing a brittle parser by hand. Enter egg (Expression Grammar Generator). egg is a new parser...
I decided to clean up some analysis I did a while back about Python Abstract Syntax Trees. The thought was to download a mass of Python code and look at how Python programmers use various syntactic elements. I had thoughts about turning this into a paper, but I figured a blog post might be all I...
Server-sent events are a standard for web servers to stream a sequence of events to a browser over a single HTTP connection. You can view them as a simpler, unidirectional, alternative to websockets (that doesn’t require support from any middleboxes), or as an optimization over...