Frank Riley

Results 16 issues of Frank Riley

I installed the server as follows: ```bash k3sup install --ip --sudo false --k3s-extra-args "--data-dir /mnt/ssd/k3s" ``` I then attempted to join a node: ```bash k3sup join --ip --server-ip --sudo false...

# What does this implement/fix? This adds support for updating the frontend with measurements as fast as the cse7766 can supply them. It also more closely adheres to the flowchart...

integration: cse7766

`self_url_many` in a schema's Meta class should have a corresponding `self_url_many_kwargs`. Consider the following scenario where `bars` cannot exist on their own, only within `foos`: ``` class Meta: type_ =...

`related_url_kwargs` are pulled from object data. `self_url_kwargs` are pulled from schema data. This is inconsistent (I got bit by it the first time I tried using `self_url_kwargs`). Furthermore, it means...

If you have a relationship with a related url of `/foo/bar`, you specify the relationship in the schema like this: ``` bar = fields.Relationship( related_url="/foo/bar", type_="bar", ) ``` This will...

Those options tell `zfs-autobackup` to not create a snapshot and keep 0 snapshots, but `zfs-autobackup` is [hardcoded](https://github.com/psy0rz/zfs_autobackup/blob/e65d1ac860cb8dcac0210fe09bf28cb9c235238c/bin/zfs-autobackup#L1113) to keep the last snapshot. `zfs-autobackup` should not override what I asked it...

bug

### The problem Looking at the cse7766 `update()` code [here](https://github.com/esphome/esphome/blob/c95acd25681c35ee765c4ae88f8ea131ff45e091/esphome/components/cse7766/cse7766.cpp#L151), we can see that the `update()` method is getting the count of values that have been read from the serial...

Based on the work of Stephen Larew . This adds split DNS capability. MacOS and iOS don't fully support the separation of search domains and match domains so a best...

Currently, to conditionally do some processing before logging, you do it like this: ```c++ if (logger->should_log(LogLevel::TraceL1)) { ... // do some processing LOG_TRACE_L1(logger, ...); } ``` If `QUILL_ACTIVE_LOG_LEVEL` is set...

**Describe the bug** I am using XCode 14.0.1 on ARM. I followed the build instructions and chose the cocoapods method. When building App-Debug, I get a `Missing required module 'Clibsodium'`...

bug
ios