• 1 Post
  • 19 Comments
Joined 7 个月前
cake
Cake day: 2023年11月20日

help-circle


  • SorryQuick@lemmy.catoLefty Memes@lemmy.dbzer0.comSkill
    link
    fedilink
    English
    arrow-up
    5
    ·
    2 个月前

    The thing is, “unskilled” jobs have a huge worker pool. Just about anyone can do it. Perhaps not that well, but it doesn’t matter much how well you do it for most of these jobs. Take a cashier. At best you might be twice as effective as the “normal worker”. Then compare that to what people call “skilled jobs”. Say a civil engineer. Here, your “normal worker” straight up can’t do it without years of training, and failure costs lives. For this reason, “skilled jobs” have a tiny worker pool and of those, only a few are adequate. It’s only natural that these few would ask for and receive a much larger pay. That’s not to say that “unskilled workers” shouldn’t be paid a living wage, but in a capitalist world, they will always be paid less.


  • SorryQuick@lemmy.catoMemes@lemmy.mlEA gonna EA
    link
    fedilink
    arrow-up
    3
    ·
    2 个月前

    I played it when it came out and while it was a fun playthrough and I’m glad I played, it’s nowhere near factorio on replayability. It also feels a lot more shallow, like they put more time into the visuals rather than actual game mechanics. And in the end what killed it for me was the performance. On factorio you can still have decent fps/ups in a 1k hour megabase, satisfactory in the other hand gives up pretty quickly. Mod support is great compared to most games, but doesn’t really come close to factorio.


  • SorryQuick@lemmy.catoProgrammer Humor@programming.devNew language
    link
    fedilink
    arrow-up
    4
    arrow-down
    3
    ·
    3 个月前

    Which is exaxtly what I said, that it’s fast enough for most use cases.

    In theory though, you will “gain performance” by rewriting it (well) in C for literally anything. Even if it’s disk/io, the actual time spent in your code will be lower, while the time spent in kernel mode will be just as long.

    For example, you are running a server which reads files and returns data based on said files. The act of reading the file won’t be much faster, but if written in C, your parsers and actual logic behind what to do with the file will be.

    But it’s as you said, this actual tiny performance gain isn’t worth it over development/resource cost most of the time.