Dave Tapley

Results 156 comments of Dave Tapley

Relevant links: https://github.com/helium/blockchain-http/blob/24e501095279648c909dbfc19065a69c3ee78149/src/bh_route_hotspots.erl#L419-L433 And: https://github.com/helium/blockchain-http/blob/24e501095279648c909dbfc19065a69c3ee78149/priv/hotspots.sql#L55-L56

Alas looking at `gateway_inventory` on https://etl.dewi.org/ it only includes current owners 😞 `transactions_transfer_hotspot` has it, but we first need a `transactions_transfer_hotspot.sql` in [`/priv/`](https://github.com/helium/blockchain-http/tree/master/priv) with something like: ```sql select buyer, seller,...

I get: ``` curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to rpc-devnet.aws.metaplex.com:443 ``` And Postman says: ``` Error: Client network socket disconnected before secure TLS connection was established ```

I assume not coincidence, but FYI this is partially fixed by #134

This would be especially useful for Codespaces, where I currently have to download and reupload.

This might merit a separate issue, but: Can we warn the user that Windows Containers aren't supported? My experience was seeing this: Then seeing this in the logs: ``` container...

I had the scheme error, but: ```yml pip_install_packages: - name: requests version: "2.31.0" ``` Then caused: ``` Error connecting: Error while fetching server API version: request() got an unexpected keyword...

Note the `600px` is a result of using `is-col-min-24`, if you change to e.g. `is-col-min-12` then it breaks at `300px`. And since `is-col-min` is based on `rem` the exact values...

Workaround until then: ```py from typing import Any, Type from plum import dispatch class FloatDeserializer: @dispatch def deserialize(self, cls: Type[float], value: Any) -> float: if value is None or value...

I'd hoped this was fixed by https://github.com/pylint-dev/astroid/issues/1015, but alas no. It is specific to `__truediv__`.