[-] [email protected] 143 points 6 days ago

This article brings up a great point.

In addition, I've always thought that video games work the way we were told the world worked. (At least, the way we were told it worked in the 90s in America.) Work hard to get some resources so that you can use those resources to build more stuff to get more resources, etc.

Kids today can work as hard as they want, only to still have no chance of paying for college and still have no chance of buying a house. Video games at least provide that "strategy -> effort -> reward -> next level" cycle that our brains find very rewarding, which, for far too many people, does not exist in real life.

That's probably what makes modern games so disappointing, too. Games were one area that actually was a meritocracy... until pay-to-win messed that up.

[-] [email protected] 30 points 6 days ago

Sonic and Dr. Robotnik are codependent. They don't actually want to defeat each other. That's why Robotnik is always building these elaborate bases that, for some reason, have a bunch of perfectly Sonic-sized tubes for getting around in. And it's why there's always that moment at the end where Sonic is chasing Robotnik but doesn't catch him.

[-] [email protected] 3 points 6 days ago

Cool! I'm not a hardcore sim racing fan, but I got a little into them when I realized that you can play them without a wheel if you use the gyroscope in a PS5 controller for steering. It's not perfect, but it's accurate enough to play these games that are otherwise unplayable with an analog stick.

BTW if anyone is reading this and thinks you might want to try it, Assetto Corsa is two dollars on the Steam sale right now. It came out a while ago, but there are graphics mods that make it look nice. https://store.steampowered.com/app/244210/Assetto_Corsa/

[-] [email protected] 68 points 1 month ago

I downloaded an ISO of it a while ago and played through maybe third of the game. I found it to be very playable. People always mention the long load times, but it's worth mentioning that long load times were much more common back then. (Although Half-Life on DC was even longer than usual.)

Also, I hate to be nit picky, but the blog post linked here manages to be weirdly wrong about two things and it's barely one paragraph long, lol.

Half-Life is one of the most successful video games of the early 2000s.

Ahhh, 1998. One of the best years of the early 2000s.

Half-Life was everywhere... except one notable place: Sega's Dreamcast. It has been a mystery as to what happened with a game destined to have a port on every possible platform.

Half-Life was a PC exclusive until the PS2 port in November 2001, ten months after the Dreamcast was discontinued. The PC and PS2 versions are still the only official versions to this day. Half-Life is not known for being on every platform. Was the author thinking of Doom, one of the best games of the mid 70s?

[-] [email protected] 45 points 1 month ago

I was expecting the twist to be that fart was an acronym. Like:

Fess up
Admit mistakes
Reassess direction
Time-bound

A good leader is willing to have a F.A.R.T. discussion.

[-] [email protected] 111 points 2 months ago

I suppose they only did it now due to some license agreement expiring?

Yep, if I understand it right, Denuvo charges an annual fee to be used. That's why you always see it getting removed after the game loses relevance, when sales aren't enough to justify paying for Denuvo anymore.

Kind of weird how, because Bethesda (and other publishers) are Denuvo's consumer, this particular anti-consumer license agreement is actually benefiting the players, haha.

448
submitted 3 months ago by [email protected] to c/[email protected]

Here's a non-paywalled link to an article published in the Washington Post a few days ago. It's great to see this kind of thing getting some mainstream attention. Young children have not made an informed decision about whether they want their photos posted online.

[-] [email protected] 52 points 3 months ago

Yeah, this is a ragebait headline (and I'll admit that it caught me). This is actually in line with what you see on Android and most Linux distros. It's also likely that Microsoft doesn't want you to easily change from Edge, but still. This is better than allowing an application to silently change which applications open things on your computer.

50
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]

(also posted on @selfhost)

RISC-V is a non-proprietary instruction set that is an alternative to ARM. I had thought that we were still waiting for a stable Linux distribution on RISC-V devices, but it turns out many RISC-V machines can run Debian already.

Does anyone have a RISC-V device that they use regularly? How has it been working?

36
submitted 3 months ago by [email protected] to c/[email protected]

Lately I've been really liking the idea of having something hosted on a RISC-V machine. RISC-V is a non-proprietary instruction set that is a competitor to ARM. The idea of having a something running on an open source operating system, running on an open standard CPU, served from my house, gives me a warm fuzzy feeling.

