@mara@pawb.social avatar

mara

@mara@pawb.social

Maybe a cartoon shark

This profile is from a federated server and may be incomplete. Browse more on the original instance.

mara,
@mara@pawb.social avatar

Amusingly enough, the steam deck has made a lot of the state of this art get better. Usually if you mount the ISO and then tell Lutris to install it, it’ll work.

mara,
@mara@pawb.social avatar

I’m astounded, I would have thought that putting an explanation that the article was satire would like…work. Should I have made it giant screaming red text?

mara,
@mara@pawb.social avatar

I still reserve the right to be astounded. One of my beta readers said I needed to add a disclaimer that this talk is satire, so I went through a few rounds to make the warning right. I guess we didn’t expect someone to get caught up in the title!

mara,
@mara@pawb.social avatar

No Man’s Sky, but they vastly redeemed themselves.

mara,
@mara@pawb.social avatar

I can use Plex on my PS5 and share it with my friends without having to do DevOps work.

mara,
@mara@pawb.social avatar

Wasn’t that intended to fix an issue where other players in your multiplayer session could cause your console to execute arbitrary code? Imagine the fallout if it became “play Mario Kart and then have your console refuse to boot again”

mara,
@mara@pawb.social avatar

Tailscalar here. Use https://tailscale.com/kb/1242/tailscale-serve/. It is a reverse proxy inside tailscaled. It will handle HTTPS certificates for you too. As an example, here’s a sample HTTP server proxied to both my tailnet via tailscale serve and to the world with Funnel.

Also as far as I know you need to use Serve in order to use Funnel.

mara,
@mara@pawb.social avatar

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.

mara,
@mara@pawb.social avatar

No prob! If you run into any problems, feel free to DM me or /u/tailscale@hachyderm.io. We’re more than happy to help.

mara,
@mara@pawb.social avatar

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,
@mara@pawb.social avatar

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,
@mara@pawb.social avatar

Yo ho ho and a bottle of rum for me!

mara,
@mara@pawb.social avatar

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

mara,
@mara@pawb.social avatar

I personally shove Transmission into Docker:


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

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

mara,
@mara@pawb.social avatar

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,
@mara@pawb.social avatar

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: github.com/…/3d0647e946014516df33de0b18d2a16eec83…

Not counting games that were unfun because of bugs, what’s the most unfun video game that you’ve played and what made it unfun? (kbin.cafe)

Most of the video games I’ve played were pretty good. The only one I can think of that I didn’t like was MySims Kingdom for the Nintendo DS. Dropped that pretty quickly. It was a long while ago, but I’ll guess it was because there were too many fetch quests and annoying controls.

mara,
@mara@pawb.social avatar

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.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • tacticalgear
  • DreamBathrooms
  • thenastyranch
  • magazineikmin
  • Durango
  • cubers
  • Youngstown
  • mdbf
  • slotface
  • rosin
  • ngwrru68w68
  • kavyap
  • GTA5RPClips
  • provamag3
  • ethstaker
  • InstantRegret
  • Leos
  • normalnudes
  • everett
  • khanakhh
  • osvaldo12
  • cisconetworking
  • modclub
  • anitta
  • tester
  • megavids
  • lostlight
  • All magazines