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

  • 0 Posts
  • 34 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle




  • LCD for extra brightness? I don’t think you’ve been keeping up as mobile OLEDs are usually brighter than mobile LCDs. Not that there are many LCDs left.

    The Nokia XR21 is one LCD phone released in 2023:
    IPS LCD, 120Hz, 450 nits (typ), 550 nits (HBM)
    Another phone with brightness listen on gsmarena is the Oukitel WP30 Pro:
    IPS LCD, 120Hz, 430 nits

    Take a few popular OLED phones for comparison…
    Galaxy S24: Dynamic LTPO AMOLED 2X, 120Hz, HDR10+, 2600 nits (peak)
    iPhone 15: Super Retina XDR OLED, HDR10, Dolby Vision, 1000 nits (HBM), 2000 nits (peak)

    Or for consoles, Steam Deck LCD is about 400 nits, while the OLED is up to about 600, or 1000 in HDR.



  • This is less of an issue in multiplayer games, as they rarely have very narrow FOVs by default. The worst offenders are often console ports and slower first-person games.
    FWIW while it’s a competitive advantage with high FOV, if there is a slider, it’s still fair since everybody can use a higher FOV if they want to.
    It’s not all advantage though, aiming gets harder (aside from the distortions).

    I don’t see why it matters at all in single-player. So what if it makes the game easier? Who cares?
    The fact that I don’t have to stop due to almost vomiting also makes it easier in a way, but I really don’t mind.

    The fact that the optimal FOV differs on a per-player basis is of course exactly why I want a FOV slider everywhere. I usually prefer about 105 degrees horizontal (in 16:9), while some modern games default in the range 75-85.






  • How does that work, and with which editor settings? If you simply set the tab width (tabstop) in vim, things go south.

    Say you have a function definition one indent level in, then 22 characters of text. You more want to align the next line to that. How does that work in practice with tabs?

    The obvious way with tabs and ts=4 would be 6 tabs and two spaces(one tab for the initial indent, the rest to match 22 characters). But then someone with ts=2 comes along and barely gets half way there, or someone with ts=8 who overshoots by a lot.





  • 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.