I was under the impression that most Linux distributions were unstable on RISC-V. Turns out, I'm wrong about that. From a quick search, the following have official Debian images:

and the Pine64 Star64 has a community-maintained Armbian image.

Does anyone here have a RISC-V single-board computer doing anything practical for you?

[-] [email protected] 37 points 3 months ago

I mean, I'm no Trump apologist, but "let he who did not try looking at the eclipse cast the first stone."

142
submitted 3 months ago by [email protected] to c/games
68
submitted 3 months ago by [email protected] to c/[email protected]

The 8bitdo keyboard has been pretty well-received as a ~$100 wireless keyboard with ABS keycaps. I love the way this C64 color scheme looks.

I have an 8bitdo arcade stick, which looks like it uses the same knob as this keyboard for selecting the wireless mode. I love the way it feels every time I turn it on.

Unfortunately, the keyboard doesn't use QMK -- it uses their own mapping software, which is Windows only. This makes it a non-starter for me, since I rarely use a Windows computer these days. But I just might have to copy that color scheme for my next build.

[-] [email protected] 61 points 3 months ago

How in the hell does anyone think that America's safety is dependent on Israel?

15
submitted 4 months ago by [email protected] to c/[email protected]

Hi, sorry if that title isn't very clear. I just started learning about nix a couple days ago; I'll explain what I mean.

I'm trying to set up a web application that I'm currently hosting with Docker containers, but do it with nix instead, like what's shown in this blog post: https://carjorvaz.com/posts/the-holy-grail-nextcloud-setup-made-easy-by-nixos/

However, I don't have NixOS on my server. I'm using Debian, with the nix package manager installed.

Is it possible to use a nix config file, like the one below, when only using the nix package manager? Currently it errors when I try to call nix-build with it, giving an error about calling a lambda function that never called self. If I remove the self argument, it complains about config, and so on.

{ self, config, lib, pkgs, ... }:

{
  services = {
    nextcloud = {
      enable = true;
      hostName = "cloud.example.com";

      package = pkgs.nextcloud27;

      # Let NixOS install and configure the database automatically.
      database.createLocally = true;

      # Let NixOS install and configure Redis caching automatically.
      configureRedis = true;

      < other settings here... >
    };
  };
}

From what I've read, the services part of that creates systemd services, which makes me think that it only works if you're on a full NixOS system and not only using the nix package manager. But it's been difficult to find a clear answer on that, probably because I'm still learning what terms to search for.

[-] [email protected] 53 points 6 months ago

For me, the only reason to jump on a game early is if it's necessary for there to be a thriving multiplayer community to enjoy the game. That's something you would miss out on by waiting for a sale. That early stage, where everyone is still figuring out how the game works and finding new strategies, can be fun. But I rarely play multiplayer games now, so I just skip that and I don't mind.

If it's a singleplayer game, there's no reason to jump on it early -- and certainly not to enjoy it as a technical spectacle. It'll look just as good five years from now.

I remember replaying the original Half-Life in 2008 for its ten year anniversary, and thinking, "This is still fun, but the graphics are almost distractingly outdated." But when I replayed the original Mass Effect from 2007 just a couple years ago -- which was more than ten years old then -- I thought it looked just fine.

[-] [email protected] 54 points 7 months ago

I always thought it would have been cool if Pokemon were only found in environments that were "realistic" to that type. Like, if you had to go to a river to find water Pokemon, or if Geodude was only in the mountains. Seems like they didn't do that, though.

[-] [email protected] 36 points 9 months ago

Portal (1 and 2) and The Talos Principle are the only puzzle games I've played that not only had a story, but also managed to make the puzzle gameplay actually make sense within the story. Like, there is an in-universe explanation for why you are solving puzzles. I'm sure there are other games that do it, but those are the only ones I've played and they were fantastic. That's a hard thing to pull off -- how do you make a compelling narrative, complete with characters, around "moving some boxes?"

Looking forward to playing the sequel. Also, the original is $3 on Steam right now!

view more: next ›

tuckerm

joined 1 year ago