16
submitted 3 weeks ago* (last edited 3 weeks ago) by [email protected] to c/[email protected]

I'm hoping someone can help me figure out what I'm doing wrong.

I have a VM on my local network that has Traefik, 2 apps (whomai and myapp), and wireguard in server mode (let's call this VM "server"). I have another VM on the same network with Traefik and wireguard in client mode (let's call this VM "client").

  • both VMs can can ping each other using their VPN IP addresses
  • wireguard successfully handshakes
  • I have myapp.mydomain.com as a host override on my router so every computer in my house points it to "client"
  • when I run curl -L --header 'Host: myapp.mydomain.com' from the myapp container it successfully returns the myapp page.

But when I browse to http://myapp.mydomain.com I get "Internal Server Error", yet nothing appears in the docker logs for any app (neither traefik container, neither wireguard container, nor the myapp container).

Any suggestions/assistance would be appreciated!

1
submitted 1 month ago* (last edited 1 month ago) by [email protected] to c/[email protected]

I have input_text.event_1 where the value is currently "birthday", input_text.event_2 where the value is currently "christmas", input_date.event_1 where the value is currently "1/1/2000", and input_date.event_2 where the value is currently "12/25/2024". How do I configure voice assistant to recognize a phrase like "what's the date of birthday" and returns "1/1/2000"?

I'm guessing there's some combination of templating and "lists", but there are too many variables for me to continue guessing: conversations, intents, sentences, slots, lists, wildcards, yaml files...

I've tried variations of this in multiple files:

language: "en"
intents:
  WhatsTheDateOf:
    - "what's the date of {eventname}"
    data:
      - sentences:
          - "what's the date of {eventname}"
lists:
  eventname:
    wildcard:
      true
      - "{{ states('input_text.event_1') }}"
      - "{{ states('input_text.event_2') }}"

Should it be in conversations.yaml, intent_scripts.yaml, or a file in custom_sentences/en? Or does the "lists" go in one file and "intents" go in another? In the intent, do I need to define my sentence twice?

I'd appreciate any help. I feel like once I see the yaml of a way that works, I'll be able to examine it and understand how to make derivations work in the future.

[-] [email protected] 30 points 1 month ago

You're sharing your thoughts about the real life club online.

16
submitted 2 months ago* (last edited 2 months ago) by [email protected] to c/[email protected]

Howdy.

I have the following helpers:

  • input_text.countdown_date_01_name
  • input_datetime.countdown_date_01_date,
  • input_text.countdown_date_02_name
  • input_datetime.countdown_date_02_date
  • I want to add a couple more if I can get this to work

I want to be able to speak "how many days until X", where X is the value of either input_text.countdown_date_01_name or input_text.countdown_date_02_name, and have Home Assistant speak the response "there are Y days until X", where X is the value of either input_text.countdown_date_01_name or input_text.countdown_date_02_name, whichever was spoken.

I know how to determine the number of days until the date that is the value of input_datetime.countdown_date_01_date or input_datetime.countdown_date_02_date. But so far I've been unable to figure out how to configure the sentence/intent so that HA knows which one to retrieve the value of.

In config/conversations.yaml I have:

intents:
  HowManyDaysUntil:
    - "how many days until {countdownname}"

In config/intents/sentences/en/_cmmon.yaml I have:

lists:
  countdownname:
    values:
      - '{{ states("input_text.countdown_date_01_name") }}'
      - '{{ states("input_text.countdown_date_02_name") }}'

In config/intent_scripts.yaml I have:

HowManyDaysUntil:
  action:
    service: automation.trigger
    data:
      entity_id: automation.how_many_days_until_countdown01

(this automation currently is hardocded to calculate and speak the days until input_datetime.countdown_date_01_date)

The values of my helpers are currently:

  • input_text.countdown_date_01_name = "vacation"
  • input_datetime.countdown_date_01_date = "6/1/2024'

When I speak "how many days until vacation" I get Unexpected error during intent recognition.

I'd appreciate your help with this!

[-] [email protected] 4 points 2 months ago

From what I understand, a timer's duration is the amount of time the timer was set to run for when it was started - the total time, not the time remaining.

If you're wanting to determine the time remaining in an active timer, you need something like:

{% set finish_time = state_attr('timer.timer_entity_id', 'finishes_at') %}
{{ '00:00' if finish_time == None else (as_datetime(finish_time) - now()).total_seconds() | timestamp_custom('%H:%M', false) }}

