Tag parsing

4 bookmarks have this tag.

2025-12-31

2059.

Unix "find" expressions compiled to bytecode

nullprogram.com/blog/2025/12/23

2025-12-30

2054.

alecthomas/participle: A parser library for Go

github.com/alecthomas/participle
type INI struct {
  Properties []*Property `@@*`
  Sections   []*Section  `@@*`
}

type Section struct {
  Identifier string      `"[" @Ident "]"`
  Properties []*Property `@@*`
}

type Property struct {
  Key   string `@Ident "="`
  Value *Value `@@`
}

type Value struct {
  String *string  `  @String`
  Float *float64  `| @Float`
  Int    *int     `| @Int`
}

2023-02-19

56.

Readability | Zettlr

www.zettlr.com/readability

This page provides four different readability algorithms, implemented using the Open Source Markdown Editor Zettlr.

2023-01-20

7.

Why you should not use (f)lex, yacc and bison

tomassetti.me/why-you-should-not-use-flex-yacc-and-bison