• 1 Post
  • 25 Comments
Joined 1 year ago
cake
Cake day: July 9th, 2023

help-circle
  • TreeGhost@lemm.eetoGreentext@sh.itjust.worksAnon explains the 2nd amendment
    link
    fedilink
    English
    arrow-up
    9
    arrow-down
    1
    ·
    12 days ago

    You literally just described American healthcare. I don’t know where people get this idea that you don’t have to wait to see a doctor here. I’ve had to book doctors appointments months out. And specialists can be 6+ months of waiting.

    I think the Americans that say otherwise actually don’t try to go to the doctor on a regular basis. And if you press them on why, they’ll admit it is a fucking hassle and worried about the bill if they need to actually get something done.











  • TreeGhost@lemm.eetohomeassistant@lemmy.worldUpdating notifications
    link
    fedilink
    English
    arrow-up
    3
    ·
    edit-2
    6 months ago

    I utilize scripts for all of my notification needs. It allows me to utilize logic based around certain criteria, like this on that will only notify family members at home. If no one is home it will wait and notify the first person to show up. This also allows me to be able to quickly toggle notifications for my wife when I’m testing automations with notifications.

    alias: Notify People at Home
    fields:
      title:
        description: The title of the notification
        example: Laundry
      message:
        description: The message content
        example: Washer Finished!
    sequence:
      - if:
          - condition: state
            entity_id: zone.home
            state: "0"
        then:
          - wait_for_trigger:
              - platform: numeric_state
                entity_id: zone.home
                above: "0"
        else: []
      - parallel:
          - if:
              - condition: state
                entity_id: person.bob
                state: home
            then:
              - service: script.notify_bob
                data:
                  title: "{{ title }}"
                  message: "{{ message }}"
          - if:
              - condition: state
                entity_id: person.mary
                state: home
            then:
              - service: script.notify_mary
                data:
                  title: "{{ title }}"
                  message: "{{ message }}"
    mode: queued
    icon: mdi:exclamation-thick
    max: 10
    





  • Its crazy to me that people think its the telephone companies that need more regulations here and not the police. SWAT teams shouldn’t be going in guns blazing on anonymous calls and any injury or death should be solely their responsibility. By all means try to prosecute the people calling in the first case for misuse of emergency services, if you can identify them, but we all know who pulled the fucking trigger. Police can’t both get to decide that they get to selectively enforce the law and then take no responsibility when the injure or kill innocent people.