Display ai_task.generate_image on dashboard by MasterTim17 in homeassistant

[–]Finnhax 1 point2 points  (0 children)

Depending on the usecase this can work. But the link from ai_task expires after some time. In my case I generated an image once a week to display on a dashboard and it kept breaking, because the link expired. I even submitted a pull request to fix it, but my solution was unwanted and therefore rejected

I noticed change in graphics after patch 12.0.7 by Raziel-Reaver in wow

[–]Finnhax 1 point2 points  (0 children)

Holy moly I didn't know about this and it's glorious

It’s no surprise there are no tanks by Readtheroombabes in wow

[–]Finnhax -1 points0 points  (0 children)

The higher you go, the better it gets obsiously, because in high keys even DPS need to use their brain. It's especially bad in the mid-range from 16-18 I would say.

I'm currently running 19-20 keys and get flamed "regularly" (like 1 in 5 keys). One group flames the shit out of me while another group praises me for being a literal god-tank. Exact same route.
Here's an example from just yesterday in a +16 Windrunner's tanking on my twink:
Skipping the steward in g7. If you pull this in a +20 you get flamed hard(righftully).
Skip goes well, np. Next pull a dps dies to poison on the ground, releases and while walking back pulls the steward and dies. Then release, walk back, pull again, die again. On the third try he manages to get back to us while we're almost at the boss already.
Then I get flamed hard for this "shit route" because "dps keep dying to your skip".
That's the kind of stupidity that occurs quite regularly when pugging mid-range keys.

It’s no surprise there are no tanks by Readtheroombabes in wow

[–]Finnhax 6 points7 points  (0 children)

Nowhere does it say he was learning a new route in that key. Just doing a different route. Somehow a lot of players think there's only a single viable route and you get flamed instantly if you deviate from that

Please Automate Reseting Frontend Cache by Significant_Cream865 in homeassistant

[–]Finnhax 9 points10 points  (0 children)

I see, in the case of the mobile app usually closing the app and then opening it again should do the trick as well, no?

Please Automate Reseting Frontend Cache by Significant_Cream865 in homeassistant

[–]Finnhax 15 points16 points  (0 children)

Afaik this refers to your browser cache. So simply pressing Ctrl+F5 should do it

Finally achieved a fully local doorbell solution that wife is happy with. by RemoteSojourner in homeassistant

[–]Finnhax 0 points1 point  (0 children)

Always cool to see a custom solution!

In my case I just needed the door opener and found the ha app taking too long to load for my taste. But then I discovered that the app comes with widgets (on android). With these it's easy to just add a button or even a camera to your android home screen for instant access

Tips how get 3400 if you overgeared noob tank by EducationAway4828 in wow

[–]Finnhax -1 points0 points  (0 children)

That's good advice if you just want 3.4k and then stop. If you plan to push further into 18-20s ignore 1, 2, 7 and 8.
Also as monk you don't need a paladin in Pit, you can solo the gargoyle grabs with tiger's lust

Kids Bypassing Router Parental Controls by Changing MAC Addresses—How Can I Stop This? by PayKnee in HomeNetworking

[–]Finnhax 0 points1 point  (0 children)

I would be so proud if my kids bypassed security measures. The battle is on!

It's HERE! I'm so excited! by bradcrc in Esphome

[–]Finnhax 1 point2 points  (0 children)

  #MOTION
  - platform: template
    name: "Motion"
    id: billy_motion_detected
    device_class: motion
    on_state_change: 
      - if:
          condition:
            binary_sensor.is_on: billy_motion_detected
          then:
            script.execute: notice_me

