Jason Merrill

Results 20 issues of Jason Merrill

Repro: 1. In mathquill master (note, not mathquill.com currently because that is behind master at the moment), paste in `\left(x^{\frac{1}{\frac{2}{3}}}\right)^2` 2. Place your cursor after the `3` innermost denominator 3....

Cross-posted from tup issue: https://github.com/gittup/tup/issues/395 **Version info:** macOS: 10.15.5 (19F101) tup: 0.7.8 (installed with homebrew) osxfuse: 3.10.4, 3.10.5 [Tup](http://gittup.org/tup/) uses FUSE to monitor file system access during builds. When I...

Firefox 40 is currently the alpha/aurora/developer edition release. Loading numeric prints many warnings to the console of the form ``` SyntaxError: unreachable code after return statement numeric-1.2.6.js:3:54 SyntaxError: unreachable code...

This warning was being logged to the console whenever there was a doubled semicolon after a return statement, because there is an unreachable (empty) statement between the semicolons. Regularize the...

Adds a new build object, `numeric-$ver.amd.js`, which is a version of numeric suitable for [AMD](http://requirejs.org/docs/whyamd.html). This file is created by catting a simple prelude and postlude around the existing library....

It's currently easy to get a beautiful red-blue diverging colormap with, e.g. 20 colors by calling ``` colormap("RdBu", 20) ``` I would like to be able to map a continuous...

Remove MathQuill's jQuery dependency, and replace it with a few smaller internal libs: * A DOM builder function to replace usage of jQuery to parse html strings: https://github.com/mathquill/mathquill/blob/2573c3a3cf3a97a26fe65e3074b0fd424ca0bc41/src/dom.ts#L58-L62 * A...

See pylibmc's documentation on pooling: http://sendapatch.se/projects/pylibmc/pooling.html A single pylibmc client can not be used concurrently by different threads. It's common for python web frameworks and web servers to use several...

https://groups.google.com/d/msg/elm-discuss/SLWhUe_KTwY/xr4YHe_BgCcJ wighawag: > Took the mario.elm from elm-examples and replaced (fps 30) with AnimationFrame.frame and get the following issue: > when pausing with the elm-reactor and resuming (using the pause/play...

Inspired by https://blog.reverberate.org/2021/04/21/musttail-efficient-interpreters.html Unfortunately, the Zig compiler doesn't yet support tail calls when targeting WASM, so merging this would break WASM support.