Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)SI
Posts
4
Comments
29
Joined
1 yr. ago
  • Not mine (I'm not at home right now) but here a pic of someone elses: https://imgur.com/JUTggFt as for why I need it... I don't really, but I like it and want it. I also don't need a 75% but would like one. That is what's cool about custom anything, right?

  • Mechanical Keyboards @lemmy.ml
    silmarine @discuss.tchncs.de

    KBD75 like keyboard?

    Many years ago I got the KBD75v2 and I love that keyboard, it's still my main keyboard for my home office. I now need another keyboard and was shocked to find that KBDFans doesn't sell it or anything like it anymore. I also cannot seem to find a keyboard that is 75% and has the possibility of split-space and QMK/VIA. Is there one available out there? Closest I can find is some Keychron Alice boards but I would like a non-split board and just have the space split into multiple keys. I've seen on some sites that the Wobkey Rainy 75 has an add-on for split-space but I cannot find that add-on anywhere and from youtube videos it doesn't seem to be included in the box(?). I'm also totally fine with soldering and piecing together parts. I just can't seem to find anywhere to start with that. I feel like the custom scene has reduced and the prebuilts have gotten better but with less customizations like split-space.

    Privacy @lemmy.ml
    silmarine @discuss.tchncs.de

    What do you use as your personal domain for email?

    I'm looking into getting my own domain to use for email for both my partner and I. I was initially considering using both or first initials followed by our last name (example: ajsmith.tld for Ann and John Smith) but then got to thinking about it and realized that might not be best for privacy. It looks great in a professional setting (like job applications, bills, taxes, etc.), though. So I'm unsure. I'm curios what other privacy concerned people are doing. The main goal is to not have to worry about changing account emails when we change email providers.

    Edit: thanks everyone! Lots more replies than I expected and lots of good advice. I ended up going with lastname.tld domain and will combine that with aliases for privacy where needed. I might buy a fun domain later as well but for now this works.

  • Then you should be able to do like I said and it might solve whatever is happening. I also have both homepage and paperless in the same docker-compose file. If you set the container name for each container then you can just reference that in homepage widgets. For example here is my homepage and paperless:

     undefined
        
    homepage:
        image: ghcr.io/gethomepage/homepage:latest
        container_name: homepage
        restart: unless-stopped
        environment:
          - PUID=1000
          - PGID=1000
          - TZ=Europe/Berlin
        volumes:
          - /opt/docker/homepage:/app/config
          - /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations)
    
      paperless:
        image: ghcr.io/paperless-ngx/paperless-ngx:latest
        container_name: paperless
        restart: unless-stopped
        depends_on:
          - paperless-redis
          - postgres
        networks:
          - proxy
        user: "1000"
        environment:
          - USERMAP_UID=1000
          - USERMAP_GID=1000
          - TZ=Europe/Berlin
          - PAPERLESS_REDIS=redis://paperless-redis:6379
          - PAPERLESS_TIKA_ENABLED=1
          - PAPERLESS_TIKA_GOTENBERG_ENDPOINT=http://gotenberg:3000/
          - PAPERLESS_TIKA_ENDPOINT=http://tika:9998/
          - PAPERLESS_DBENGINE=postgresql
          - PAPERLESS_DBHOST=postgres
          - PAPERLESS_DBNAME=paperless
          - PAPERLESS_DBUSER=paperless
          - PAPERLESS_DBPASS=password
        volumes:
          - /opt/docker/paperless/data:/usr/src/paperless/data
          - /opt/docker/paperless/export:/usr/src/paperless/export
          - /opt/docker/paperless/consume:/usr/src/paperless/consume
          - /mnt/paperless:/usr/src/paperless/media
    
    
      

    so both have conatiner_name set to the same string as the service name. And in my homepage widgets I just use the container name in the URL, example:

     undefined
        
        - Paperless:
            icon: paperless-ngx
            href: https://paperless.local.tld/
            widget:
                type: paperlessngx
                url: http://paperless:8000/
                username: username
                password: password
    
    
      

    This only works if they are in the same docker network. If you don't explicitly set the network for the containers and they are in the same compose file then they should be in the same network.

  • Where is paperless in relation to homepage? For me i have both of them in the same docker host and same docker network on that host and with that i only need to set the paperless container name in the widget. If paperless is on another machine make sure there is no firewall blocking the port number.

  • Set up paperless-ngx and cannot get my scanner to send a scan to a FTP server. It supposedly supports sending to FTP but doesn't have much documentation for it. I've tried FTPS, SFTP, and unsecured FTP. Both secure types just cause it to error out. But with unsecured the scanner just freezes then reboots. Really annoying me. I'm about to give up and just scan to s USB thumb drive then copy the scans to the server.

  • I came here to basically say this. It's especially bad when you aren't even sure if you want to keep the service and are just testing it out. If I already have to go through a huge setup/troubleshooting process just to test the app, then I'm not feeling very good about it.

  • Steam Deck @sopuli.xyz
    silmarine @discuss.tchncs.de

    Trying to run my EmuDeck RetroArch saves on other devices, getting an error.

    I installed EmuDeck on my Steam Deck. I haven't done any custom configs or anything, just using the EmuDeck installed defaults. To run Pokemon SoulSilver it is using the retroarch core melonds. I can load up my saves on the deck, play them, then save a new one no problem. I recently got syncthing running on the deck to sync my saves to other devices. On all my other devices when I start the game (using the same core in retroarch) and press start I get an in game error that seems to be from the core or rom itself, definitely not from retroarch, that reads "A communication error has occurred. You will be returned to the title screen. Please press the A Button."

    Is there something EmuDeck changes from the standard RetroArch settings for saves? I've tried to find something that could cause this issue but I cannot find an important seeming setting in the UI that could cause this and I'm starting to lose my mind.

    Selfhosted @lemmy.world
    silmarine @discuss.tchncs.de

    Why Prometheus + Grafana over other monitoring options?

    I've been setting up and testing prometheus and grafana for about a week now, since that seems to be the universally accepted solution for self-hosted monitoring. But I'm starting to question why it is so accepted. On top of prometheus not seeming useful on it's own (needing grafana to visualize and alertmanager for alerts) it feels like with each thing i want to monitor I have to spin up another docker container to export/gather the data. There are other options like LibreNMS that seems to have all that built into one container. So what does this Prometheus/Grafana stack have that other monitoring services don't? Is it really worth having to set up each of these specialized exporters and dashboards? Or am I mistaken that it's the main solution everyone uses? Are you using something different for monitoring?