• 0 Posts
  • 51 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle






  • ShortFuse@lemmy.worldtomemes@lemmy.worldTemperatur
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    2 months ago

    2.54cm is easier for me because I do 2.04x + ½x.

    8 inches? 16.32 + 4 = 20.32

    12? 24.48 + 6 = 30.48

    30? 61.20 + 15 = 76.20

    60? 122.40 + 30 = 152.40

    I don’t know why, but I find this easier. Maybe because it’s 4x, 2x, and ½ and my brain doesn’t like adding 32 and working in 1.8.




  • ShortFuse@lemmy.worldtoMemes@lemmy.mlsIGmA BeHaiovouR
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    2 months ago

    Steam has limited rollback support from the command line which we had to do plenty of times for Starfield when working on Luma. Sometimes updates are small. Sometimes the entire exe gets reshuffled so you have to find where to patch the exe all over again.

    All the versions are apparently there. You just need to download the “depot” and it’ll dump into a folder. From there you copy that folder over your game directly.

    It also works the other way around. I can download the depot for the latest version and stay on the version I’m at. It’s useful to pick apart and diff what was actually changed.

    Why they can’t add that as an option I’m not sure. That seems more of a UX/UI issue rather than a technical one (like avoiding people using old versions on the web server).


  • ShortFuse@lemmy.worldtoMemes@lemmy.mlsIGmA BeHaiovouR
    link
    fedilink
    arrow-up
    14
    ·
    edit-2
    2 months ago

    I was about to mod the game for HDR and then found out news of FO4 getting updated.

    Updates break mods. Just how it is. Though, after seeing the work needed for modding Starfield after each exe change, I’m doing shader replacement now. As long as they don’t change from DirectX, I should be good.

    Edit: Nevermind. Somebody asked me for help and got roped in. Got HDR working. Let’s see if it actually lasts.

    Edit2: Just gotta fix TAA. Source








  • I’m sorry = I am sorrowful (sympathy or empathy)

    I apologize = I am to explain my action (defense)

    Consider:

    • “I’m sorry you feel that way.”
    • “I owe you an apology.”
    • “What a sorry excuse for a ___ .”

    Meaning, “I apologize” at a funeral is the same as “In my defense…”


  • Yeah, that’s a big simplification and I get it. But the async syntax itself syntax “sugar” for Promises. It’s not like C# or Java/Android where it will spawn a thread. If you take a JSON of 1000 rows and attach a promise/await to each of them, you won’t hit the next event loop until they all run to completion.

    It’s a common misconception that asynchronous means “run in background”. It doesn’t. It means run at end of current call stack.

    Prior to that, the browser had window.setTimeout and its callback for delays and animation and such - but that’s it.

    And you STILL have to call setTimeout in your async executions or else you will stall your UI.

    Again async is NOT background. It’s run later. async wraps Promise which wraps queueMicrotask.

    Here is a stack overflow that explains it more in detail.