Entity control from iOS widget
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLU
    Luckyfriend222
    1mo ago 100%

    Sorry, reread your post. I am indeed wrong. My entity control is done with script like turning porch light on, so that is why I have it in my widget. It is a script. Sorry about that.

    1
  • Entity control from iOS widget
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLU
    Luckyfriend222
    2mo ago 100%

    He is probably talking about light switches like a porch light or garage light that you want quick access to when you get home and for some reason your automation never switched it on, so you want to quickly access it on a homescreen via a widget, and not have to go into the app and search through multiple dashboards etc. His use case and therefor his question is totally valid.

    2
  • Entity control from iOS widget
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLU
    Luckyfriend222
    2mo ago 100%

    Never used it, but checked iOS widget now, and you are correct. It only gives options to three things: Ask AI, Actions, and open page. Nothing else on my iOS.

    2
  • Server Monitoring software recommendations
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLU
    Luckyfriend222
    3mo ago 100%

    I use this too. When SNMP is set up there are loads of things you can monitor with LibreNMS. Much less of a learning curve than Grafana + Prometheus, although the latter probably has some nice tweaks available that SNMP does not provide.

    2
  • Being a lawyer is hard.
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLU
    Luckyfriend222
    4mo ago 100%

    Not a dad joke per say but:

    What is the difference between a sperm cell and a lawyer?

    A sperm cell has a one-in-a-billion chance of becoming human one day.

    5
  • 2023 Las Vegas Grand Prix - [PRACTICE 2] discussion thread
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLU
    Luckyfriend222
    11mo ago 94%

    Sorry for asking a question, on a discussion thread dedicated to this sport and more specifically this session, relating to an incident that just happened. No one HAS to answer me, I asked and other online users were nice enough to answer me. I had in fact read about the Sainz retirement, but had no info regarding the "security" thing. Hence me asking. If you don't want to answer, don't. But no need to tell someone off purely because they had asked a question, dude.

    15
  • 2023 Las Vegas Grand Prix - [PRACTICE 2] discussion thread
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLU
    Luckyfriend222
    11mo ago 88%

    Not trolling, genuinely asking. Why do you say this? I have been working 18 hour shifts all week and have not been able to follow up on anything F1 related. Could you post the backstory or some links where I can inform myself please?

    7
  • Microsoft Outlook can see your SMTP credentials
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLU
    Luckyfriend222
    11mo ago 90%

    Yeah I am open to anyone who can prove this wrong/correct. I saw it and thought it needs sharing. I am more than willing to ask forgiveness afterwards :-) Luckily I too only use Thunderbird.

    9
  • www-heise-de.translate.goog

    Sorry I don't have an english version of this article, this is the best source I could find for it. https://www-heise-de.translate.goog/news/Microsoft-krallt-sich-Zugangsdaten-Achtung-vorm-neuen-Outlook-9357691.html?_x_tr_sl=de&_x_tr_tl=en&_x_tr_hl=de

    79
    7
    Magnussen rear left failure
  • "Initials" by "Florian Körner", licensed under "CC0 1.0". / Remix of the original. - Created with dicebear.comInitialsFlorian Körnerhttps://github.com/dicebear/dicebearLU
    Luckyfriend222
    12mo ago 100%

    LOL stupid me was looking at the wrong side. I saw him clipping the curb and thought right rear actually failed. Nice screengrab!

    4
  • Hi everyone I have read through the documentation now several times, and I just want to soundboard something with someone. Regarding the environments we can set up. Is this meant for example as a production cluster and a dev cluster? And if so, is it possible to put a docker swarm cluster in there? I don't see how gitlab will 'know' how to deploy an application to docker swarm? What am I missing? Or am I better off just deploying "manually" via the CI/CD pipeline like I am doing now? TIA

    2
    2

    Hi community I have a pipeline where a stack (service) is deployed to my docker swarm. I want to use $CI_PROJECT_NAME in my docker service definition file to define the docker service name. But it seems the variable is not being expanded, or something else is wrong. I need to have a generic `yml` so I can distribute this to all devs and they don't have to change anything. Example of what I am trying to achieve: ``` version: '3.9' services: $CI_PROJECT_NAME: image: myregistry/devops1/$CI_PROJECT_NAME/$CI_PROJECT_NAME:latest deploy: replicas: 3 endpoint_mode: dnsrr update_config: parallelism: 1 delay: 3s order: start-first failure_action: rollback monitor: 1m restart_policy: max_attempts: 3 placement: max_replicas_per_node: 1 networks: - microservices volumes: - apache-logs:/var/log/ networks: microservices: external: true volumes: apache-logs: driver: local driver_opts: o: bind device: /mnt/swarm_shared/services/$CI_PROJECT_NAME type: none ``` I know this is not a docker forum, but was thinking the issue is with my pipeline rather than my docker compose file. I would appreciate any help I can get. TIA EDIT: As per [this community post](https://forum.gitlab.com/t/use-ci-variables-in-other-files/72548/2) I used a sed replacement command to solve my problem. Ugly, but functional. Thanks for the input!

    4
    1