NNTin
NNTin
@TheJaredWilcurt I've updated your code generation: https://jsfiddle.net/4r70jax0/34/ I added a ref attribute called myReference. And then use that to create the HTML: `var octoCodeHTML = this.$refs.myReference.outerHTML`. The style tag is...
https://nntin.github.io/discord-logo/ I've come up with a solution but it is not an elegant one. I applied the link to the `path` element that has the shape of a triangle. Disabled...
I'm running into the same issue. ``` sh-5.1# wg-quick up wg0 [#] ip link add wg0 type wireguard [#] wg setconf wg0 /dev/fd/63 [#] ip -4 address add 10.8.130.27 dev...
I managed to resolve the issue by recompiling the Linux Kernel with `CONFIG_NETFILTER_XT_MATCH_CONNMARK` flag enabled. I posted a lengthier answer here: https://unix.stackexchange.com/questions/700620/run-wireguard-as-a-client-on-win10-with-wsl2/
> Cloudflare protocol does work in the latest release, but only with the global API key. So yeah, not ideal. I would much rather use an API token instead. This...
The PR does not work for me. https://github.com/jabdoa2/apigpio/blob/patch-1/apigpio/apigpio.py#L475 `self._loop.sock_sendall(self.s, data)` is a coroutine, see: https://docs.python.org/3/library/asyncio-eventloop.html#asyncio.loop.sock_sendall It needs a `yield from`.  My gpio_test.py had the content of https://github.com/PierreRust/apigpio/blob/master/samples/gpio_write.py
Thanks for the report. I located the bug. My [chatwheel phrases](https://github.com/NNTin/Reply-Dota-2-Reddit/blob/master/data/chatwheel.json) are outdated. It couldn't locate a chatwheel phrase and errored. It will be fixed in the next days. edit:...
The last two links I linked are the vdf file. There is a [vdf python library](https://pypi.org/project/vdf/) so you can transform it into a json. You will need to combine it...
The bot can't be summoned so it gives an error message. I sometimes get pmed that the bot is not working. I want the bot to private message those people...
```bash # Call RPC handler and verify it now executes new code result = await new_handler() > assert result == "version_2", "RPC handler should execute new code after reload" E...