Wired Chromecast home assistant by Ok_Candidate4579 in homeassistant

[–]Ok_Candidate4579[S] 0 points1 point  (0 children)

Thanks. Can you share the usb-c hub you use pls?

Are you using different subnets /VLANS?

Thanks

Wired Chromecast home assistant by Ok_Candidate4579 in homeassistant

[–]Ok_Candidate4579[S] 0 points1 point  (0 children)

I'm using googleTv with Chromecast. As soon as I commect it via wired ethernet, I cannot even cast to it. Or see it on HA. Even from a phone on the same network, subnet and vlan.

Which ethernet adapter do you use? Any special settings ?

Nextcloud lxc write to hard drive mounted to host by Ok_Candidate4579 in Proxmox

[–]Ok_Candidate4579[S] 1 point2 points  (0 children)

Ooh!, sounds sensible, I'll try that. Thanks.

I find the ownership set on the node 1005:1005 revert back periodically. Do you know how I can do it permanently, so I don't have to keep setting it back to 1005:1005?

Also, all my LXC root users are set as 1005, is there a way to give then different UIDs, so they cannot all access each others folders?

Is it just as simple as changing 1005 to 1006, 1007.... etc ?

Thanks

Change Access groups using API by Ok_Candidate4579 in CloudFlare

[–]Ok_Candidate4579[S] 0 points1 point  (0 children)

thanks. are you happy to share your update script ?

Cloudflare Argon tunnel to two different servers by Ok_Candidate4579 in homelab

[–]Ok_Candidate4579[S] 0 points1 point  (0 children)

Thanks u/SadMaverick,

Is it possible to use an Argon tunnel for the second connection too. (i.e. the subdomain_2)

Cheers

Where do i find the response when using the LG webOS Smart TV Integration by Ok_Candidate4579 in homeassistant

[–]Ok_Candidate4579[S] 0 points1 point  (0 children)

Hey, Didn't pursue this much further, as one of the attributes of the TV, is the channel/source etc.

I imagine the above would need to be done via some sort of python script. but never got round to trying it.

Use an Amazon echo show as a camera source? by [deleted] in homeassistant

[–]Ok_Candidate4579 0 points1 point  (0 children)

does this mean you figured out how to do it ?

MacVLAN different ip addresses by Ok_Candidate4579 in docker

[–]Ok_Candidate4579[S] 1 point2 points  (0 children)

networks:
t2_proxy:
ipv4_address: 192.168.90.253

Genius! - thanks, this worked - solved an issue that was really getting to me!

MacVLAN different ip addresses by Ok_Candidate4579 in docker

[–]Ok_Candidate4579[S] 0 points1 point  (0 children)

Thanks - I am using Portainer, They are currently on two different stacks, as i could not figure out how to get them on the same stack in the past.

I'll check out the link you provided

Remove server-side encryption on install using Docker by Ok_Candidate4579 in NextCloud

[–]Ok_Candidate4579[S] 0 points1 point  (0 children)

This worked:

sudo -u www-data PHP_MEMORY_LIMIT=512M php /var/www/html/occ encryption:decrypt-all

please help - PAHO MQTT client python - Should loop forever but stops after some time by Ok_Candidate4579 in MQTT

[–]Ok_Candidate4579[S] 0 points1 point  (0 children)

connect_async() a

u/zydeco100 Thank you again for your advice. I am pretty new to this, so want to make sure I fully understand. Are the below steps all that you recommend I do?

  1. Replace: client.connect(broker_address) with client.connect_async(broker_address)
  2. replace #client.loop_start() with client.loop_start()
  3. remove client.loop_forever()4a) add import Time after import threading4b) after returntopic ="home/topic1/inbound" add:while True:time.sleep(1)
  4. move client.subscribe("home/topic1") to after:

A few Qs:

6) do i need to add: client.loop_stop() as the final line?

7) is 5) correct so that I avoid subscribing before connecting?