5
2169
lka1988

@lemmy.dbzer0.com

lka1988 7 points 2 days ago

This is essentially what I did. I exported my passwords from Firefox, Chrome, iCloud, and even my work stuff from Edge; then imported all of it into my KeePass database, under their own folders.

I'm slowly clearing out duplicates and outdated credentials from each "browser export" folder, and sorting current passwords from them that weren't already in my database. It's a pain in the dick, but absolutely worth the trouble.

path: 0 24366434, hotness: undefined, score: 7, children: 0
lka1988 2 points 2 days ago

Interesting! How does it compare to Lunasea?

path: 0 24366295, hotness: undefined, score: 2, children: 1
lka1988 2 points 2 days ago

HAOS handles it a bit differently than standard Docker. Everything is managed within Home Assistant, including configuration (usually).

path: 0 24340357 24340572 24348051 24358189, hotness: undefined, score: 2, children: 0
lka1988 13 points 3 days ago

HAOS has more support for running additional add-ons/applications next to HA itself, on the same machine. In my case, that would be a Lenovo M710q Tiny loaded with an i7-7700T and 8GB RAM. Plenty of resources to spare for things like my Zigbee coordinator, NoLongerEvil (Nest thermostat), go2rtc (webcam shenanigans), Mosquitto broker (MQTT), Node-Red, Music Assistant, Aircast (for apple stuff), and other things.

TL;DR - It's mostly personal preference. If you already have a bunch of containers running for home stuff, then by all means, run HA in Docker. But if you prefer the "all in one box" approach, go for HAOS. I don't mind the "all in one box" approach, as long as it's related to the core function of HA.

path: 0 24340357 24340572, hotness: undefined, score: 13, children: 4
lka1988 12 points 5 days ago

"AMD engineer" in this case is actually "senior principal software engineer", which translates to "management". Who was likely told by the VP over his department to STFU based on what the VP was likely told by their legal dept.

Context is important.

path: 0 24319004, hotness: undefined, score: 12, children: 0
lka1988 3 points 4 days ago

So we took a look trying to figure out why her phone wasn't giving HA a consistent location... She likes to turn off the camera/mic/location killswitches 😂

Quick fix haha, but at least we know that Graphene is doing the thing that it's known to do!

path: 0 24272636 24273470 24277548 24289951 24290611 24290641 24291791 24335599, hotness: undefined, score: 3, children: 1
lka1988 1 point 3 days ago

I have a Pandora subscription. Trying to make it play nice with Music Assistant.

path: 0 24340337, hotness: undefined, score: 1, children: 0
lka1988 4 points 5 days ago

Here's mine. I have separate stacks for media players (Plex, JF) and downloaders (sabnzbd, qbittorrent), so I added their networks to the config. I also chose to mount the volumes directly in the YAML instead of the VM's fstab, I found it plays a bit nicer that way. None of this is exposed to the internet. And I need to reconfigure the *seerrs, since Jellyseerr and Overseerr merged into one project...

volumes:
  movies:
    driver_opts:
      type: nfs
      o: addr=192.168.1.175,nolock,soft,nfsvers=4
      device: :/Movies
  tvshows:
    driver_opts:
      type: nfs
      o: addr=192.168.1.175,nolock,soft,nfsvers=4
      device: :/TV_Shows
  music:
    driver_opts:
      type: nfs
      o: addr=192.168.1.175,nolock,soft,nfsvers=4
      device: :/Music
  torrents:
    driver_opts:
      type: nfs
      o: addr=192.168.1.175,nolock,soft,nfsvers=4
      device: :/Torrents
  prerolls:
    driver_opts:
      type: nfs
      o: addr=192.168.1.175,nolock,soft,nfsvers=4
      device: :/Plex_prerolls
  books:
    driver_opts:
      type: nfs
      o: addr=192.168.1.175,nolock,soft,nfsvers=4
      device: :/Books
  downloads:
    driver_opts:
      type: nfs
      o: addr=192.168.1.175,nolock,soft,nfsvers=4
      device: :/Downloads
