William O'Connell

Results 8 comments of William O'Connell

Not sure I 100% understand what you're asking, but I think `await` is what you want? For example: ```javascript async function ask() { let x = await swal({ title: "Are...

I don't think there's anything a browser can do to prevent you from knowing your visitors' IP address. As it says in the proposal: > Some fingerprinting surfaces, such as...

That's a [separate proposal](https://github.com/bslassey/ip-blindness) from my understanding. It routes requests through third-party NAT servers to hide user's IP addresses. Pretty much the whole point of that is to stop IP...

Sorry to resurrect this but I'm having the same issue. @lpradovera mentioned something about a Space URL, where would that be passed to the library? I'm struggling to find any...

From what I can tell, the issue is that aiohttp is using an incomplete/outdate set of root certificates. This can be resolved by passing the bundle from `certifi` in `connection.py`:...

I'm using Python 3.10 on Windows 10 (x64). Signalwire package version 2.0.4. When I run it I get the `WARNING:root:relay.signalwire.com seems down..` message but with a debugger I can see...

This tripped me up when trying to use Ghost for the first time, it kept rejecting my (very long/complex) passwords because they contained the string `ghost` and it took a...

I had a similar issue with `sock_recvfrom`. It took me a while to figure out what was going on because I was using Sanic and hadn't actually heard of `uvloop`....