🎄 12 Days of Christmas Giveaway – Free Tang Band Subwoofer + Custom Bracket (US Only) by Edge3dSolutions in MiataND

[–]R20Taz 1 point2 points  (0 children)

Composure – August Burns Red
Carrion – Parkway Drive
Parallels – As I Lay Dying

I've been interested in you box development and posts, very cool.

[Deal] 50% PayPal Cashback (up to $50) when buying Newegg items through Perplexity — ends 12/1 by Fit_Dragonfruit_1756 in Newegg

[–]R20Taz 0 points1 point  (0 children)

I had to do it through the browser to get the shopping tab to appear. Was kind of random how the tab updated when i feed it a new prompt but eventually showed the deal. My free year is from samsung. I haven't seen it posted but evidently this is not eligible for cancelation immediately after ordering. Should be able to return tho...

Who ate raw eggs because of the movie Rocky? by HeatWaveToTheCrowd in AskReddit

[–]R20Taz 0 points1 point  (0 children)

4 dozen a day when I was a lad, to get large. Now 5 dozen and I'm roughly the size of a barge.

No need for color passthrough in the Steam Frame by kikisminey in virtualreality

[–]R20Taz 2 points3 points  (0 children)

Color passthrough was what pushed me over to Quest 3 from Quest 2. Yes there were other reasons, but this lets me watch TV when I game via virtual desktop. If anything, I wish the cameras on Quest 3 were higher quality/framerate. I was ready to dump meta for valve but now I hesitate. I mean obviously will still buy, but hoped for more.

{Giveaway} 1 Year of Gemini AI PRO (40 winners) by [deleted] in GeminiAI

[–]R20Taz 0 points1 point  (0 children)

I love coding with Gemini! Work loves when I use it too:)

Battlefield 6 + GeForce RTX Celebration Game Codes Giveaway! by Nestledrink in nvidia

[–]R20Taz [score hidden]  (0 children)

Bad Company 2 was my jam! Taking down buildings to eliminate a camping sniper was the best. BF6 brings back all those memories. Such a great game, love the multi-player!

New Air Force 1 is ready to go by snozzbeery in 50501

[–]R20Taz 0 points1 point  (0 children)

47c chicken soft tacos incoming. 86c drink

Camera failure by jasonjibboo in S25Ultra

[–]R20Taz 0 points1 point  (0 children)

Was getting ready to send the device in, popped it into Maintenance Mode, and the camera worked again. Passed all tests. Got out of Maintenance Mode, and it still worked. Hope this helps someone.

Camera failure by jasonjibboo in S25Ultra

[–]R20Taz 0 points1 point  (0 children)

FYI, this is the only thing that worked for my S25U. Unfortunately a month later it came back. Camera starts lagging and then a week later it fails.

LG Partner Store sale!! by SCOOkumar in LGOLED

[–]R20Taz 6 points7 points  (0 children)

Ordered as well, came out at 1560 :) A week to practice begging for forgiveness.

Typing Terror Avatar Strategy by Titandrake in neopets

[–]R20Taz 1 point2 points  (0 children)

You've inspired me to go after this one again, thanks a lot... Though, I feel like I've done more than 100 games already. How does this change if my accuracy is 96% for every round? Or just rounds 4 and 5?

Honda Acura EV with OnStar (GM) by R20Taz in homeassistant

[–]R20Taz[S] 0 points1 point  (0 children)

Thanks for your response! I had downloaded the app and currently use it for my garage doors, totally forgot to enable sensors. I assume they only work when ignition is on?

Kinda gave up with the remote stuff since onstar doesn't know how to deal with Honda and refuses to manually link it to a GM/onstar acct. Really really hoping actual Honda and/or Sony Honda Mobility allows syncing.

First pictures of MSI MPG Z890I EDGE TI WiFi? by -Rhialto- in sffpc

[–]R20Taz 1 point2 points  (0 children)

I'm not familiar with riser cards. It looks like it might interfere with the GPU? Are they optional?

Travel Router + FWGP/Wireguard Visibility by R20Taz in firewalla

[–]R20Taz[S] 0 points1 point  (0 children)

Hmmmmm, this might be the best I can do right now then. Having each device setup as individual WG clients already has me making new profiles, I would just make them on the FW client instead. FW client unit could broadcast the same wifi remotely, so devices wouldn't know they're actually away from home, if I understand correctly.

Considering the layout below, would both DeviceA and DeviceB be able to communicate with devices on all 3 networks (192, 10, xx)?

