Worldwidebrine

Results 6 comments of Worldwidebrine

In `Handling rejected promises` > // response will be undefined if the promise is rejected It will be undefined because handler in `.catch()` returns undefined

You are right. No need to explain `catch()`, but still I think it's better to be explicit. Just add `return "this is the default response";` and > response will be...

But this works ```js class X { #a = 'secret' get getA() { return this.#a } } const p = new Proxy(new X(), { get(target, propname, receiver) { return Reflect.get(target,...

As far as I know, `Proxy` can't hook method call `proxy.method1();`. `Proxy` can only trap the property getter for the method `proxy.method1`. But getter and setter are not methods. They...

`android:preserveLegacyExternalStorage` and `android:requestLegacyExternalStorage` are also permissions. In appops command, it's called `LEGACY_STORAGE`.

https://github.com/benjamincburns/websockproxy This is ws://relay.widgetry.org implementation. It also has a rate limiting feature for preventing abuse. A good public relay service. I hope c2w to support it too. But I must...