Beni Cherniavsky-Paskin

Results 502 comments of Beni Cherniavsky-Paskin

I'm suggesting a walker [or a flag on existing sql walker] that from the example you give above, would build the self-contained string `"Moki" = "Not Moki"`. My understading is...

Interestingly, squirrel.Expr may provide the infrastructure to "smuggle" literals into squirrel: https://github.com/Masterminds/squirrel/blob/master/expr.go#L31-L82 If any of the args supports `.ToSql()`, it inlines the result in place of the `?`.

OTOH, I don't understand how this now works: ``` case tsl.StringOp: s = sq.Expr(n.Left.(string)) ``` Isn't `sq.Expr()` supposed to take an SQL fragment (with possible placeholders)? Here you're feeding it...

- Pandoc has several ways to output math; without any options like `--mathjax` it tries pure HTML + unicode (falling back to tex source where it fails): http://johnmacfarlane.net/pandoc/demo/mathDefault.html While not...

Gravizo has a clever "Indirect" mode where the URL points back to a file containing the diagram source. If you don't want a separate file, they also allow specifying a...

https://github.com/GuntherRademacher/rr parses EBNF, which is really near-ideal for this kind of diagrams. live demo: https://bottlecaps.de/rr/ui

One point to add is that ksuid timestamps are not just lower precision, but also smaller future range: * ksuid: "The timestamp epoch is adjusted to March 5th, 2014, providing...

Another difference is encoding: * ULID specifies base32 encoding, friendlier to humans "reading on the phone" (avoids similar chars like 1IiJj, case insensitive) * ksuid uses denser base62, resulting in...

FWIW, I'm benefitting from the current lack of support :grin: My use case is quite esoteric with monitors showing *overlapping* areas of the video memory. When I open my laptop...