mara

joined 1 year ago
[–] mara@pawb.social 2 points 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.

[–] mara@pawb.social 4 points 1 year ago (2 children)

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.

[–] mara@pawb.social 6 points 1 year ago

Yo ho ho and a bottle of rum for me!

[–] mara@pawb.social 1 points 1 year ago

I absolutely love the vibes in this shot. Amazing work!

[–] mara@pawb.social 7 points 1 year ago
[–] mara@pawb.social 17 points 1 year ago (6 children)

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.

[–] mara@pawb.social 1 points 1 year ago

For the record, I'm pretty sure using Mullvad for XDCC is super overkill, but I wanted to have an excuse to break out userspace wireguard in a project and writing it all in Go made it so damn easy: https://github.com/Xe/x/commit/3d0647e946014516df33de0b18d2a16eec835bed

[–] mara@pawb.social 1 points 1 year ago (2 children)

Generally when you download files over torrent through your ISP, you end up getting love letters from rightsholders. I personally use a homelab NAS as my seedbox and for my public tracker stuff (as well as anime downloads over XDCC) I use Mullvad. I don't seed overly much on public trackers because of it, but my ratio on private trackers is sky high because ISPs won't send love letters for private trackers.

[–] mara@pawb.social 1 points 1 year ago

If you have a hackable switch, dump your keys and demo it on your PC assuming it's beefy enough. You'll know if you like it within about an hour or two.

[–] mara@pawb.social 3 points 1 year ago (2 children)

XC2 is a lot better than XCDE, XCDE really suffers from the era it came out of. XC2 was when Monolith really got their stride.

[–] mara@pawb.social 12 points 1 year ago

They already are, just not as main processors. They're using it for all the microcontrollers that are essential in modern computers.

[–] mara@pawb.social 1 points 1 year ago (1 children)

Did you run into a case where a RX5700 was detected as unsupported?

view more: ‹ prev next ›