Scott Perry

Results 92 comments of Scott Perry

This turned out to not be too complicated to implement in my toy engineering calculator, though integrating it into the parser generator is another thing entirely: ``` c #include "parser.h"...

I'm not sure it's so inconvenient as to be worth changing the grammar language, I arrived at the following independently and it works fine while being easy enough to understand...

Seems to work fine on jekyll 4.2.1; by default `bundle add` will just append to the Gemfile, maybe double check that you put the gem in the `:jekyll plugins` group?...

Alrighty, in the absence of opinions I'll draft a PR for this.

> I get http:// with the default GitHub Pages configuration. I haven't found any actual problems with http://, but it makes me nervous. To be clear, you mean `absolute_url` is...

The [opengraph spec](https://ogp.me/#url) is a bit ambiguous, but by the robustness principle my interpretation is that it's necessary to use `absolute_url`. Even if it's not, `absolute_url` [is a liquid filter](https://jekyllrb.com/docs/liquid/filters/)...

I feel like the API here may still be more faithful to the history of file locking APIs than that history deserves. In mutexing APIs it's [common](https://www.sqlite.org/c3ref/mutex_methods.html) to have a...

(fwiw, changing the subscripts to normal ASCII numbers does not change anything)

Figured it out: ``` json ["C₄", …, "B₅│ ``` Should have been: ``` json ["C₄",…, "B₅"], ``` Surfacing an error message would have made this a lot easier to track...