Skip Navigation
FSR 3.1 vs DLSS 3.7 vs XeSS 1.3 Upscaling Battle, 5 Games Tested
  • I've found it depends a lot on the game. In CP2077, DLSS+frame gen looks great to me with full raytracing enabled. But in The Witcher 3, I found frame gen to cause a lot of artifacts, and in PvP games I wouldn't use regular DLSS/FSR. In general I've found the quality preset in DLSS to be mostly indistinguishable from native on 3440x1440, and I'm excited to try FSR 3 when I get the chance.

  • AMD FSR 3.1 Now Available, FSR 3 Available and Upcoming in 60 Games
  • This is seriously wonderful news. DLSS was just head and shoulders above FSR 2 in my experience, so if this comes close it's a huge deal. DLSS is (hopefully was) Nvidia's biggest advantage over AMD in my opinion.

  • Federal agency warns critical Linux vulnerability being actively exploited
  • This is a use-after-free, which should be impossible in safe Rust due to the borrow checker. The only way for this to happen would be incorrect unsafe code (still possible, but dramatically reduced code surface to worry about) or a compiler bug. To allocate heap space in safe Rust, you have to use types provided by the language like Box, Rc, Vec, etc. To free that space (in Rust terminology, dropping it by using drop() or letting it go out of scope) you must be the owner of it and there may be current borrows (i.e. no references may exist). Once the variable is droped, the variable is dead so accessing it is a compiler error, and the compiler/std handles freeing the memory.

    There's some extra semantics to some of that but that's pretty much it. These kind of memory bugs are basically Rust's raison d'etre - it's been carefully designed to make most memory bugs impossible without using unsafe. If you'd like more information I'd be happy to provide!

  • Locked away at 18, Robert DuBoise hugs his mom outside the prison after DNA freed him at 57
  • Holy shit. I highly recommend that anyone who has the time read this.

    Also, fuck Ron DeSantis. An innocent man was freed, and DeSantis nearly saw him imprisoned until he died. Just because someone was reluctant to prosecute nonviolent crime and provided shelter for trans people and people seeking abortions. What an evil human.

  • AMD Ryzen 9000 desktop series with 16, 12, 8 and 6 Zen5 core configs reportedly launches in July - VideoCardz.com
  • IIRC it's an APU thing, and last I heard it was just a rumor (could be out of date). Either way, non-LTSC is EOL in a year and a half. If you're putting in a Zen 5 CPU, the best choice is realistically either Linux or Windows 11 Pro, since Pro can turn off all the bullshit through group policy. My Windows machine I have to have is on 11 Pro and it's basically Windows 10 with a slightly different taskbar. No Copilot bullshit, no ads, no Bing in Windows Search. If you're ok your taskbar on the bottom of the screen, IMO it's the best choice as long as you have to use Windows.

  • Air Force IDs airman shot and killed by Florida police
  • He was in his apartment. There was a call to the police about an argument in the building. The officer went to an apartment that is said the be the wrong one, banged on the door and shouted to open up. Fortston answered the door with a piston in his hand, pointing at the floor. The officer shot him.

    According to the media, Forston was on the phone with his girlfriend for a while by the time the police were called. It seems to me that, as far as the officer was aware, the only "crime" that occured was "an argument", and it sounds like the officer also had the wrong apartment. Unless I can view the bodycam footage it's hard to be certain but this definitely sounds like he was killed because he was black and had a gun.

  • Nasa to create time standard for the Moon, where seconds tick faster than on Earth
  • I'm only an armchair physicist, but I believe this isn't possible due to relativity. I know that, at least, there are cases where two observers can disagree on whether an event occurred simultaneously. Besides all the other relativity weirdness, that alone seems to preclude a truly universal time standard. I would love for someone smarter than me to explain more and/or correct me though!

  • Worthy rule
  • You're looking for Fred Rogers, more commonly Mr. Rogers. He was the host of the popular children's show Mister Rogers' Neighborhood, and is revered for having been incredibly compassionate both in public and private.

  • Can you help me with my JavaScript issue?
  • The issue is that, in the function passed to reduce, you're adding each object directly to the accumulator rather than to its intended parent. These are the problem lines:

    if (index == array.length - 1) {
    	accumulator[val] = value;
    } else if (!accumulator.hasOwnProperty(val)) {
    	accumulator[val] = {}; // update the accumulator object
    }
    

    There's no pretty way (that I can think of at least) to do what you want using methods like reduce in vanilla JS, so I'd suggest using a for loop instead - especially if you're new to programming. Something along these lines (not written to be actual code, just to give you an idea):

    let curr = settings;
    const split = url.split("/");
    for (let i = 0; i < split.length: i++) {
        const val = split[i];
        if (i != split.length-1) {
            //add a check to see if curr[val] exists
            let next = {};
            curr[val] = next;
            curr = next;
        }
        //add else branch
    }
    

    It's missing some things, but the important part is there - every time we move one level deeper in the URL, we update curr so that we keep our place instead of always adding to the top level.

  • Apple fans are starting to return their Vision Pros
  • I don't think the weight itself is really the issue - the Vision Pro is significantly lighter than the Valve Index, but significantly less comfortable from the accounts I've heard. I bet it's more the weight distribution and horrible strap design that's making it so uncomfortable. I'd also add that the walled garden kills just about every use case I'd have for it.

  • *Permanently Deleted*
  • The GPU I used is actually a 1080, with a (rapidly declining in usefulness) Intel 4690k. But I suppose laptop vs desktop can certainly make all the difference. What I really want is GPU virtualization, which I've heard AMD supports, but I'm not about to buy a new GPU when what I've got works fine.

  • *Permanently Deleted*
  • My experience with single GPU passthrough on Proxmox to a media VM was pretty positive, especially for it being an old Nvidia card. Even as someone doing it for the first time, it just took about 10 minutes to figure out the passthrough itself and another ~15 to figure out some driver issues. And it's worked perfectly since then. All in all much better than what I'd expected.

  • B1058 lost due to rough seas
  • Pretty crazy that losing a booster is exceptional now. This also gets me thinking about whether the final F9 life leader, as F9 retires, will be lost or recovered and still able to fly if it needed to. Either way it's exciting to think about a future where Falcon is obsolete!

  • 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/)SL
    sleep_deprived @lemmy.world
    Posts 0
    Comments 61