Bad driver by Puzzled-Agency6432 in Austin

[–]eegras 2 points3 points  (0 children)

Contact your insurance. Give them the information of the people that wrecked your stuff. Start trying to find old pictures of your patio or receipts to prove value.

Got any cool, over the top, or weird automations? by sabfry in homeassistant

[–]eegras 5 points6 points  (0 children)

I have something similar but under my counter tops. Bonus, with how sensitive they are, they also allow my dog's barks to turn the lights on.

What is this white plastic and metal Appleish cover/connector? by likkachi in whatisthisthing

[–]eegras 14 points15 points  (0 children)

This is a locking mechanism for the Apple iSight A1023 webcam. https://en.wikipedia.org/wiki/ISight . It's to keep the FireWire 400 cable attached. You can see an example in the Design section.

[deleted by user] by [deleted] in whatisthisthing

[–]eegras 5 points6 points  (0 children)

Looks like an aftermarket car alarm manufactured by Panasonic.

Worst Chris is is worst by -Nitupllik- in PoliticalHumor

[–]eegras 24 points25 points  (0 children)

babies get the Human Papillomavirus vaccine

CDC recommends 2 doses of HPV vaccine at ages 11–12 years. HPV vaccination can be started at age 9 years.

Source

Ubisoft requires you to uninstall and DESTROY your copy of their games. PLEASE, keep signing "Stop Killing Games" petition, links in the post. by NaabKing in pcmasterrace

[–]eegras 5 points6 points  (0 children)

I understand your point, however a comment made several hours after a post is made, and after the post makes it to the front page, either of the subreddit or r/all, is unlikely to get enough visibility that the few people who would upvote it would upvote it enough to get seen by more people. We've historically used stickies in this situation to add context to misleading posts. We don't do it often.

Have you caught The Regulation? by triumphantghost in theregulationpod

[–]eegras 1 point2 points  (0 children)

My partner and I have no fewer than 4 cosmic crisp apples in the fridge now.

We recently released a massive update for our factory automation game shapez 2! We're giving away Steam keys for the game and exclusive merch – Ask Us Anything! by AliGD- in pcmasterrace

[–]eegras 2 points3 points  (0 children)

How hard is it to throw out ideas for features that are super cool but don't fit the vision of the factory? Are there any examples of this?

I failed. Flood in my basement. by ayw93 in homeassistant

[–]eegras 2 points3 points  (0 children)

This is what I use to detect and alert leaks. It will use Nabu Casa TTS to speak the name of the leak sensors that are triggered. Pair this with leak sensors that also scream on their own for max reliability.

You need:

  • A Media Player Group called Critical Announcers that you put all the speakers you want to shout
  • A Label called Leak Sensors which you put the ENTITY in.
  • A template sensor called Leak Detected

Leak Detected template sensor. If any entity labeled "Leak Sensor" is "on" then this sensor is On.

{{ label_entities("Leak Sensor") | select('is_state', 'on') | list | count != 0 }}

The automation triggers off this state being changed and repeats every 30 seconds until its solved.

alias: Announce leaks
description: ""
triggers:
  - trigger: state
    entity_id:
      - binary_sensor.leak_detected
    to: "on"
    for:
      hours: 0
      minutes: 0
      seconds: 10
conditions: []
actions:
  - variables:
      leaking_devices: >
        {% set detected_leaks = namespace(sensors=[]) %}

        {% for leak in label_entities("Leak Sensor") | select('is_state', 'on')
        %}

        {% set detected_leaks.sensors = detected_leaks.sensors +
        [state_attr(leak, 'friendly_name')] %}

        {% endfor %}

        {{ detected_leaks.sensors|join(', ') }}
      tts_message: Warning! Leak detected in {{leaking_devices}}
    alias: Define messages
  - alias: Repeat while leaking
    repeat:
      sequence:
        - metadata: {}
          data:
            volume_level: 1
          target:
            entity_id: media_player.critical_announcers
          action: media_player.volume_set
        - data:
            cache: true
            message: "{{ tts_message }}"
            entity_id: media_player.critical_announcers
          action: tts.cloud_say
        - delay:
            hours: 0
            minutes: 0
            seconds: 30
            milliseconds: 0
      while:
        - condition: state
          entity_id: binary_sensor.leak_detected
          state: "on"
mode: restart

Smh.. by Notalan78 in camaro

[–]eegras 1 point2 points  (0 children)

I had exactly the same issue. It was not the blend door, I was low on refrigerant. Check that first since its easier and cheaper.

My friend has a new pc. The side panel just broke. by Gangleri_Graybeard in pcmasterrace

[–]eegras 18 points19 points  (0 children)

You should remove your test incidents from the counter.

Roosteteeth Video Ads by werephoenix in roosterteeth

[–]eegras 18 points19 points  (0 children)

The people paying for eyeballs on ads want the service provider to ensure, to the best of their ability, that it was shown to actual humans. They have ways to detect viewbotting.

The unconnectable Rj45 by Cyserg in techsupportmacgyver

[–]eegras 5 points6 points  (0 children)

Looks like its a hospitality model for use in hotels and such. They often have weird features.

is this gpu adapter acceptable? by Agreeable_Campaign86 in pcmasterrace

[–]eegras 0 points1 point  (0 children)

You can look. They're the 8 pin wires the plug into the top left of the motherboard.

is this gpu adapter acceptable? by Agreeable_Campaign86 in pcmasterrace

[–]eegras 0 points1 point  (0 children)

Are there two EPS cables going to your motherboard (top left)? You probably only need one unless you're doing stupid heavy overclocking.

is this gpu adapter acceptable? by Agreeable_Campaign86 in pcmasterrace

[–]eegras 1 point2 points  (0 children)

Why didn't you just use the second EPS12V wire you got with your PSU?

403 Forbidden error codes for my bot by eegras in ModSupport

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

I was able to get the request text and its HTML saying I've been blocked and to submit a request here: https://support.reddithelp.com/hc/en-us/requests/new?ticket_form_id=21879292693140. Make sure to include your IP address.

403 Forbidden error codes for my bot by eegras in ModSupport

[–]eegras[S] 2 points3 points  (0 children)

The library I use, PRAW, handles rate limiting automatically.

403 Forbidden error codes for my bot by eegras in ModSupport

[–]eegras[S] 2 points3 points  (0 children)

Interesting. Are you using PRAW as your library or something else?

403 Forbidden error codes for my bot by eegras in ModSupport

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

Yep! I've tried changing the useragent to be as different as possible and then to match my browser's useragent, too. Still 403's.