Explore >> Select a destination


You are here

martin.janiczek.cz
| | journal.stuffwithstuff.com
1.3 parsecs away

Travel
| |
| | eli.thegreenplace.net
1.1 parsecs away

Travel
| | [AI summary] A technical tutorial explaining the Top-Down Operator Precedence (Pratt) parsing algorithm for handling expression grammars.
| | crockford.com
3.9 parsecs away

Travel
| | [AI summary] The provided text is a comprehensive implementation of a parser for a custom programming language, using a Pratt parser (also known as a Top-down operator precedence parser) approach. It includes definitions for various language constructs like constants, statements, functions, and object/array literals, along with error handling and symbol table management. The code is structured around token processing and rule-based parsing for expressions, statements, and blocks.
| | tyrrrz.me
15.6 parsecs away

Travel
| A while ago I had to implement proper markdown parsing in DiscordChatExporter so that I could replace the brittle regular expressions I had been using. I had no idea how to approach this problem, so I spent days researching into this, eventually learning...