Ben Lerner
Ben Lerner
In the repository code view, tapping on the black bar at the bottom with the branch name in it brings up a dialog to select a new branch. Tapping on...
Suppose I invoke `Headless.run(display: pick-a-display(), autopick: true) do ... end`, so that I specify both an initial guess for a display, and ask Headless to handle the rest. My server,...
Suppose you wrote ``` check: [raw-array: 1] is [raw-array: 1] end ``` The test will fail because raw arrays are mutable. We should consider _rerunning the test_ in this case...
Consider the following expression (on current CPO): `image-pinhole-x(point-polygon([list: point(0, 0), point(2.5, 0), point(32, 0)], "solid", "red"))`. It will evaluate to `11.5` -- but it's a broken 11.5. It's not an...
The following check-block gives a well-formedness error: ``` check: ... 6 ... is 6 end ```  The same error occurs even if the testing expression is not in a...
``` fun in-to-cm(i): in-to-cm(i * 2.54) end in-to-cm(1) ``` hangs the browser (Aw Snap! in Chrome), and the stop button doesn't work. If you change it to ``` fun in-to-cm(i):...
I see this pattern popping up a few times, where we create an object mostly for the benefit of using one of its methods. The object is created inline and...
According to the RTF spec (https://www.microsoft.com/en-us/download/details.aspx?id=10725), there are only a few codepages needed in RTF: ``` Code page | Name -- | -- 437 | United States IBM 708 |...
I've previously been using Tab Preview to see thumbnails of background tabs, but since it's not compatible with e10s, I've switched to TabScope. One feature I particularly liked about Tab...
This PR changes the image implementation in a few ways: - Because .vertices are going away whenever possible, we no longer have to render images solely in Quadrant I -...