Philip McGrath
Philip McGrath
FWIW, while I don't care about IE6, I do use `lynx` from time to time, and the docs are quite readable in it.
My primary use for `eq?` is with symbols, especially as keys in `eq?`-based hash-tables. My impression is that there is a notable performance benefit.
As another point in the design space, [Pyret has several notions of equality](https://www.pyret.org/docs/latest/equality.html). In summary: Name | Operator | Partial Predicate | Total Predicate | Similar To -- | --...
Re @jeapostrophe's comment on `eq?`: I agree that we should avoid exposing pointer identities (at least in the safe/high-level language) and we should allow the implementation to be aggressive as...
I don't think the current UI (a) shows whether the slider has been manually adjusted or (b) gives a way to reset it to Privacy Badger's recommendation, which seems important....
Good catch! I will push a revised series with that fix, though probably not today. For context, the KaTeX documentation says that its output generally requires ``: IIRC, support for...
I've pushed a revised series with the fix for `\schemedisplay`. I'll also update the draft https://github.com/cisco/ChezScheme/pull/761 to refer to it.
I've pushed a slight change that uses: ```css .schemedisplay { line-height: 1.0625; } .schemedisplay .katex { font-size: 1em; } ``` to prevent math inside `\schemedisplay`, especially the right arrows and...
I think a change analogous to https://github.com/racket/racket/commit/0ddb776ec5801a7c4f59b0eddffe969c265a4632 should fix this, and I hope to try that relatively soon.
These Python and JavaScript programs: ```python print(json.dumps({"waffle": [1, 2, 3], "와플": [1, 2, 3]},indent=4,ensure_ascii=False)) ``` ```javascript console.log(JSON.stringify({"waffle":[1,2,3],"와플":[1,2,3]},null,4)) ``` both output: ```json { "waffle": [ 1, 2, 3 ], "와플": [...