Jeremy Watt

Results 11 comments of Jeremy Watt

i've added a dockerized form of your excellent app [in this fork](https://github.com/jermwatt/wireguard-dashboard/tree/main) - tested successfully using an Ubuntu 20.04 LTS host on Linode. ## Short Description this fork contains 5...

I would be happy to contribute as well - fantastic library.

below - a short sandbox demo on d3-array binning https://codesandbox.io/s/d3array-histogram-demo-7h3kzc?file=/src/App.js:24-56 the core of this small example looks like ``` // import statement import * as d3 from "d3-array"; // test...

make sure you stop the stream on request closure ``` const stopStream = async () => { await streamCamera.stopCapture(); } req.on("close", () => { frameEmitter.off(frameHandler); if (isVerbose) console.log("Connection terminated: "...

@axwaxw late to the party - but building on your approach, here's how i stream to multiple clients (~3 simultaneous works fine with some increasing lag as more clients join...

I also found that - for reasons I can't quite explain - using the standard `Content-length` in the hedaer here ``` res.write('--myboundary\nContent-Type: image/jpg\nContent-length: ${frameData.length}\n\n'); ``` made the stream unviewable on...

You're likely running your app in dev mode - try previewing it. StrictMode is a helper function that helps you write better React - [understand its purpose](https://stackoverflow.com/questions/53183362/what-is-strictmode-in-react).

Hi! Yes, there is information on exercises 2-4 (in the exercises and text body) but no notebook wrappers. This was a design choice made at launch (e.g., a lot of...

Gotcha! - By "wrappers" I mean jupyter notebooks like [this one for chapter 5](https://github.com/jermwatt/machine_learning_refined/blob/gh-pages/mlrefined_exercises/ed_2/chapter_5/chapter_5_exercises.ipynb) that gets you started with a bit of the code (e.g., data loading, manipulation, plotting) -...

Just pushed wrappers for key problems in chaps 2- 4 to the exercises folder! Visa-vis the solutions - at present we are used at a number of universities whose instructors...