Skip Navigation

Posts
78
Comments
2,258
Joined
2 yr. ago

  • I'm thankful to be in an area where my naive belief I'm pretty safe from wild fires turned out to be actually correct.

  • Bluesky is another instance of effectively what you're talking about, an open algorithm platform. In theory Skylight (ATProtocol short form video app) is as well.

  • This took me longer than I would like to admit to process

  • It's not the media, it's the recommendation algorithm.

    They're all a problem, but we have no way to regulate or monitor the algorithms as it stands.

    Tiktok is an even higher risk because the recommendation algorithm is unknown to anyone on US soil. Nobody is going to whistleblow from the inside on TikTok because... they can't; it's all compartmentalized and nobody outside of China has access to the algorithm.

    This whataboutism is about as valid as "her emails" because yeah, it's a problem but there are also other problems to consider and reasons to get started fully acknowledging we won't solve the entire problem.

  • Nearly everything until the talking heads get involved and turn different perspectives on an issue into polarization on an issue.

  • And games are more expensive than ever for studios to make and push to the market. Given that, I'm not surprised we have loot crates, micro transactions, and predatory dlc. A AAA game should have a baseline price closer to $200.

    Yeah ... then there are people the won't buy games for more than $20 (not necessarily because they can't afford it but because "it's just a game") ... which is just kinda crazy to me (and disrespectful to the amount of work that went into the game).

  • Permanently Deleted

    Jump
  • Both can be bad.

  • Permanently Deleted

    Jump
  • It's about content delivery, i.e. the CCP having direct control over what content (i.e. propaganda) is sent to Americans on the platform via their proprietary algorithm (with all the source code heavily guarded in mainland China).

  • For anyone on Linux having problems getting into matches because the region isn't available, switch to Proton bleeding edge for Hunt.

  • If the screenshot says it all they don't want that, they want exciting leftist news

  • Yeah, that could definitely be cool.

    Cost would be a big factor ... Fandom got big by being free and eventually replaced (or heavily customized) mediawiki to the point it's unrecognizable.

  • I didn't realize bedrock stayed with the old combat system... I honestly largely prefer that one

  • Interesting, that's a detail I hadn't heard. So it sounds like the mobile edition eventually ate the console edition and then they wanted it to possibly eat the original Java version too, but couldn't get there(?)

  • Has bedrock edition changed much? I remember they had VR at one point, but in general they've kept the features pretty much identical AFAIK

  • No, the Java version runs within the JVM and the C++ version would run via native code. That's effectively like having something work on an ARM processor and an x86 processor at the same time.

    They both could be modded, but it's harder to mod C++ because the optimization phase is ahead of time. Minecraft modding is in part an accident because the optimization phase happens during runtime within the JVM ... that means the binary ".jar" files align much more closely with the code mojang wrote ... where as an ".exe" would be radically changed.

    C++ modding would also be more difficult because it's harder to preserve stability in C++. In the JVM, basically the only way the program crashes is if an exception goes uncaught or the programmer explicitly asks the program to termite (which never happens). In C++ there are still exceptions but there are a whole lot of things that are exceptions in Java that aren't in C++ ... so you can't just fence off the modding API cleanly and say "if an exception is thrown while running this mod keep going."

    Those two reasons are the major reasons that games pick Lua over native C++ based mods (that and you can secure Lua and prevent it from doing anything it wants ... Java and C++ mods can do anything they want, which is part of why the Minecraft modding scene is so good; if you want to connect to a database for administrative purposes, you can write that mod server side and have your database of block changes to find griefers, your plot database to protect plots, your store database to provide shops, etc).

  • I mean, yes and no. They have (I believe) slowed down, but for quite a while they were making MAJOR refactors every release and the internals were rapidly changing despite not much being visible on the surface.

    I think a lot of that stopped with dinnerbone taking a step back ... but I'm also not as involved with the scene anymore so I'm not entirely sure if that's true.

    But yeah, they regularly used to screw modders up redoing internals to make things dynamic instead of hard coded and refraction tons and tons of stuff.

    I miss the days when they were ambitiously pursuing an official API for mods; now they've kind of resigned to letting the community projects handle that. Which is not a terrible approach, but it's not a great one either.

  • Yes, this is the reason, summarized well.

    If Mojang ever stops updating Java, people will just play the old version because of the huge number of mods. Modded Minecraft servers made Minecraft what it was and then after Mojang put effort into the Java modding community that was doubly true because the client mods got good and got complex.