Austin Middleton

Results 27 comments of Austin Middleton

Not auto updating when the website's torrent is recreated is problematic. A non-blocking request to the manifest.json/root.torrent on every page seems like a good way to fix this.

To implement the blocking auto-update: the service worker should immediately call update() when it is initialized and fetch requests should wait for the update promise to fulfill before sending the...

Also, some crash reporting should be added

@avilao thanks for heads up! Fixed in 871fbc8f3308c0d48fba16a3a8fd54839dd4520f

@georgeaf99 The reason we aren't using the planktos.xyz domain name is because we cant use githubs ssl since the certs are tied to the domain name. Without https, we can't...

Feedback [doc](https://docs.google.com/document/d/1J74XSUiS5V2riyKYVFVZ2nt69asXsabQTJa7qfIaNg4/edit?usp=sharing)

As of now, update() does not delay the page load time. While update() will take longer with the optimization when an update is found because the requests are sequential, it...

When a html file is requested, we can transform the files stream so our html injection code is included within the file stream. So when getBlob is called, it already...

I really like all the good ideas that have been suggested in this conversation. In a perfect world, we should be able to reuse the bittorrent-dht package within the browser...

@ScriptSmith this took a bit longer than I anticipated, but I finally got the [web-dht](https://github.com/xuset/web-dht) demo up on github. It uses the bittorrent-dht and [peer-relay](https://github.com/xuset/peer-relay) packages to get a dht...