encrust9870

joined 2 years ago
[–] encrust9870@lemmy.world 23 points 2 weeks ago (2 children)

Alright, so I thought I had to click through to see the sale, but it's just a giveaway. I guess I have a lot of NSFW games in my library now. Yay?

[–] encrust9870@lemmy.world 144 points 2 weeks ago (6 children)

Maybe decades ago, but not now.

[–] encrust9870@lemmy.world 12 points 1 month ago (1 children)

I use KeepassXC on my computer and Keepass2Android on my phone. Passkeys work fine and are synchronized across my Synology.

[–] encrust9870@lemmy.world 3 points 1 month ago (2 children)

You may need to include a path. You might need to add each of your Shared folders separately. I have had this issue with Samba before where the host was browseable, but you could not mount the whole server.

[–] encrust9870@lemmy.world 3 points 1 month ago (1 children)

I don't understand the emu. It's so forced and just terrible.

[–] encrust9870@lemmy.world 37 points 3 months ago (4 children)

Why have you shared this?

[–] encrust9870@lemmy.world 8 points 3 months ago (1 children)

This is definitely a question for HR, but generally an employment change is a "life event".

[–] encrust9870@lemmy.world 4 points 3 months ago

I started with Ubuntu back when you could put in your parent's home address and they sent you free CDs. I'm on Arch (since about 2010), and I can't change.

[–] encrust9870@lemmy.world 6 points 4 months ago (8 children)

Who just carries around $3000?

[–] encrust9870@lemmy.world 1 points 4 months ago

This is a terrible title and article. This is not an exception to the laws of thermodynamics.

 

Textured ceilings probably help hide things, but why the lines?

[–] encrust9870@lemmy.world 1 points 5 months ago

It was just the Chlorox bathroom cleaner, so nothing that might be considered industrial strength. I think an all-purpose cleaner or maybe some Castile soap may be enough.

[–] encrust9870@lemmy.world 4 points 5 months ago (2 children)

Just a warning: check what cleaners are compatible with your new toilet seat. I used the same bleach I normally use on my new wooden seat and now my toilet is all streaked and discolored because the paint was removed. I'm going to try a spray-on enamel oil-based paint at some point to try to repair (after stripping and sanding), but better to not have to do this at first.

Most likely, I'm using stronger stuff than I need to anyway and I should switch cleaners. You shouldn't need to clean "99.99+% of viruses and bacteria" on your personal toilet seat because you and your family will spread those to each other through other means than your butts.

 
 

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') }}"
 
view more: next ›