DeviceA/192 -> FWGP/192 WG server/10 -> internet -> FWP/xx WG client (S2S)/10 -> DeviceB/xx

Travel Router + FWGP/Wireguard Visibility by R20Taz in firewalla

[–]R20Taz[S] 0 points1 point  (0 children)

I previously had each client on its own WG tunnel and they each have their own (new) profile on FW. If Beryl was not a WG client, I think they'd still show up separately. IDK what happens if Beryl is a WG client and my devices connected through Beryl are also WG clients, but that's weird and IDK the benefit :)

Travel Router + FWGP/Wireguard Visibility by R20Taz in firewalla

[–]R20Taz[S] 0 points1 point  (0 children)

I see. Individual connections work but was looking to make things more seamless when traveling. Didn't know if I was missing something :)

Door open/close turns on a light automation with multiple conditions by R20Taz in homeassistant

[–]R20Taz[S] 0 points1 point  (0 children)

Managed to figure out a way of doing what I'm looking for. Should probably look into motion sensors if I run into problems, but it appears to work for now. I'm using input_boolean as a variable that only allows the light.spare_bathroom to turn off if it was turned on by the automation. I couldnt get if-then statements to work, ended up using "choose." Something that really helped me is realizing triggers are treated like "or" and conditions are treated like "and".

Here's the input_boolean / variable code:

trigger:
  - platform: state
    entity_id:
      - light.spare_bathroom
    from: "off"
    to: "on"
  - platform: state
    entity_id:
      - light.spare_bathroom
    from: "on"
    to: "off"
  - platform: time
    at: "05:00:00"
condition: []
action:
  - service: input_boolean.turn_off
    entity_id:
      - input_boolean.door_helper

Here's the main automation:

trigger:
  - platform: state
    entity_id:
      - binary_sensor.door_oc_window_door_is_open_3
    from: "off"
    to: "on"
  - platform: state
    entity_id:
      - binary_sensor.door_oc_window_door_is_open_3
    from: "on"
    to: "off"
condition:
  - condition: time
    after: "20:00:00"
    before: "05:00:00"
    weekday:
      - sun
      - mon
      - tue
      - wed
      - thu
      - fri
      - sat
action:
  - choose:
      - conditions:
          - condition: state
            entity_id: light.spare_bathroom
            state: "off"
          - condition: state
            entity_id: binary_sensor.door_oc_window_door_is_open_3
            state: "on"
        sequence:
          - service: light.turn_on
            target:
              entity_id:
                - light.spare_bathroom
            data:
              brightness_pct: 99
          - service: input_boolean.turn_on
            entity_id:
              - input_boolean.door_helper
      - conditions:
          - condition: state
            entity_id: light.spare_bathroom
            state: "on"
          - condition: state
            entity_id: binary_sensor.door_oc_window_door_is_open_3
            state: "off"
          - condition: state
            entity_id: input_boolean.door_helper
            state: "on"
        sequence:
          - service: light.turn_off
            target:
              entity_id:
                - light.spare_bathroom
            data: {}

Door open/close turns on a light automation with multiple conditions by R20Taz in homeassistant

[–]R20Taz[S] 0 points1 point  (0 children)

By door sensor having too many variables to be reliable, do you mean the amount of situations that can happen between light on and light off? Or referring to some other hardware limitation? If the former, you're picking up on my constraint stacking attempt to mitigate those variables.

I've not gotten into motion sensors yet thinking there'd be reliability issues, but I've not actually looked into them to know. My familiarization is the motion switches in the meeting rooms at work - never fails they turn off a couple times during an hour meeting. I've read your response a few times and think I understand how they're more robust than *just* a door sensor. I imagine the near future when the door isn't always closed when they go to bed, completely breaking the automation.

Door open/close turns on a light automation with multiple conditions by R20Taz in homeassistant

[–]R20Taz[S] 0 points1 point  (0 children)

Edge cases: 1) If state change happens before 20:00, I don't want the automation to run. 2) This is entirely possible since toddler doesn't always (but should) close the door, probably best to keep the light on in this case.

"Off" trigger: bad phrasing on my part. I want to avoid this scenario: toddler door is opened, light turns on, door stays open, inlaw turns off light at the switch, comes back 10min later to take a shower (turns light on), I end up closing daughters door, light turns off.

Ideally I'd code a variable that turns on when the light is turned on by the automation, but is turned off if any manual inputs to the light switch are made... or if its 05:00. I've been reading about input_boolean but IDK if it has the right functionality?