Or this version, which breaks hours and minutes into speakable parts:

{% set finish_time = state_attr('timer.timer_entity_id', 'finishes_at') %} 
{% set hours, minutes = ('00:00' if finish_time == None else (as_datetime(finish_time) - now()).total_seconds() | timestamp_custom('%H:%M', false)).split(':') | map('int') %} 
{{ '' if hours == 0 else hours ~ ' hour' if hours == 1 else hours ~ ' hours' }} {{ ' and ' if hours > 0 }} {{ minutes ~ ' minute' if minutes == 1 else minutes ~ ' minutes' }}     
[-] [email protected] 5 points 2 months ago

I currently use Photo structure, which is good, but its not open source and the one guy behind it, Matthew, is quite slow with progress. He's super friendly and helpful, and bug fixes are pretty quick. But feature additions are glacial.

I was considering switching to photoprism but was turned off by the attitude of some of the developers. The product looks prery good, though.

I'm pretty sure I'm going to switch to Immich, which is also really good.

A friend uses Piwigo which is decent and has good features, though I find it's very ugly regardless which skin you use.

6
submitted 2 months ago by [email protected] to c/[email protected]

I can't log into my Spotify account. I get "Incorrect username or password." I'm using my email address for my login.

I clicked "Forgot password" and entered my email address and Spotify said "Email sent. We sent you an email. Follow the instructions to get back into your account." But I didn't receive that email. I waited more than 24 hours, then tried again a couple times. It's not in my spam/junk folder either.

I tried creating a new account with the same email address, but Spotify says "This address is already linked to an existing account. To continue, log in."

Spotify's "reset password" FAQ doesn't cover this situation.

I clicked "Contact Spotify" from the footer of their support pages, and they offer support by sending them a message, contacting them on X or Facebook, or asking for support in their support community. I don't have an X or Facebook account, and when I click to send them a message they require me to log in! I visited their support community and typed my issue, but when I clicked "Post" to submit my issue they require me to log in!

Does anyone know how to contact a human at Spotify?

Thanks for assistance.

[-] [email protected] 4 points 2 months ago

I recently installed TrueNAS in Proxmox in this interesting Ouroboros-like configuration. So far it's been great.

[-] [email protected] 7 points 2 months ago

That looks gorgeous!

6
submitted 2 months ago by [email protected] to c/[email protected]

I have some of the ATOM Echos that HA describes here. They work for voice recognition but the speaker in these tiny boxes is...tiny. It's barely audible when standing right next to the box, and completely inaudible when standing 10 feet away or if there is noise in the room.

Examples of the voice responses I'm talking about are "I'm sorry but I don't understand that" or "The current time is 2:15pm" or "I turned on the lights in the living room."

Is it possible to re-route the voice responses to a different media player? Currently, I have a Google Home Mini in each room that I have an ATOM Echo in. It would be nice if I could somehow determine which ECHO received the voice command, which area that Echo was in (e.g., "living room"), and then re-route the voice response to a media player in that area.

But I have no idea how to do this.

12
How to intercept HA noifications? (lemmy.d.thewooskeys.com)
submitted 2 months ago by [email protected] to c/[email protected]

I have a robot vaccum that sends an alert to HA when it's done cleaning or when it encounters a problem. How can I intercept or re-route those notificiations? I want to post them to Matrix, which I do have an integration for.

Thanks for assistance.

6
submitted 2 months ago by [email protected] to c/[email protected]

I've had a problem for a year or more, so that's through numerous Home Assistant updates: I have about 15 automations that I've disabled, but they always become enabled again within a few days. I haven't been able to determine a trigger for the re-enabling.

Has anyone else encountered this? Does anyone have a suggestion?

6
Projector suggestions (lemmy.d.thewooskeys.com)
submitted 3 months ago by [email protected] to c/[email protected]

I'm trying to find a new projector for my home theater. I don't need high end, but it should be at least 1080p (i.e., 4K isnt necessary). I mention that because of my budget: I'm looking for something around $500, but I might be able to go up to $1000. The other main requirement is that I'm able to turn it on/off via Home Assistant.

Other nice features to have, but nott requirements:

  • Ability to adjust vertical and horizontal keystones (I mount this projector on a ceiling)
  • Decent brightness & contract (it doesn't have to be the brightest on the market, but it shouldn't be the dimmest)
  • HDMI connector (I have a 50 foot HDMI cable now, but if sending data to projectors via wifi is a thing, that would be better)

Thansk for your suggestions.

