• 0 Posts
  • 16 Comments
Joined 1 year ago
cake
Cake day: June 10th, 2023

help-circle



  • I mean I find it mind boggling that people aren’t noticing yet, that Elon has basically pulled a bait and switch. Especially now that it is becoming even more obvious. Take a product that everyone is using, and degrade the free aspects of it to the point that the only way for people to be able to continue using it - is by paying for it.

    His excuses are ludicrous, that he thinks that advance notice would let “bad actors” change the way they operate, as if those bad actors wouldn’t have just changed the way they operate as soon as it started being limited anyway.

    Hell there is a thread floating around somewhere which shows that you can just reverse engineer the app and get the API key that way. The bots and “bad actors” will therefore continue, and legitimate users will be the only ones impacted.







  • Yeah but Elons problem isn’t just the ASD - that’s part of it sure, but his problem is having ASD and a mother who told him repeatedly from a very very early age, that he was a genius.

    That would be damaging to a neurotypical persons self view, but I dread to think how that damages a neurodivergent 😲

    In short, Elon definitely displays narcissistic tendencies - and I suspect that being constantly told you are a genius who will change the world, is a bug reason why.


  • My automations include:

    • Setting the lighting mode to “night mode” based on a threshold of the outside lux level, which is changed dynamically based on the reported weather condition.

    • Setting a master brightness input_number based on a threshold of the outside lux level, which is dynamically changed based on the reported weather condition. Every room then has it’s own input_number which is automatically set every time the master brightness changes, and either has additional brightness added relative to the master, or brightness subtracted.

    • At 7:30am some Jinja code starts setting a daylight temperature input_number which starts adjusting the Kelvin temperature of supported lights in the house. I’m aware that there are various integrations to do this, but they all appear to be based on the actual sun, and as a SAD sufferer I don’t understand why people would want that, especially in the winter. My solution guarantees me at least 8 hours of “daylight” regardless of what the time of year is. - The code is ridiculously simple too:

        {% set k_end = 5500 %} {% set k_start = 2000 %} {% set t_start =
        today_at('07:30') %} {% set t_end = today_at('10:30') %} {% set cv =
        ((now()|as_timestamp) - t_start|as_timestamp)|int %} {{ k_start +
        (cv/3.0857)|int }}
    
    

    Then the reverse happens starting at 6pm:

        {% set k_start = 5500 %} {% set k_end = 2000 %} {% set t_start =
        today_at('18:00') %} {% set t_end = today_at('21:00') %} {% set cv =
        ((now()|as_timestamp) - t_start|as_timestamp)|int %} {{ k_start -
        (cv/3.0857)|int }}
    
    

    My other favourite automation, is something I call Music Walk, essentially when I play music on a group of speakers, as I move about the house when the occupancy of a room changes (camera through frigate, and Zigbee motion) a script is triggered which increases the volume in that room, and starts a timer for 01:30:00 and then after occupancy has been cleared, the timer is reset to 00:05:00 and when the timer finishes - it will run the script that changed the volume originally and set it to 0.1 So it feels like as I walk into rooms the music follows me there, but really it was already playing there - just quieter.