sxt

joined 1 year ago
[–] [email protected] 12 points 15 hours ago* (last edited 15 hours ago)

Comics have an issue with Marvel and DC sucking up most of the air in the room just to rehash the same characters for the millionth time. I'm generally pretty unenthused with superhero stuff and the general aesthetic around that content, however I do like batman to an extent and have enjoyed the movies and stuff related to him. If I wanted to read a batman comic where do I even start? The beginning? Which beginning? His first appearance back in the 40s or the beginning of one of the many iterations of batman? Now I have to do research into 80 years of content just to figure out what to read, or just pick one at random.

The appeal of manga is just being able to read three series in a week that each explore a different setting/idea and are only one volume apiece. If someone tells me to read a longer series I can just start at chapter one and go until I hit the end. Manga/anime absolutely have some oversaturated settings/ideas as well but there's generally a lot more space for other stuff to get seen and do well, get anime adaptations, etc

[–] [email protected] 7 points 3 weeks ago (2 children)

Did this release see sched_ext merged? Was looking forward to messing around with that.

40
submitted 4 weeks ago* (last edited 4 weeks ago) by [email protected] to c/[email protected]
 

Just got it! Super excited

[–] [email protected] 3 points 1 month ago

I rise above the world

[–] [email protected] 2 points 1 month ago* (last edited 1 month ago)

Where are his tits. That image of him is ruined for me

[–] [email protected] 14 points 1 month ago (1 children)

Similar incident

[–] [email protected] 1 points 1 month ago

Certainly more engaging and cohesive than SB and yeah, we have to walk things back from EW. Overall I liked the story but the first half was a bit anemic. I think it would've benefited from playing up the competition/stakes of the succession some more - a bit more intrigue there.

Definitely think it'll land towards SB where the story is hit or miss for people but the post patch stuff is really good.

[–] [email protected] 2 points 1 month ago

I live right next to a venue that hosts concerts during the summer so there's no escaping hearing what's playing most of the time despite the special windows my apartment complex supposedly put in.

A couple days ago they had someone doing some really nice instrumental guitar stuff which I'm always on the lookout for. Turned out to be Hermanos Gutiérrez and I've been really enjoying listening to their stuff since then.

[–] [email protected] 13 points 1 month ago

Every time gamergate continues to be relevant another part of my soul atrophies and falls off

[–] [email protected] 2 points 2 months ago
[–] [email protected] 1 points 2 months ago (3 children)

If you've got an extra still I'd be down

[–] [email protected] 9 points 2 months ago

Directly onto pizza. The end

 

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.

view more: next ›