guest271314

Results 602 comments of guest271314

The Native Messaging, PHP `passthru()` version is essentially the precursor to the `QuicTransport` and `WebTransport` versions. Since you read that Issue you noted the Chrome bug which limits `WebAssembly.Memory.grow()` to...

The offset is the bytes read, the index is the bytes written. > well it's actually not a file but a live stream from my mic. One solution ``` navigator.mediaDevices.getUserMedia({audio:...

For the `WebTransport` version "text" input originates in the browser at function call ```webTransportAudioWorkletMemoryGrow('hello world')``` Sending to `quic-transport` URL ``` let data = encoder.encode(text); await writer.write(data); console.log('writer close', await writer.close());...

To install `aioquic` ``` python3 -m pip install aioquic ``` create the necessary certificates https://github.com/guest271314/webtransport/blob/main/quic_transport_server_tts.py#L40, launch Chrome or Chromium with the appropriate flags found in the same comment block. Note,...

Relevant to running the code at `console` at any origin, there is still a restriction on doing so using `AudioWorklet` due to the design being an Ecmascript Module, thus GitHub...

You can remove the `Content-Security-Policy` header entirely using the extension.

@jacquelynoelle I don't think you can guarantee that the client will not remove `Content-Security-Policy` headers altogether.

For clarity I'll post an example here of removing all CSP headers using an extension, to demonstrate what I mentioned in earlier posts. The purpose of doing that is for...

https://github.com/tc39/proposal-built-in-modules/pull/61

@tabatkins What is the appropriate venue to propose a specific type of `Worklet` be specified?