Mara

Maybe a cartoon shark

  • 14 Posts
  • 52 Comments
Joined 1 year ago
cake
Cake day: June 4th, 2023

help-circle















  • MaratoSelfhosted@lemmy.worldHttps on tailnet?
    link
    fedilink
    English
    arrow-up
    5
    ·
    1 year ago

    Note my bias as I work for Big VPN (Tailscale), but I don’t think that teaching people to ignore security warnings is a good thing to do. The CA system is kind of a scam in general, but I think that at least in its current implementation it’s better for us to encourage people are aware of those errors and what they mean.

    As the sacred texts say: self-signed certificates beget the use of curl -k beget the use of self-signed certificates.



  • MaratoLocalLLaMA@sh.itjust.works*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 year ago

    What would an ideal prompt for summarization look like with this model? I’ve tried a few summarization prompts but they haven’t panned out into something consistent (MacBook Pro M2 Max, llama.cpp, q4_S). I know this is fundamentally more random technology, but it’s not even coalescing into a consistently relevant output.


  • MaratoSelfhosted@lemmy.worldIntroducing Raspberry Pi 5
    link
    fedilink
    English
    arrow-up
    6
    arrow-down
    2
    ·
    1 year ago

    This is true with ARM in general. There’s no “standard Linux” to boot because every board needs its own device tree and set of core kernel modules for detecting important things like local storage. It’s fairly intractable due to how different the hardware is.






  • I personally shove Transmission into Docker:

    services:
      wireguard:
        image: ghcr.io/linuxserver/wireguard
        container_name: wireguard
        cap_add:
          - NET_ADMIN
          - SYS_MODULE
        environment:
          - PUID=1000
          - PGID=1000
          - TZ=Europe/Stockholm
        ports:
          - 9091:9091/tcp
        volumes:
          - ./config:/config
          - /lib/modules:/lib/modules
        sysctls:
          - net.ipv6.conf.all.disable_ipv6=0
          - net.ipv4.conf.all.src_valid_mark=1
        restart: unless-stopped
      transmission:
        image: ghcr.io/linuxserver/transmission
        container_name: transmission
        ulimits:
          nofile: 1048576
        environment:
          - PUID=1000
          - PGID=996
          - TZ=Europe/Stockholm
          - USER=azurediamond
          - PASS=hunter2
        volumes:
          - ./config:/config
          - /data:/data
          - /data/Torrents/dl:/downloads
          - /data/Torrents/inbox/start:/watch
        network_mode: "service:wireguard"
        depends_on: [ "wireguard" ]
        restart: unless-stopped
    

    Make sure your mullvad config is called wg0.conf in ./config.











Moderates