Dan Arnfield

Results 38 comments of Dan Arnfield

I have it mostly working using the [linuxserver docker image](https://hub.docker.com/r/linuxserver/code-server). Here's a snippet of my docker compose file: ```yaml version: '2.4' services: code-server: image: lscr.io/linuxserver/code-server restart: always ports: - 8443:8443...

I think the problem is here: https://github.com/rubygems/rubygems/blob/master/bundler/lib/bundler/source/git.rb#L176-L181 If the gem hasn't been installed already it unconditionally clones a new copy. To make it respect `--local` some logic will need to...

I'm experiencing the same issue on Archlinux but it's inconsistent. I tried several times on two different 328p feathers to upload via `PlatformIO: Build` in VSCode and it failed every...

You use the `set_auth` method on `MQTT::Connect`: ```c++ PubSubClient client(wifiClient, server_ip, port); client.connect(MQTT::Connect("some_id_string").set_auth("username", "password")); ```

> The only workaround I have found is to do an HTTP POST request using the native shortcuts action This workaround appears to no longer work as of iOS 16.2...

I did some more testing last night and found a better workaround (for me). After deleting and recreating the shortcut, and uninstalling Home Assistant from the watch, running the shortcut...

Ironically, it turns out this workaround doesn't actually work for the particular use case I've been attempting. I want to be able to run a shortcut on my watch that...

I ran into this myself a couple of days again. Weird thing is, the [image I use](https://github.com/instantlinux/docker-tools/tree/main/images/nut-upsd) was working just fine until the last docker update. Unfortunately, adding a bunch...

I've been banging my head against this bug for two days. Running a second `bundle install` doesn't fix the problem for me. I've only found two ways to properly install...

You're my hero! `bundle install` and `bundle package` work as expected with that patch.