Hacker News
- Crafting Interpreters with Rust: On Garbage Collection https://www.tunglevo.com/note/crafting-interpreters-with-rust-on-garbage-collection/ 91 comments
- Crafting Interpreters https://craftinginterpreters.com/ 187 comments
- Book Review: “Crafting Interpreters” by Robert Nystrom https://eli.thegreenplace.net/2022/book-review-crafting-interpreters-by-robert-nystrom/ 2 comments
- Crafting Interpreters – Web Version https://craftinginterpreters.com/contents.html 34 comments
- My experience crafting an interpreter with Rust https://ceronman.com/2021/07/22/my-experience-crafting-an-interpreter-with-rust/ 2 comments
- Crafting Interpreters: Classes and Instances http://craftinginterpreters.com/classes-and-instances.html 13 comments
- Crafting Interpreters: Calls and Functions https://craftinginterpreters.com/calls-and-functions.html 34 comments
- Compiling Expressions – Crafting Interpreters http://www.craftinginterpreters.com/compiling-expressions.html 4 comments
- Crafting Interpreters: A Review https://chidiwilliams.com/post/crafting-interpreters-a-review/ 9 comments programming
- [AskJS] A bytecode interpreter for a JavaScript-like dynamic language: Nystrom's Crafting Interpreters https://craftinginterpreters.com/ 4 comments javascript
- Crafting Interpreters https://craftinginterpreters.com/the-lox-language.html 19 comments programming
- CppCast: Dart and Crafting Interpreters https://cppcast.com/dart-crafting-interpreters/ 3 comments cpp
- Crafting Interpreters: 640 Pages in 15 Months http://journal.stuffwithstuff.com/2021/07/29/640-pages-in-15-months/ 3 comments programming
- Print version of Crafting Interpreters was released! http://journal.stuffwithstuff.com/2021/07/29/640-pages-in-15-months/ 3 comments compilers
- Crafting Interpreters is available in print http://craftinginterpreters.com/ 24 comments programming
- My experience crafting an interpreter with Rust https://ceronman.com/2021/07/22/my-experience-crafting-an-interpreter-with-rust/ 28 comments rust
- Crafting "Crafting Interpreters" http://journal.stuffwithstuff.com/2020/04/05/crafting-crafting-interpreters/ 14 comments programming
- Optimization · Crafting Interpreters http://craftinginterpreters.com/optimization.html 17 comments programming
- Methods and Initializers · Crafting Interpreters http://craftinginterpreters.com/methods-and-initializers.html 12 comments programming
- Classes and Instances · Crafting Interpreters http://craftinginterpreters.com/classes-and-instances.html 4 comments programming
- Closures · Crafting Interpreters http://craftinginterpreters.com/closures.html 27 comments programming
- Jumping Back and Forth · Crafting Interpreters http://craftinginterpreters.com/jumping-back-and-forth.html 8 comments programming
- Extend the language in Crafting Interpreters to have a standard library? http://craftinginterpreters.com/ 3 comments compilers
- Crafting Interpreters - Local Variables http://www.craftinginterpreters.com/local-variables.html 6 comments programming
- Global Variables · Crafting Interpreters http://www.craftinginterpreters.com/global-variables.html 28 comments programming
- Crafting Interpreters: How to build a hash table http://www.craftinginterpreters.com/hash-tables.html 47 comments programming
- Types of Values · Crafting Interpreters http://www.craftinginterpreters.com/types-of-values.html 16 comments programming
- Crafting interpreters - Bob Nystrom http://www.craftinginterpreters.com/ 87 comments programming
- Compiling Expressions · Crafting Interpreters http://www.craftinginterpreters.com/compiling-expressions.html 73 comments programming
- Scanning on Demand ("Crafting Interpreters" chapter 16) http://www.craftinginterpreters.com/scanning-on-demand.html 12 comments programming
- Implementing a stack-based VM in C (part of "Crafting Interpreters") http://www.craftinginterpreters.com/a-virtual-machine.html 35 comments programming
- Crafting Interpreters by Bob Nystrom - Inheritance http://www.craftinginterpreters.com/inheritance.html 17 comments programming
- Classes · Crafting Interpreters http://www.craftinginterpreters.com/classes.html 8 comments programming
- A Tree-Walk Interpreter · Crafting Interpreters http://www.craftinginterpreters.com/a-tree-walk-interpreter.html 8 comments programming
- Following along with "Crafting Interpreters," in Rust https://www.reddit.com/r/rust/comments/6qwmgc/following_along_with_crafting_interpreters_in_rust/ 4 comments rust
- Crafting the Juventus logo, interpretation by artists http://www.juventus.com/en/news/news/2017/crafting-juventus-meets-art.php 29 comments soccer
- Follow-up resources to Crafting Interpreters https://craftinginterpreters.com/ 11 comments compilers
- A Docker image specifically crafted for debugging and developing the PHP interpreter https://github.com/dunglas/php-dev-docker 3 comments php
- Crafting Interpreters -- A new, free-to-read book by Bob Nystrom of the Dart team http://www.craftinginterpreters.com/ 5 comments dartlang
- Simple scripting VM example (parser + bytecode) with strings, arithmetic, control flow (no functions (yet!)); nan-tagging and indirect-threading; based on "Crafting Interpreters" book; faster than PUC-Rio Lua and Node.js (JIT off) in arithmetic loop benchmark https://godbolt.org/z/5gbhnk 3 comments cpp