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/)TH
Posts
0
Comments
64
Joined
2 yr. ago

  • There’s sort of an urban legend in Sweden that ”The silly Brittons who don’t understand insulation feel sorry for Swedes that can’t afford to heat their houses so the snow melts of the rooves”. Are you saying that’s true?

  • I printed a very beautiful little box. We were going to use it to gift wrap a hat for a friends newborn.

    Then I spoke to them and found out they lost the child, and the beutiful box I had had on my desk for weeks suddenly turned into an infant sized urn. A thing that shouldn’t have to exist.

    I had to throw it out and printed something else for their next child.

    I’m sorry for you and for your friends. I hope they find their way back.

  • I go the other way. I have linux installed pretty much just to run docker and qemu running windows with iommu passthrough. The performance hit is negligible, and with docker context you can run docker-cli and devcontainers and stuff in the windows vm like native.

  • Coal exist in the earth because back then the bacteria who could break down lignin and cellulose hadn’t evolved, so dead trees had the time they needed to compress. There are such bacteria around now, though, and that means there will never be any new natural coal.

  •  yaml
        
    version: "3.0"
    
    networks:
      web:
        external: true
    
    services:
      prusaslicer:
        image: keyglitch/prusaslicer
        volumes:
          - share:/home/slic3r/share:z
          - ./slic3r:/home/slic3r
        depends_on:
          - novnc
        environment:
          DISPLAY: novnc:0.0
          WIDTH: 1920
          HEIGHT: 1080
        entrypoint: ""
        command: 
          - /bin/sh
          - -c
          - /bin/sleep 3 && /Slic3r/slic3r-dist/prusa-slicer
    
      novnc:
        image: theasp/novnc:latest
        networks:
          web:
          default:
        environment:
          RUN_XTERM: "yes"
          RUN_FLUXBOX: "yes"
          DISPLAY_WIDTH: 1920
          DISPLAY_HEIGHT: 1080
        labels:
          traefik.enable: true
          traefik.docker.network: web
          traefik.http.routers.slicer.rule: Host(`slicer.myurl.com`)
          traefik.http.routers.slicer.tls.certResolver: le
          traefik.http.routers.slicer.middlewares: auth@file
    
    
      

    You'll have to add something to be able to transfer files to the share volume separately. I use machines/filestash and dperson/samba.