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/)C
Posts
1
Comments
39
Joined
1 mo. ago

  • And the trauma of the train driver hitting the car.

  • Everything was .md files on the backend, which was nice. Should make automation simple (but time consuming since you most likley have to create it yourself). The only reason I stopped using it was because I didn't really need it.

  • Have a look at Tasks.md. I've used it before and I liked it. You can customize the CSS as well.

  • Have you considered replace the name with input from stdin? So instead of name=synapse you could do name=$1 and have one script to use for all containers.

  • Never heard about The Story Graph before, but it looked cool so I created an account to check it out. I could not find any way to create custom integrations (or make any integration at all).

    One option would be to pull your data from ABS via its API and then use JavaScript to navigate The Story Graph's website to "manually" update your progress.

    Edit: If you want to work with Python, someone has created a library to work against their website as if it was an API: https://github.com/ym496/storygraph-api/tree/mainIt uses an HTML parser to map the response from the website.

  • Or disabled until a certain number of upvotes are reached. It could potentially be disabled again of upvotes falls down under the threshold again. Or just have them time gated.

  • I would give you an Insightful vote but I don't have any left. /s

    Jokes aside, I like both limiting number of votes per day (or otherwise) and having different kinds of votes. The reason why something is up/down voted can make for a better discussion. But I am agnositc towards renewing votes bases on engagement. On one hand, it would increase engagement, and on the other hand, it could scare lurkers away from otherwise upvoting good content.

  • That makes sense if there is more than one user for a server (i.e. work environment). I would not care if it was on my home lab server, except that the root folder is deleted and remade on each boot.

  • I like the function some cars have when you can old down the lock button to close all windows (and unlock to open them), without starting your car.

  • What's so bad about that? Except that is trigger me to not have it organized.

  • Is it possible to view files in the root of the vault?Also, is it possible to show non .md files?

    My use case for the second question is that I have .pdf and .xml that acompanies my notes. Having HelixEditor showing them as well (or opening them in system default editor) would be nice.

  • How do you manage your containers?

  • Would a self signed certificate be an option? Not sure if the hassel is worth with the applications on the phone.

  • If you like compose files: https://www.composerize.com/

    docker run -it --rm -v <your-data-path>:/data -e SYNAPSE_SERVER_NAME=<your-public-address-subdomain> -e SYNAPSE_REPORT_STATS=no matrixdotorg/synapse:v1.136.0 generate:

     yaml
        
    name: <your project name>
    services:
        synapse:
            stdin_open: true
            tty: true
            volumes:
                - <your-data-path>:/data
            environment:
                - SYNAPSE_SERVER_NAME=<your-public-address-subdomain>
                - SYNAPSE_REPORT_STATS=no
            image: matrixdotorg/synapse:v1.136.0
            command: generate
    
      

    docker run -d --restart=always --name synapse -e SYNAPSE_REPORT_STATS=no -v <your-data-path>:/data -p 8008:8008 matrixdotorg/synapse:v1.136.0:

     yaml
        
    name: <your project name>
    services:
        synapse:
            restart: always
            container_name: synapse
            environment:
                - SYNAPSE_REPORT_STATS=no
            volumes:
                - <your-data-path>:/data
            ports:
                - 8008:8008
            image: matrixdotorg/synapse:v1.136.0
    
    
      
  • Caddy makes HTTPS a breeze. I've tried nginx before but I never understood when and why I would need which setting.

  • What's bad about hairpin NAT? Not having to maintain a local DNS server is nice.

  • Do you need one app for syncing caldav and another app for using the calendar?

  • Selfhosted @lemmy.world

    How to use Radicale with iOS