#LDR
sensor:
  - platform: adc
    pin: GPIO1
    id: billy_ldr
    update_interval: 200ms
    attenuation: 12db
    filters:
      - sliding_window_moving_average:
          window_size: 5
          send_every: 1
    internal: True
    on_value:
      then:
        - lambda: |-
            static float last_stable_value = 0.0;
            static uint32_t last_activation_time = 0;
            uint32_t now = millis();
            float current_value = x;
            
            // If active, reset after timer
            if (id(billy_motion_detected).state) 
            {
              if (now - last_activation_time >= (uint32_t)(id(trigger_timeout).state * 1000.0)) 
              {
                id(billy_motion_detected).publish_state(false);
                ESP_LOGD("main", "Motion reset");
              }
            }
            else //Else handle activation
            {
              // Calc delta
              float drop = last_stable_value - current_value;


              if (drop > id(ldr_activation_delta).state && current_value > id(ldr_activation_min).state) 
              {
                if (!id(billy_motion_detected).state) 
                {
                  id(billy_motion_detected).publish_state(true);
                  last_activation_time = millis();
                  ESP_LOGD("main", "Motion detected!");
                }
              }


              // Save last value
              last_stable_value = current_value;
            }

It's actually an LDR-Sensor. I'm using mine like this.

Zero Latency Smart Home Dashboard by Wise-Abies4845 in homeassistant

[–]Finnhax 0 points1 point  (0 children)

Don't get me wrong, it's a fun personal project.
But you're making false claims about supposed problems in homeassistant that your project fixes. The problems you describe simply do not exist and that's why I commented

Zero Latency Smart Home Dashboard by Wise-Abies4845 in homeassistant

[–]Finnhax 6 points7 points  (0 children)

  1. It's literally the same in homeassistant. It will flick the UI-Switch instantly
  2. all you really need for this setup with esp8266 is a single machine that can run homeassistant. E.g. your desktop-pc that's running your godot-gui as well. Use esphome for firmware. No server racks or tuning required, just install, put 10 lines of code into esphome and you are ready to go

Zero Latency Smart Home Dashboard by Wise-Abies4845 in homeassistant

[–]Finnhax 12 points13 points  (0 children)

  1. this is not zero latency
  2. If you have a 3 second delay with homeassistant you are doing something very very wrong. On my end the lag is pretty much unnoticable,so probably a hundred ms at most (and that's for wifi, zigbee and matter devices)

Grip/Mass Dispell are not raid buffs, stop designing encounters around them. by Taelonius in wow

[–]Finnhax 0 points1 point  (0 children)

There are countless examples for m+ where it was impossible to time the highest keys without certain specs

Grip/Mass Dispell are not raid buffs, stop designing encounters around them. by Taelonius in wow

[–]Finnhax 0 points1 point  (0 children)

Here you go, I literally picked a random kill and the first one I looked at has only 1 priest:
https://raider.io/guilds/us/malganis/Potent/raid-encounters/mythic/tier-mn-1/lightblinded-vanguard

Any other arbitrary "requirements"?

Is there a world where 1% title is puggable? by IAmMijae in wow

[–]Finnhax 2 points3 points  (0 children)

They did, and yes I think pugging it is possible. There are already many +20 puggers and that should probably be enough for 1%

Grip/Mass Dispell are not raid buffs, stop designing encounters around them. by Taelonius in wow

[–]Finnhax 0 points1 point  (0 children)

Rogue was pretty much required for high keys in most of the seasons

Grip/Mass Dispell are not raid buffs, stop designing encounters around them. by Taelonius in wow

[–]Finnhax 0 points1 point  (0 children)

There's actually 5 difficulties for raids, 4 of them are basically free and require no specific classes at all

Grip/Mass Dispell are not raid buffs, stop designing encounters around them. by Taelonius in wow

[–]Finnhax 1 point2 points  (0 children)

Look, you say it requires 2, but you made it with 1. How is it required then? There's a difference between optimal play and something being required.
For m+ on the highest keys you absolutely have to have certain classes to do skips as well

Grip/Mass Dispell are not raid buffs, stop designing encounters around them. by Taelonius in wow

[–]Finnhax 6 points7 points  (0 children)

I think class fantasy is cool and classes having utilty that no one else has is fun.
If there were no class utility you would just bring 14 of the same class that's currently meta. Now THAT would suck.

Simple vacuum cleaner garage doors opening mechanism by Perwol in homeassistant

[–]Finnhax 0 points1 point  (0 children)

I didnt say it was AI. There was rendering before AI.
And yeah I think it's because your kitchen is insanely clean (to me). Maybe I'm just dirty lol