• 11 Posts
  • 207 Comments
Joined 2 years ago
cake
Cake day: June 16th, 2023

help-circle

  • BG2 came out in 2000. It didn’t exactly have a huge sales happening in 2023 either. It was largely considered as a shelved IP. Yet BG3 came out with massive success. My point is that you have no point. DA was (I would say “is” if veilguard wasn’t such a horrible piece of shit) a strong IP with or without inquisitions long tail given from past sales alone. No one ever goes and says their best selling product ever is a weak IP. It’s completely bollocks that you’re framing it as a weakening IP. Clearly BioWare thought it was strong too since they’ve spent huge amount of budget into veilguard. You’re presuming you know more than their huge investment and sales projection team about Inquisition sales.

    Besides, how would you even know if Inquisition had a long tail or not? You have no figures, this game was released exclusively on ea platform at first and continued to be for a long time until it was finally released on steam. I know, because I remember begrudgingly buying it on ea origin. Steam’s public data in this is hardly a meaningful pie. My 12m Inquisition data on sales was their Sept 2024 release info. Which I assume BioWare released to imply a long tail and and continued popularity to get more sales into veilguard. But let’s not assume.

    Btw, I didn’t say you said it didn’t have a lot of sales either.











  • GrumpytoGamesPEGI gives balatro an 18+ rating
    link
    fedilink
    English
    arrow-up
    14
    arrow-down
    1
    ·
    1 month ago

    NA mostly uses ESRB while most of Europe uses PEGI as their rating board. They’re different organizations so they can have different criterias for rating as well as different inspectors actually doing the rating.





  • GrumpytoMemes@lemmy.mlit's that simple
    link
    fedilink
    arrow-up
    4
    arrow-down
    4
    ·
    2 months ago

    It’s not and such content should be banned from memes. But Lemmy has nearly no moderation on validity of content. Tbh, I like Reddit a lot better in many ways except for the asshole admins. It has problems, but still lot better controlled than here.


  • GrumpytoMemes@lemmy.mlSoftware: Then vs Now
    link
    fedilink
    arrow-up
    2
    ·
    2 months ago

    I’ve already addressed this same argument to the other commenter in length. But if what you say is true, which it is not, then python is not inefficient since it’s already equivalent to C. Thus OP point of something being inefficient because it was made in python is wrong.



  • GrumpytoMemes@lemmy.mlSoftware: Then vs Now
    link
    fedilink
    arrow-up
    3
    ·
    2 months ago

    Nearly every languages’ every core packages are written in C. And almost every higher packages have some amount of C. That doesn’t mean we get to say every program is done in C. And if you keep drilling down, everything is just machine lang. And certainly still disproves the OPs point of inefficient python.

    Saying it’s all done in C hardly even true. Just look at xformers library on GitHub. Only 2.7% of the code is C. And the entire library is about optimizing.

    Additionally, vast majority of the great leaps in ML efficiency changes hasn’t come from better programmed packages, though they too certainly made big strides. How we calculate itself has changed. That’s what makes the greatest optimizations in anything. It doesn’t matter what language it is, doing a loop 1000000 times to add 1 is going to be worse performance than just doing 1 multiplied by 1000000. How we calculate, what we choose to give up (such as determinism in some implementations if SDP attention changes) and such makes big differences.

    Optimizations also has to be done by someone. Whether that be data scientists or otherwise. The ability for higher level languages to enable them to do so like you say also makes a big difference. If all the programmers had to optimize in C only, we’d still be way behind where we are now in performance.

    Just swapping languages doesn’t yield better results like OP is implying.