encrust9870

joined 1 year ago
[โ€“] encrust9870@lemmy.world 6 points 1 week ago (1 children)

You really need to try mixing the candy corn with salted peanuts. ๐Ÿ‘๏ธ๐Ÿ‘„๐Ÿ‘๏ธ๐Ÿ‘Œ

[โ€“] encrust9870@lemmy.world 2 points 1 week ago

Did you change something in the license file yourself? Check your yay cache and perhaps delete the cached files for this package.

While there seem to be other issues with the PKGBUILD (typo for example), this seems like a problem with your local setup and not the package. Note that using AUR helpers like yay are not supported, so check if the package builds correctly manually.

[โ€“] encrust9870@lemmy.world 1 points 2 weeks ago

This one time at the Champaign Blues, Brews, and Barbecues festival, I opened a port-a-potty and there was a woman on top of a man inside having some fun, so I apologized and shut the door.

[โ€“] encrust9870@lemmy.world 3 points 4 months ago (2 children)

I plan on installing some water to feed my garden later this summer. I was considering PVC, but is this a better case for metal? How does the plastic handle the UV from the sun? I thought outdoor might be gray PVC, but I was thinking underground PVC with galvanized above.

[โ€“] encrust9870@lemmy.world 12 points 6 months ago (4 children)

Are you sure you just don't have the water level in the tank set right?

 

I made a quick template sensor to pull in data from AirNow. After, I then found out about the post at https://lemmy.world/post/730349, but I thought it might still be useful to share for a quick glance.

template:
  - sensor:
     - name: "Air Quality"
       unique_id: "airnowaqitemplate"
       state: >
         {% set aqi = states('sensor.airnow_air_quality_index') | int %}
         {% if aqi <= 50 %}
           Good
         {% elif aqi <= 100 %}
           Moderate
         {% elif aqi <= 150 %}
           Unhealthy for Sensitive Groups
         {% elif aqi <= 200 %}
           Unhealthy
         {% elif aqi <= 300 %}
           Very Unhealthy
         {% elif aqi >= 301 %}
           Hazardous
         {% else %}
           Unknown
         {% endif %}
       icon: >
         {% set aqi = states('sensor.airnow_air_quality_index') | int %}
         {% if aqi <= 50 %}
           mdi:emoticon-happy
         {% elif aqi <= 100 %}
           mdi:emoticon-neutral
         {% elif aqi <= 150 %}
           mdi:emoticon-sad
         {% elif aqi <= 200 %}
           mdi:emoticon-sick
         {% elif aqi <= 300 %}
           mdi:emoticon-dead
         {% elif aqi >= 301 %}
           mdi:skull-crossbones
         {% else %}
           mdi:minus-circle
         {% endif %}
       availability: "{{ has_value('sensor.airnow_air_quality_index') }}"
 
[โ€“] encrust9870@lemmy.world 1 points 1 year ago

I felt like I had to interrupt my wife's reading to show her this just because I knew she would understand. I recognize I am the problem here.