11
submitted 4 months ago by [email protected] to c/[email protected]

I installed the Auto Backup HACS integration and I have a network storage configured in Home Assistant (FYI, I'm running HAOS). If I use HA's Developer Tools and manually call the "Auto Backup: Backup Full" service, there is a "Location" field where I can select my network storage. The backup successfully completes and saves to my network storage.

But in an Automation (based on the Auto Backup bluerpint), I can't find a way to configure the Location - it defaults to HA's data disk (i.e., /root/backup). DO I have to manually add the location in the yaml? If so, how do I access the actual yaml? When I select "Edit in YAML", all I see is the barebones blueprint YAML:

alias: Automatic Backups
description: using the Auto Backup HACS integration
use_blueprint:
  path: jcwillox/automatic_backups.yaml
  input:
    backup_time: "02:00:00"
    enable_yearly: false

When I view the automation's traces I can see much more detailed YAML, but I can't edit it.

Thanks for assistance.

[-] [email protected] 4 points 4 months ago

Photostructure is a strong starter, but development is slow and it's still missing important features like sharing. Also, it's not ooen source.

Immich seems great but doesn't (yet) support digikam tags ( and since my 100,000 assets are tagged/organized via digikam, I don't want to move to immich yet and have to start over).

PhotoPrism seemed pretty good, though it also doesn't (yet) support digikam tags. Also, their self-hosted version doesn't have all the features of their paid versions.

[-] [email protected] 7 points 4 months ago

choose not to choose

But you still have made a choice. ;)

135
submitted 5 months ago by [email protected] to c/[email protected]

Does anyone have any experience with self-cleaning cat litter boxes? I'm curious if any particular model of self-cleaning litter box is any good. We now have 4 cats and it would be nice to not have to clean litter boxes manually 1-2 times every day.

Do they separate pee/poop from litter well? Are cats afraid to use them? Do they stink more than regular litter boxes because pee/poop are in them for longer periods? Are they a hassle to clean? Do you have to buy propietary supplies (custom litter? special trays?)?

Thanks for your input.

27
self-cleaning litter box? (lemmy.d.thewooskeys.com)
submitted 5 months ago by [email protected] to c/[email protected]

Does anyone have any experience with self-cleaning cat litter boxes? The ability to connect one to Home Assistant doesn't really seem useful to me - maybe it would be nice for HA to alert you when the litter box needs to be changed. But I'm really just curious if any particular model of self-cleaning litter box is any good - even by itself, without any "smart" features. We now have 4 cats and it would be nice to not have to clean litter boxes manually 1-2 times every day.

60
submitted 5 months ago by [email protected] to c/[email protected]

I bought an old iPad2 for the purpose of viewing a Home Assistant dashboard via a web browser. My thinking was that the ability to browse the web was the sole requirement for a tablet for this purpose, but I was wrong: Home Assistant's web pages apparently require a newer version of javascript than iOS 9.3.5 can handle, but the iPad 2 can only be updated to iOS 9.3.5.

So is it possible to flash a newer OS (e.g., linux) onto an old iPad 2? ChatGPT says it's not possible because a bootloader exploit for the iPad 2 isn't known, but ChatGPT is often wrong.

[-] [email protected] 13 points 5 months ago

2023 has been the Year of the Voice, and please stay tuned, as we will host a final 5th chapter live stream on our YouTube channel on 13 December 2023, at 12:00 PST / 21:00 CET! But that is not the end of the voice journey… Be sure to tune in!

[-] [email protected] 5 points 6 months ago

I should add that I'm not sold on AntennaPod, Podfetch, and GPodder. I think AntennaPod is a great app and I hope I can use it to do what I want here. Podfetch seems nice, with room to grow in terms of features and Ux. GPodder seems pretty terrible (though I hardly know it) but also seems to be the defacto standard in syncing podcasts and play-states (or perhaps the only game in town?).

But I'd ditch any or all of them if I was able to sync podcasts and play-states between devices. My only caveat is that the solution needs to be FOSS and self-host-able.

[-] [email protected] 31 points 7 months ago

I love Homepage. It's pretty, configurable, simple, and versatile.

[-] [email protected] 3 points 7 months ago

Thanks for sharing what works well for you. You replaced a chip?! That's way beyond my abilities.

[-] [email protected] 14 points 9 months ago

At the moment, "Element Call is temporarily not end-to-end encrypted while we test scalability."

view more: next ›

mike_wooskey

joined 9 months ago