rtoy

Results 21 issues of rtoy

Consider this example: ``` (pprint-tabular *standard-output* (make-list 100 :initial-element "abcdefg")) ("abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg" "abcdefg"...

I'm using ccl 1.12 LinuxX8664. ``` ? (format t "~,v,,ve" 15 2 1d10) 10.00000000000000D+8 ``` The printed result is off by a factor of 10; the exponent should be 9,...

An upcoming change in WebAudio wants to change the dictionary defined in bikeshed by ``` dictionary AudioContextOptions { (AudioContextLatencyCategory or double) latencyHint = "interactive"; float sampleRate; }; ``` to add...

If you put something like the following into a bikeshed doc (note the backquotes for the string): ``` function foo(p, label, div) { // Do something with |p| let nodes...

bug

Look at https://webaudio.github.io/web-audio-api/#AudioNode-methods which defines a method `connect(dest, output, input)`, and both `output`, and `input` are optional, as shown in https://webaudio.github.io/web-audio-api/#ref-for-dom-audionode-connect. However, if the look the generated block describing the...

I can't seem to figure out how to link to https://w3c.github.io/mediacapture-fromelement/#dom-htmlmediaelement-capturestream(). I thought `{{HTMLMediaElement/captureStream()}}` would work, but it doesn't. Various other incantations don't seem to work either.

Presumably this came from the (cool!) new feature in #2000. However, the WebAudio spec has some svg files and bikeshed complains that it can't determine the width and height of...

A long time ago [oct](https://gitlab.common-lisp.net/oct/oct) used to be part of quicklisp but was removed because it did build at some point. I finally got around to updating it and I've...

Currently, the y-axis scale is the same for all graphs, and defaults to a range of -1 to +1. If there's only one or two graphs this is fine. However,...

Currently, there is no label (on the y-axis) for what the graph represents. It would be nice if a label could be attached to each graph. This is useful if...