services:
  sonarr:
    image: lscr.io/linuxserver/sonarr:latest
    container_name: sonarr
    restart: unless-stopped
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /var/lib/docker/volumes/sonarr_config:/config
      - tvshows:/TV_Shows
      - torrents:/Torrents
      - downloads:/Downloads
    ports:
      - 8989:8989
    networks:
      - plex_default
      - downloaders_default
  radarr:
    image: lscr.io/linuxserver/radarr:latest
    container_name: radarr
    restart: unless-stopped
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /var/lib/docker/volumes/radarr_config:/config
      - movies:/Movies
      - torrents:/Torrents
      - downloads:/Downloads
    ports:
      - 7878:7878
    networks:
      - plex_default
      - downloaders_default
  lidarr:
    image: lscr.io/linuxserver/lidarr:latest
    container_name: lidarr
    restart: unless-stopped
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /var/lib/docker/volumes/lidarr_config:/config
      - music:/Music
      - torrents:/Torrents
      - downloads:/Downloads
    ports:
      - 8686:8686
    networks:
      - plex_default
      - downloaders_default
  bazarr:
    image: lscr.io/linuxserver/bazarr:latest
    container_name: bazarr
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /var/lib/docker/volumes/bazarr_config:/config
      - movies:/Movies
      - tvshows:/TV_Shows
    ports:
      - 6767:6767
    restart: unless-stopped
    networks:
      - downloaders_default
      - plex_default
  overseerr:
    image: lscr.io/linuxserver/overseerr:latest
    container_name: overseerr
    restart: unless-stopped
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /var/lib/docker/volumes/overseerr_config:/config
    ports:
      - 5055:5055
    networks:
      - plex_default
      - downloaders_default
  jellyseerr:
    image: fallenbagel/jellyseerr:latest
    container_name: jellyseerr
    environment:
      - LOG_LEVEL=debug
      - TZ=Etc/UTC
      - PORT=5055
    ports:
      - 5056:5055
    volumes:
      - /var/lib/docker/volumes/jellyseerr_config:/app/config
    healthcheck:
      test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/status
        || exit 1
      start_period: 20s
      timeout: 3s
      interval: 15s
      retries: 3
    restart: unless-stopped
  prowlarr:
    image: lscr.io/linuxserver/prowlarr:latest
    container_name: prowlarr
    restart: unless-stopped
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /var/lib/docker/volumes/prowlarr_config:/config
    ports:
      - 9696:9696
    networks:
      - plex_default
      - downloaders_default
networks:
  plex_default:
    external: true
  downloaders_default:
    external: true
path: 0 24318787, hotness: undefined, score: 4, children: 0
lka1988 13 points 6 days ago

Gotta make that imaginary money line keep going up forever

🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄🙄

path: 0 24290418, hotness: undefined, score: 13, children: 0
lka1988 10 points 6 days ago

Wow, more pointless shit. Thanks, google.

path: 0 24290435, hotness: undefined, score: 10, children: 2
lka1988 2 points 5 days ago

This is good info to know. I want to check my 5800X3D.

path: 0 24318857 24319083, hotness: undefined, score: 2, children: 0
lka1988 1 point 5 days ago

Interesting. Thanks for the screenshots, I'll have my wife check those settings.

path: 0 24272636 24273470 24277548 24289951 24290611 24290641 24291791 24318935, hotness: undefined, score: 1, children: 0
lka1988 1 point 6 days ago

I want to say I enabled it, but I'll have to check again.

Does increasing the poll rate affect the battery usage much?

path: 0 24272636 24273470 24277548 24289951 24290611 24290641, hotness: undefined, score: 1, children: 4
lka1988 1 point 6 days ago

Home Assistant location doesn't quite play nice with GOS. My wife and I have been looking for a Life360 replacement ourselves. She runs Graphene, and it'll grab location periodically, but it's not consistent.

path: 0 24272636 24273470 24277548 24289951, hotness: undefined, score: 1, children: 6
lka1988 196 points 6 months ago

Once again - Proton is legally obligated to comply with the laws of the country in which they are based. This isn't specific to Proton, and they are not going behind your back to do this. In case it's not clear, this data is directly from Proton.

path: 0 21148721, hotness: undefined, score: 196, children: 30
lka1988 158 points 7 months ago

If your company provides you with a device to use for work, then you need to assume they can see anything you do on it, regardless of who makes it. It belongs to the company, not you.

path: 0 20777617, hotness: undefined, score: 158, children: 7
lka1988 137 points a year ago

Yeah I just straight up pirate movies now, I don't even try to hide it from people anynore. It's clear to me at this point that all these companies care about is getting richer by the minute off the backs of the common man, and their excuses for doing so are getting more and more pathetic.

path: 0 17271960, hotness: undefined, score: 137, children: 3
lka1988 129 points a year ago

UEFI has been the norm for well over a decade at this point. If you're trying to run a brand new GPU in a 15+ year-old system, you've already made many mistakes.

path: 0 15447751, hotness: undefined, score: 129, children: 5
lka1988 97 points a year ago path: 0 16809430, hotness: undefined, score: 97, children: 3
lka1988 94 points 7 months ago

Oh fuck off, dipshits. You chose this route despite the community that built you.

path: 0 20714977, hotness: undefined, score: 94, children: 35

thanks for using Leebra!

go to feed...