Explore >> Select a destination


You are here

eli.thegreenplace.net
| | leafo.net
3.4 parsecs away

Travel
| | What is a PEG What is LPeg Installing LPeg Some simple grammars String equality Combining patterns Parsing numbers A calculator expression parser Closing What is a PEG A PEG, or Parsing Expression Grammar, is a way of describing a language (or patter...
| | deniskyashif.com
2.2 parsecs away

Travel
| | In this article, we'll define a basic regular expression language using a context-free grammar and learn how to parse its strings in linear time using the recursive descent method.
| | javascript.crockford.com
1.7 parsecs away

Travel
| | [AI summary] The provided text outlines the implementation of a parser and interpreter for a custom programming language, using a Pratt parsing approach. It details the structure of tokens, the handling of expressions, statements, and control flow, as well as the implementation of functions, objects, and arrays. The text also discusses potential extensions and enhancements to the language.
| | gpfault.net
20.8 parsecs away

Travel
| [AI summary] The provided text is a detailed explanation of how to write a simple 64-bit Windows application in assembly language that calls the ExitProcess function from the KERNEL32.DLL library. It covers the following key topics: 1. **Memory and Register Basics**: Explains how memory and registers work in 64-bit Windows, including the use of the stack pointer (RSP), registers like RCX, RDX, R8, and R9 for passing arguments, and the importance of stack alignment for performance. 2. **Calling Conventions**: Details the 64-bit Windows calling convention, including how the first four integer or pointer arguments are passed in registers (RCX, RDX, R8, R9), how additional arguments are passed on the stack, and the requirement for the stack to be aligned to ...