Avatar

Mike Wooskey

mike_wooskey@lemmy.thewooskeys.com
Joined
8 posts • 60 comments
Direct message

It sounds like the password history shows generated passwords (e.g , for all entries or for no entry), not passwords saved for an entry. I haven’t tested this yet, though.

If so, it wouldn’t help you with any particular entry’s past password, and in fact it would seem like a pretty useless feature.

permalink
report
parent
reply

I host tt-rss in docker and use Tiny Tiny RSS in GrapheneOS.

permalink
report
parent
reply

#VowelPlay #144 4/4

🟢⚪⚪⚪ 🟢⚪⚪⚪ 🟢⚪⚪⚪ 🔴🟢⚪⚪

permalink
report
reply

When I install qbittorrent via docker, I see this in the docker logs:

qbittorrent-1         | 2024-11-04T15:25:25.201955254Z The WebUI administrator username is: admin
qbittorrent-1         | 2024-11-04T15:25:25.201974066Z The WebUI administrator password was not set. A temporary password is provided for this session: H7ct3xPes

That’s the default admin credentials for the instance. I can then change the login or pw in the UI.

permalink
report
reply

I found the solution. configuration.yaml needed to have the following syntax, with the defined values being true or false (instead of “Detected” or “Not Detected”):

template:
  - binary_sensor:
      - name: "Lounge Presence"
        state: >-
          {% if states('sensor.apollo_mtr_1_cca750_presence_target_count') | int > 0 %}
            true
          {% elif is_state('binary_sensor.apollo_msr_2_c7bfe8_radar_zone_1_occupancy', 'on') %}
            true
          {% elif is_state('binary_sensor.apollo_msr_2_c7bfe8_radar_zone_2_occupancy', 'on') %}
            true
          {% elif is_state('binary_sensor.apollo_msr_2_c7bfe8_radar_zone_3_occupancy', 'on') %}
            true
          {% else %}
            false
          {% endif %}
        device_class: presence
permalink
report
reply

Thanks for sharing about Backrest. I use Restic and Backrest looks like a great addition to it.

permalink
report
parent
reply

I think Studio Code Server is a linter. It’s telling me what the syntax problems are - I just don’t know how to fix them. Now that I removed the hypehn, it’s not telling me there are any spacing/formatting issues. But it currently says I’m missing the “entities” and “platform” properties, but I don’t know what the values should be. And It also says “state” is not an allowed property, but that’s the property that holds all the important stuff about this sensor - so how can I remove it?

permalink
report
parent
reply

What I did was de-indent the binary_sensor section so it was at the same heirarchy as the template section, like this:

But I realize now that I have to remove the hypen before “binary_sensor”. When I do, I Studio Code Server still shows a couple errors:

It says I’m missing the “entities” and “platform” properties, and that “state” is not an allowed property.

permalink
report
parent
reply

Thanks for the suggsetion @Matt The Horwood.

It looks like a “Combine the state of several sensors” or a “Group” helper only allow you to combine sensors of the same type.

I created a binary sensor from a template using the helper, but it also returns “‘binary_sensor’ is undefined” when I try to access its value in the template editor with {{ states(binary_sensor.lounge_presence) }}

permalink
report
parent
reply

If any of these 4 things happen, set the sensor to “Detected”, otherwise set it to “Not Detected”:

  1. MTR presence target count is greater than 0 (zero)
  2. MSR zone 1 occupancy is “on”
  3. MSR zone 2 occupancy is “on”
  4. MSR zone 3 occupancy is “on”

As I said, this is working correctly in the template editor. The problem is that I can’t make a sensor out of it.

permalink
report
parent
reply