redditor since 2008, hoping kbin/the Fediverse can entirely replace it.

  • 0 Posts
  • 31 Comments
Joined 2Y ago
cake
Cake day: Jun 13, 2023

help-circle
rss

You can still block it easily with the command prompt (Shift+F10 during the install) as mentioned. But don’t let that stop you from switching to Linux if you feel like it.


Are there any cases of such payout actually happening…? I’m not buying it. (Literally and figuratively.)


Because the games that run on the Steam Deck are PC games, no emulation required. It’s a joke.


Not obvious at all. Motion blur at high movement speeds makes things unreadable even at 540 Hz, proving that even at 540 Hz there is still plenty of motion blur that the human eye can see.

https://www.youtube.com/watch?v=OV7EMnkTsYA&t=682s

As the video says: “Yes, your eyes really are capable of seeing this in real life”


ZFS has triple parity support for RAID-Z (basically RAID-5/RAID-6/RAID-7 with better data safety guarantees), so there’s that.


The X370 Taichi was considered one of the best boards of the generation, so I’m pretty sure they improved.
Mine’s still going strong in a friend’s computer 7 years later, with a Ryzen 5600.


Is the difference between them and Steam really that great in practice though? This link has 30583 games that seem to only exist on Steam. But yeah, there’s probably no paid deals involved. Still not a huge difference in practice IMO.


At the International Roguelike Development Conference 2008 held in Berlin, Germany, players and developers established a definition for roguelikes known as the “Berlin Interpretation”.

These guys have extremely strict definitions, which mean that most “rougelike” games are in fact roguelites, if you care about what they think.

There are nine “high value” factors that are more or less a requirement:

Random Environment Generation
Permadeath
Turn-Based
Grid-Based
Non-Modal
Complexity
Resource Management
‘Hack-n-Slash’
Exploration and Discovery

Plus six “low value” factors that are less important:

Single Player Character
Monsters are Similar to Players
Tactical Challenge
ASCII Display
Dungeons
Numbers

There is, as you might expect, a fair bit of controversy about that though.


I’m pretty sure they were referring to how the more common sizes are 1, 2, 4, 8, 10, 12 TB and so on. 6 is semi-common. 5 is relatively rare, so they probably didn’t realize they exist.


I’ve basically only been playing Noita since I started maybe 6 weeks ago. Harsh and unforgiving, but it gets better the more you learn.

I highly recommend looking while others play to learn, and reading up on the wiki (noita.wiki.gg, the fandom wiki is abandoned by the community). There is SO much that is basically impossible to figure out on your own, but it’s so much fun. It’s a much bigger game than you might think if you just jump in and play, too. Even 134 hours in I still have quite a few things I’ve never done.


They’re still working on a game they say is far bigger than BG3, though.

Prior to development on Baldur’s Gate 3, Larian CEO Swen Vincke was already planning out the company’s future, and this included what he calls “the very big RPG that will dwarf them all.”

Speaking to GameSpot at GDC, Vincke explained that Larian’s next game also won’t actually be the aforementioned “very big RPG,” but will be another step toward realizing it.



I did read the article… Why do you think the parent commenter didn’t?


10x more?

Here’s a 3 meter UHS certified HDMI cable for $9.99. I doubt you can find one for much less that handles 4K 120 Hz w/ HDR properly.


And seven years of guaranteed Android updates.


Doesn’t always look bad, it’s game dependent.

In hardware unboxeds test, it’s better than native in some titles, and better or equivalent in half of titles tested.

It looks way better than native w/ TAA for me in BG3 (at 1440p). TAA is way too blurry. And yet it’s also faster.


Skyblivion and Skywind are a thing. Hopefully they’ll be released at some point too though…



Yes, DLSS Frame Generation (which is a component of DLSS 3, not the entire thing) is only for the 4000 series.


I certainly don’t take their side… but smartphones DIDN’T exist before the iPhone. Which phone would you say that was? BlackBerry?
Most people think of smartphones as a big touchscreen, and the iPhone was first, being released on June 29 2007, whereas the first Android phone was released over a year later in September 2008.


It’s mind-boggling to me that this hasn’t been fixed (in Windows, I assume?), people have been complaining for years.
It’s not inherent to DisplayPort though. Some monitors that suffer from this issue can disable “deep sleep” and have the issue gone even with DisplayPort, but not all monitors allow turning it off.
(And others yet, like my old Acer XB271HU, doesn’t have the issue to begin with.)


Yes, that shouldn’t be an issue. I believe SFTP would be supported basically out-of-the-box if you install OpenSSH during the install, but you might want to create a group and configure access if you’re not the only user.

The version thing is what I’m doing with ZFS (also works with BtrFS, but it doesn’t feel as reliable yet). Basically I take snapshots every hour, and the entire state of the filesystem at that point becomes frozen in time, and can be accessed as long as the snapshots exists.
sanoid automates the process and cleans up so that there’s a reasonable amount of snapshots, not hundreds or thousands.
Of course, this means that you can’t really regain any space when you delete things, until the oldest snapshot containing the data is deleted.


It depends on what your goals are of course, but I use ZFS for the file system, sanoid to take snapshots on a schedule (hourly saved for a few days, daily saved for 1-2 weeks and so on up to monthly saved a year or two), Samba to actually share the files to Windows computers, Plex to share media to my TV.
Also rsync to a second (offsite) computer for replication/backups of the most important stuff. That computer also takes ZFS snapshots to get easy versioning of the files.

I wouldn’t recommend it for most people, but it’s nice if you’re comfortable working with Linux to begin with.


Plenty of FOSS ways to set up a NAS. I’m going for Debian with ZFS myself, I prefer custom solutions as they are almost always more flexible than “NAS OS:es”.


I wonder why they chose to only remove it from cutscenes in the first hotfix.


I wouldn’t say it’s overhead. When you zoom a bit it’s more like a third party view, except you can move the camera around.


It’s the first game to actually use DirectStorage for something useful (that might be impossible without it), so I think it counts as a showcase on PC as well.



I mostly agree, I’ve had good results with similar prompts, but there’s usually some mistake in there. It seems particularly bad with python imports, it just uses class A, B, C and imports class A, B and X and calls it a day.

Here are a few prompts that gave pretty good results:

Create a QDialog class that can be used as a modal dialog. The dialog should update itself every 500 ms to call a supplied function, and show the result of the call as a centered QLabel.

How can I make a QDialog move when the user clicks and drags anywhere inside it? The QDialog only contains two QLabel widgets.

For this one, it ignored the method I asked it to use – but it was possibly correct in doing so, as it doesn’t support arbitrary sizes (but I think that’s only for the request?):

Hi again! Can you write me a Python function (using PySide) to connect to a named pipe server on Windows? It should use SetNamedPipeHandleState to use PIPE_READMODE_MESSAGE, then TransactNamedPipe to send a request (from a method parameter) to a named pipe, then read back a response of arbitrary size.

It should have told me why it ignored using TransactNamedPipe, but when I told it that it ignored my request it explained why.


Hm, where do they nag? I don’t know what Pockets is and haven’t seen anything about it.
I also never manually update Firefox, I just restart when it tells me it’s downloaded an update.