Skip Navigation
Vulkan 1.3.286 Released With One New Extension
  • Their logos are always great. Took a class on Vulcan in college and managed to snag one of these .

    Should probably wear it more often but it was probably too big for me even at the time

  • Amber - the programming language compiled to Bash
  • I doubt the goal is to produce easily understood bash, otherwise you'd just write bash to begin with. It's probably more similar to a typescript transpiler that takes in a language with different goals and outputs something the interpreter can execute quickly (no comment on how optimized this thing is).

  • Microsoft won't update your Windows 11 PC if it has these apps
  • Worth considering holding onto the Nvidia card to do a vfio windows VM as a fallback for stuff that doesn't run well through wine/proton. It wasn't too hard to setup and its nice to just toss all the games with kernel anticheat/adobe shit into.

  • SDL 3 will prefer Wayland Over X11, if certain protocols are available
  • Anecdotal, but every time I've tried x11 sessions over the years I've either gotten screen tearing on the desktop or it didn't run at my monitors full refresh rate above 60hz. Wayland has always run how I would expect it to.

  • Your first distribution
  • I wanted to try Ubuntu on a live disk back in highschool (~2012) but ended up wiping the drive on my laptop. Had to ask a friend who knew Linux for help so I could actually use it. That was eventually followed by debian and Manjaro. Later I tried arch on my desktop, got tired of that and switched back to windows for a few years. I've been running nixos for a while now and have been really enjoying it.

  • Can I rock this in public?
  • My first instinct wouldn't be weed but you're going to get stares simply because it's not something people wear a lot (where I'm at at least). As others have said it'll be down to what you're willing to put up with.

  • Issues forwarding traffic through a wireguard connection

    I am attempting to follow this https://www.procustodibus.com/blog/2022/09/wireguard-port-forward-from-internet to forward traffic from a few ports on a public oracle vps to other ports on my local server through a wireguard connection. Currently I am doing this using rinetd, but I was looking for a more normal way of forwarding traffic. (Also looking to forward UDP traffic at some point.)

    After stopping rinetd, adding these rules to the public server's wg config ```

    packet forwarding

    PreUp = sysctl -w net.ipv4.ip_forward=1

    port forwarding

    PreUp = iptables -t nat -A PREROUTING -i ens3 -p tcp --dport 443 -j DNAT --to-destination 10.144.65.2:8443 PostDown = iptables -t nat -D PREROUTING -i ens3 -p tcp --dport 443 -j DNAT --to-destination 10.144.65.2:8443

    packet masquerading

    PreUp = iptables -t nat -A POSTROUTING -o wg0 -j MASQUERADE PostDown = iptables -t nat -D POSTROUTING -o wg0 -j MASQUERADE ``` and restarting the wg connection, I'm seeing traffic on the ens3 port but none entering wg0 via tcpdump. I feel like I probably have conflicting iptables rules saved https://pastebin.com/0eNwhNKM but I don't really know enough about whats going on there to fix it. I feel like its probably the wireguard-*-rule ones (created by pivpn possibly?) but I'm not sure.

    Edit way later: Ended up just using rinetd for the udp connections. Ubuntu doesn't include the latest version here https://github.com/samhocevar/rinetd which is able to do UDP connections. The docker container RxBrad suggested uses that version within the docker container to make the redirections so it will be roughly equivalent.

    0
    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/)SX
    sxt @lemmy.world
    Posts 1
    Comments 50