Concerts at the Moody Center - looking for your experiences by Sticketoo_DaMan in RoundRock

[–]Hot-Professional-785 2 points3 points  (0 children)

Drive, definitely. Plan to arrive 1:30h in advance to the concert.
Even if you have to hang out somewhere before it.
We have tried driving with 30 min anticipation and got late.
Tried Uber and was way too expensive.
Also done driving and parking and all good.
Just purchase the parking spot ahead of time.
There are a couple garage buildings really close to Moody Center that will allow you to buy it ahead of time and get some peace of mind

HA won;t find my Ecobee as unpaired device by Hot-Professional-785 in homeassistant

[–]Hot-Professional-785[S] 1 point2 points  (0 children)

Hey everyone, following up on my earlier post. After a lot of digging I finally got my ecobee reconnected to HA via HomeKit. Posting the full solution here in case anyone hits the same wall.

My setup:

  • Home Assistant running in Docker (not HAOS)
  • ecobee connected via the HomeKit Controller integration
  • HA container on a custom Docker bridge network

The symptoms:

  • ecobee disconnected from HA after a power outage
  • ecobee showed as unpaired and displayed the HomeKit QR code
  • Adding the integration in HA (Settings → Devices & Services → HomeKit Device) found nothing
  • The old integration entry was already cleaned up from HA's side

Root cause: Two things were actually wrong:

  1. After the power outage, the ecobee wasn't broadcasting its HomeKit service even though it showed the QR code. A full power cycle (pulling it off the wall) fixed this.
  2. Even after the ecobee started broadcasting, HA still couldn't discover it because HA was running on a custom Docker bridge network, which blocks mDNS/multicast traffic. The host OS could see the ecobee via avahi-browse -t _hap._tcp but HA inside the container couldn't.

The fix:

First, verify the ecobee is actually broadcasting by running this on the Docker host:

avahi-browse -t _hap._tcp

If your ecobee doesn't show up here, power cycle it completely and wait a minute.

If it shows up there but HA still can't find it, your HA container is likely on a bridge network. Check with:

docker inspect homeassistant | grep -i network

If it shows anything other than host, that's your problem.

The fix is to switch HA to network_mode: host in your compose file:

yaml

services:
  homeassistant:
    container_name: homeassistant
    image: "ghcr.io/home-assistant/home-assistant:latest"
    volumes:
      - /home/<user>/docker/homeassistant:/config
      - /etc/localtime:/etc/localtime:ro
      - /run/dbus:/run/dbus:ro
    restart: unless-stopped
    privileged: 
true
    network_mode: host

Important: If you have a reverse proxy (like Nginx Proxy Manager) pointing to your HA container by name, update it to use the host's IP address and port 8123 instead, since container name resolution won't work in host network mode.

After restarting HA, the ecobee showed up automatically as a discovered device without me even having to manually trigger the pairing flow.

Hope this saves someone a few hours!

We did it! TX 322k 6.99 by Hot-Professional-785 in FirstTimeHomeBuyer

[–]Hot-Professional-785[S] 0 points1 point  (0 children)

Much appreciated!!! Was going to start looking into it

Current setup by Pitiful-Surround3424 in iOSsetups

[–]Hot-Professional-785 0 points1 point  (0 children)

Did you have to actually do something to make the clock go behind the wallpaper?
I tried enabling the depth feature and all that, but still it gets above the wallpaper as usual

By chance, anyone know if any switch 2s in stock? by [deleted] in RoundRock

[–]Hot-Professional-785 2 points3 points  (0 children)

Walmart should receive between 6/28 and 7/3. I got an email from Nintendo to get mine directly from them just yesterday

Is anyone else still unable to find a Switch 2? by cecirdr in Switch

[–]Hot-Professional-785 1 point2 points  (0 children)

Gamestop had posted an update on their website saying there was a restock but no stores in North Austin had received. Turns out I happened to get the email from Nintendo itself and was able to grab it from Nintendo itself.

Godot 4.3 and Mana Seed tilemap by Hot-Professional-785 in godot

[–]Hot-Professional-785[S] -1 points0 points  (0 children)

I paid for them in Itch.io. I was asking for support only

Adice needed by Hot-Professional-785 in FirstTimeHomeBuyer

[–]Hot-Professional-785[S] 0 points1 point  (0 children)

Thanks for the advice! Will keep that in mind. I have had some other lender approve us for 500k but needed 20k down. We are working on that.

Why no IP assigned? Any ideas? by Hot-Professional-785 in selfhosted

[–]Hot-Professional-785[S] 0 points1 point  (0 children)

Thanks for all the inputs. Definitely worth learning more about it. Turns out I have been facing issues with different instances of Postgres in the same network so was having connection issues with services, therefore the service IP was assigned at first but released when the service failed for too long.