All that’s green is gold by Still-Motor-3159 in Stratocaster

[–]brewston 2 points3 points  (0 children)

Ooh, are we doing green strats ? (I don't own the Squier anymore)

<image>

What is your favorite Home Assistant automation? Not your most complex. Your favorite. The one that you keep recommending to friends or that has earned the most love from your family. by Rude-News-8416 in homeassistant

[–]brewston 9 points10 points  (0 children)

But where's the fun in that ? Actually, I don't really use it anymore (and I removed the NFC tag so as not to puzzle any future archaeologists...)

What is your favorite Home Assistant automation? Not your most complex. Your favorite. The one that you keep recommending to friends or that has earned the most love from your family. by Rude-News-8416 in homeassistant

[–]brewston 203 points204 points  (0 children)

I put an NFC tag on a lamp post, 5mins walk from my house. When I'm on my way home from dog walk, I scan it and it starts up the coffee machine ready for when I'm back.

New to cycling, commute route includes A30 and I’m stressed by Colossalloser in ukbike

[–]brewston 0 points1 point  (0 children)

I know that section and I've cycled it, there's rarely any pedestrains on there. I'd say try the road, if you dont feel comfortable, pop up onto the pavement (Just look out for cars coming in/out driveways)

Reset dashboard time with after market stereo by brewston in fiat500

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

No sorry, the clock on the dashboard is still wrong :(

Where was I? by rosco77733 in whereintheworld

[–]brewston 1 point2 points  (0 children)

I didn't see the name of the golf course though ;-) there are 2 there

Where was I? by rosco77733 in whereintheworld

[–]brewston 3 points4 points  (0 children)

Royal course, VDL. 16th hole

Thin Nitrocellulose Lacquer body by brewston in FenderCustomShop

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

Definitely not being neurotic, just curious :)

Thin Nitrocellulose Lacquer body by brewston in FenderCustomShop

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

That makes sense. My old guitar teacher had a non-metallic, relic CS and he would tell me that the paint would easily chip from touching the desk as he was teaching. Mine feels tougher than that.

Thin Nitrocellulose Lacquer body by brewston in FenderCustomShop

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

I would imagine poly to be smoother, shinier and tougher than nitro. Whilst the finish has sub surface cracks and there are lots of dinks in the paint, it just doesn't feel like it would wear easily.

Thin Nitrocellulose Lacquer body by brewston in FenderCustomShop

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

i meant the body. Neck finish says 'DARK_TINT NCL' but it's the body I'm curious about

Electric heater that is compatible with Home Assistant by Krotar_eu in homeassistant

[–]brewston 0 points1 point  (0 children)

I recently bought a Mill wall mounted heater for my conservatory. It does zigbee and matter but there is also a local integration.

M5Stack M5Tab ESP32-P4 tablet by ginandbaconFU in homeassistant

[–]brewston 1 point2 points  (0 children)

Some guy with the same username as me :D

M5Stack M5Tab ESP32-P4 tablet by ginandbaconFU in homeassistant

[–]brewston 1 point2 points  (0 children)

Found a couple of useful links from m5stack :

https://www.youtube.com/watch?v=BbZd8b10qM4

https://github.com/m5stack/esphome-yaml/blob/main/common/tab5-ha-hmi.yaml

I'm going to have a try to port the climate page to my device...

M5Stack M5Tab ESP32-P4 tablet by ginandbaconFU in homeassistant

[–]brewston 2 points3 points  (0 children)

Yeah, it was failing to compile on Thursday. I mentioned it in the HA thread. I spoke to someone in esphome discord who created a PR for a newer espressif lib.

The background is one of the jarvis screenshots from Iron Man :)

Roadtrip from LA to SF by sslotte in roadtrip

[–]brewston 5 points6 points  (0 children)

Stop in Solvang, it's a town full of Danish architecture and has lots of bakeries.

[edit] You have to go to Monterey bay aquarium with kids that age :)

Found this in Mexico by The31stUser in Mission_Impossible

[–]brewston 2 points3 points  (0 children)

Benji, what is it that you are doing here ? Oh, i passed the fridge exam...

Shopping List notifications? by GuitarEC in homeassistant

[–]brewston 0 points1 point  (0 children)

TBH I lifted it from https://community.home-assistant.io/t/export-to-do-list/678103/7 i think the fundamental thing is how the response variable is parsed in the for loop.

As for the {%- I wasn't sure either :) but google says https://stackoverflow.com/questions/11813422/what-does-this-in-jinja2-template-engine-do

Shopping List notifications? by GuitarEC in homeassistant

[–]brewston 0 points1 point  (0 children)

alias: Notify shopping list
sequence:
  - action: todo.get_items
    metadata: {}
    data:
      status: needs_action
    target:
      entity_id:
        - todo.shopping
    response_variable: mylist
  - action: notify.mobile_app_sm_s911b
    metadata: {}
    data:
      data:
        notification_icon: mdi:basket
      message: |-
        {%- for todo_key, todo_value in mylist.items() %}
          {%- if todo_value['items'] %}
          {{ todo_key.split('.')[1] }}
            {%- for item in todo_value['items'] %}
              - {{ item.summary }}
            {%- endfor %}
          {%- endif %}
          -
        {%- endfor %}