|
You are here |
adriann.github.io | ||
| | | | |
blog.sylver.dev
|
|
| | | | | After discovering the SQLite file format and implementing the .tables command in part 1 and part 2 of this series, we're ready to tackle the next big challenge: writing our own SQL parser from scratch. As the SQL dialect supported by SQLite is quite ... | |
| | | | |
www.abubalay.com
|
|
| | | | | [AI summary] The article explains the concepts of recursive descent and LR parsing while deriving practical parsing techniques like Pratt parsing from automaton theoretical foundations. | |
| | | | |
ntietz.com
|
|
| | | | | [AI summary] The author details the process of building a command-line argument parser from scratch in Rust without any external dependencies to improve compile times and reduce maintenance overhead, while also sharing Rust code snippets. | |
| | | | |
ciesie.com
|
|
| | | Today I've played around with Zig, the new, hip (is it hip?) programming language. I find it pretty neat. I'm going to walk you (and myself) through my first, very short, piece of code. Below you can see the entirety of it. It basically allocates a 2MB buffer and reads a file into it... Yep, not particularly impressive, but this is a judgment free, learning zone, ok?! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 const std = @import("std"); const warn = @import("std"). | ||