All they had to do was remove all the bits that made it an Assassin’s Creed game and it would’ve been perfect. But they did Skull & Bones instead. It’s like they hate easy money.
I take my shitposts very seriously.
- 4 Posts
- 739 Comments
rtxn@lemmy.worldto
Games@lemmy.world•Talking to new Xbox CEO Asha Sharma and CCO Matt Booty — "This team has brought it back before, and I'm here to help us do it again."English
92·4 days agoIs this what they call “absolutely unemployed behaviour”?
bcachefs
I don’t know what Kent did, but I doubt it will surprise me at this point.
(edit) Fuck sake, Kent…
What in tarnation is a welfare state anyway? Is it one of them commie things?
(Feel the sarcasm, people.)
rtxn@lemmy.worldto
No Stupid Questions@lemmy.world•What do you think of this "change your profile photo to Clippy to protest anti-consumer practices" thing, and would you say that organizing and collective action would be a lot better and such?
11·5 days agoThe same as the pink ribbon for breast cancer: awareness. “Why is everyone praising Clippy?” becomes “Who the hell is Louis Rossman?” becomes “Why is Rossman so angry at tech?”.
But beyond a certain point, I think it just adds noise. Rossman’s original intention is to educate people about anti-consumer practices, and more importantly, to call people to action. Many people will stop at Clippy because it feels like they did something without any real effect. It becomes a feel-good pretend non-activism, like Kony 2012, or that one time David Guetta ended racism.
Like an alpha particle: very low penetrative power.
rtxn@lemmy.worldto
Games@lemmy.world•Xbox chief Phil Spencer is leaving MicrosoftEnglish
5·10 days agoHis name was Ozymandias, King of Kings.
I’d love to know what an actual moderator would think if you imposed your idea on them.
report bad faith posts
You’re supposed to report posts that break instance or community rules, not whatever you happen to consider to be “bad faith”. You can’t moderate based on intent, only actions, otherwise you’re asking for a thought police where only the popular opinion is permitted to exist.
Besides, even if your instance has disabled downvotes, other instances can still see them.
Depending on your sorting method, downvoted posts will be featured less favorably in list views. You will immediately know that a heavily downvoted post is not worth your attention. Some clients might let you filter displayed posts based on vote counts or up/down ratio.
Downvote and move on. Mute accounts and communities you don’t want to see. Curate your own feed. Simple as.
rtxn@lemmy.worldOPto
Selfhosted@lemmy.world•(SOLVED) I need help with networking for VirtualBox guests running on Windows hosts.English
1·11 days agoThe issue was ARP-related after all. Since all computers were cloned from the same image, the VMs ended up having the same MAC address, which caused collisions.
rtxn@lemmy.worldOPto
Selfhosted@lemmy.world•(SOLVED) I need help with networking for VirtualBox guests running on Windows hosts.English
3·11 days agoI think you need four distinct MAC addresses for this setup, are they all different?
We have a winner!
The classroom computers were mass-deployed using Clonezilla, from a disk image that already had the VM pre-configured. As a result, every VM had the same MAC address. Bridged networking put both hosts and both VMs in the same broadcast domain, which caused collisions in the ARP tables. I randomized the MAC address of one VM and everything suddenly started working.
It’s never been an issue since we’ve never needed to use anything other than the default NAT adapter, so I’ve never even questioned it. I found the solution after plugging the computers directly into an access switch without success, and cross-checking
show mac address-tablewith the MAC reported by the VMs revealed that they were identical.
rtxn@lemmy.worldOPto
Selfhosted@lemmy.world•(SOLVED) I need help with networking for VirtualBox guests running on Windows hosts.English
2·12 days agoI checked
ip neighbour(it also shows the ARP table, so I assume they’re identical), and it showed REACHABLE and STALE for addresses I could ping, but FAILED for the remote VM’s address. I will checkarp -awhen I get the chance, though.
rtxn@lemmy.worldOPto
Selfhosted@lemmy.world•(SOLVED) I need help with networking for VirtualBox guests running on Windows hosts.English
1·12 days agoI’ll give it a try tomorrow, thanks.
Although I’d still prefer to know why the VMs won’t talk over simple Ethernet.
deleted by creator
rtxn@lemmy.worldto
Games@lemmy.world•Sony plans to minimize effect of rising PlayStation 5 memory costs by boosting software and network service revenue, according to CFOEnglish
72·13 days agodeleted by creator
rtxn@lemmy.worldto
Games@lemmy.world•Bloober Team's big reveal is Layers of Fear 3English
5·13 days agoThe player is shown a lot of disturbing imagery, but there is zero tension and no threat. It’s similar to early Chinese Room titles: a pretentious and superficial experience comparable to A Machine For Pigs, without the pigs. Evaluated as a horror game, its horror is ruined by the game. 4/10, the experience isn’t worth the time. Just watch someone else play it.Forget that, I was mixing up which game I remembered. I thought LOF2 was the one with the insane painter. I know I’ve played both, though (plus Observer), but can’t recall a single damn detail about the second game. I guess the experience was too bland to even retain.
rtxn@lemmy.worldto
Games@lemmy.world•‘This shouldn’t be normal’: developers speak out about bigotry on Steam, the world’s biggest PC gaming storefrontEnglish
121·14 days agoDepends on where the curator draws the line, and you can’t apply sane criteria to what they consider “too woke”. Sometimes a game is put on a woke list because it has a female lead, or a physically strong female character, or non-heteronormative character dynamics, or people of color are present in it… I’ve seen one that was marked as woke because it referenced climate change and climate action. I think it was some popular shooter or something.





If you have IPv4 addresses, I guarantee you’re behind at least one NAT gateway. What you need is a Tailscale subnet router, or something equivalent from another service.
In the most basic configuration, the Tailscale client facilitates communication (by using some UDP black magic fuckery) between one host it is running on and another host it is running on that are both connected to the same tailnet (the virtual network between Tailscale hosts). For this purpose, it uses addresses from the 100.64.0.0/10 “shared address space” subnet. These addresses will only be reachable from within your tailnet.
If you want an entire subnet (e.g. your LAN) to be accessible within your tailnet, you need to set up a subnet router. This involves configuring the Tailscale client on a device within the target subnet to advertise routes (
tailscale set --advertise-routes=192.168.1.0/24), allowing the host to advertise routes in the admin page (Machines -> … -> Edit routes), and configuring the Tailscale client on external hosts to accept advertised routes (tailscale set --accept-routes).If you want your servers to be accessible from anywhere on the internet, you’ll need Tailscale Funnel. I don’t use it personally, but it seems to work. Make sure you understand the risks and challenges involved with exposing a service to the public if you want to choose this route.