• 2 Posts
  • 908 Comments
Joined 2 years ago
cake
Cake day: June 20th, 2023

help-circle
  • The more accurate picture is “A/AA games are doing great in terms of creative&cultural output with many mainstream successes despite being completely choked out by out-of-touch AAA studios capturing most capital investment”. 2025 has objectively been a great year for (semi-)indie games and a humiliating slap in the face for AAA studios.

    But yeah I would still strongly advise against switching to a gamedev career regardless of whether the industry eventually sees reason and shifts away from AAA to AA. As with the rest of the entertainment industry, it’s ontologically exploitative and is famously a dream-crushing machine. Too many starry-eyed kids to be a healthy job market.


  • I don’t think that’s really fair. There are cranky contradictarians everywhere, but in my experience that feature has been well received even in the AI-skeptic tech circles that are well educated on the matter.

    Besides, the technical “concerns” are only the tip of the iceberg. The reality is that people complaining about AI often fall back to those concerns because they can’t articulate how most AI fucking sucks to use. It’s an eldtritch version of clippy. It’s inhuman and creepy in an uncanny valley kind of way, half the time it doesn’t even fucking work right and even if it does it’s less efficient than having a competent person (usually me) do the work.

    Auto translation or live transcription tools are narrowly-focused tools that just work, don’t get in the way, and don’t try to get me to talk to them like they are a person. Who cares whether it’s an LLM. What matters is that it’s a completely different vibe. It’s useful, out of my way when I don’t need it, and isn’t pretending to have a first name. That’s what I want from my computer. And I haven’t seen significant backlash to that sentiment even in very left-wing tech circles.


  • Honestly, PCs are not ready for local LLMs

    The auto-translation LLM runs locally and works fine. Not quite as good as deepl but perfectly competent. That’s the one “AI” feature which is largely uncontroversial because it’s actually useful, unobtrusive, and privacy-enhancing.

    Local LLMs (and related transformer-based models) can work, they just need a narrow focus. Unfortunately they’re not getting much love because cloud chatbots can generate a lot of incoherent bullshit really quickly and that’s a party trick that’s got all the CEOs creaming their pants at the ungrounded fantasy of being just another trillion dollars away from AGI.



  • The counterpoint is that, especially with FOSS that does not receive much (if any) corporate backing, developer retention and interest is an important factor.

    If I’m donating some of my free time to a FOSS project I’d rather not slug through awful build systems, arcane mailing lists, and memory unsafe languages which may or may not use halfway decent - often homebrew - manual memory management patterns. If the project is written in Rust, it’s a pretty clear indicator that the code will be easily readable, compilable, and safer to modify.



  • [Pop/rock] music has been a formula virtually since its inception. Respectfully, AC/DC put out some bangers but also all their songs kinda sound the same. Thriller was successful because it was written specifically to be the most commercially viable album of all time. Hell even in the '60s the formula was very simply “find out what’s topping the African-American charts and get white artists to copy it”. That’s how we got disco, which became so formulaic by the end that its “downfall” was a Worldwide Cultural Moment. If you think today’s music is bad, go listen to the top 100 disco hits of any random week in 1978… Probably not going to be a particularly great musical experience.

    Every successful counter-cultural movement only lasts a few years before only the esthetic remains. Angry young artists “flame out” or sell out, corpos take over, make a safer formula out of it, and only then does the genre go mainstream.

    I’d argue things are actually a lot better now than they were in the Disco era. The fragmentation of culture and slow downfall of linear media means that the formulaic stuff can be much more easily avoided, and it doesn’t reach nearly the same level of cultural saturation like it did when the radio was the main way to listen to music. The top charts are still relevant, but nowhere near what they were 20 years ago. Today anyone can pick up a DAW and be their own producer then self-publish to youtube, so who cares if the labels are led by uninspired fuckheads? They’re not in a position to bottleneck music production or audience reach anymore.


  • Celeste is the perfect embodiment of that philosophy IMO. The whole story is an explicit metaphor for overcoming a great personal challenge. And the gameplay’s difficulty is what drives that point home and makes the game an all-time great.

    I’ve seen a couple streamers with G4m3r Skillz breeze through Celeste, and the game didn’t leave them much of an impression. But it touches very deeply those who struggled through it because the struggle is the bond that ties the player to Madeline.

    Other games it doesn’t really matter. Portal 2 is a great game even if the puzzles are quite easy, because the greatness lies in its writing, atmosphere and worldbuilding. There’s an Aperture miniseries just begging to be made - but a Dark Souls or Celeste cinematographic adaptation would miss the entire point.


  • Virtually every state person in the history of the US is guilty here.

    Like I’m sorry but abortion and gay marriage should have been passed as a law or constitutional amendment. Executive orders so broad they involve unilaterally declaring war on Korea or the middle east should have always been struck as unconstitutional and/or triggered a constitutional crisis.

    The SCotUS being allowed to grant themselves the power to reinterpret the constitution to fit the moral standards of the day and unilaterally expand federal executive power to get things moving despite a weak congress was always a disaster waiting to happen.

    Now when Trump says “I can do anything I want by EO” >75 % of the country is like “oh business as usual then, carry on nothing to see”. It should be justification enough for blue states to secede, but instead they won’t even politely tell ICE to fuck off. Your constitution has been unfit for purpose since the 19th century, and Trump declaring itself king is the only logical conclusion to his office having been granted supreme authority on all affairs by WWII - not his problem that his predecessors didn’t try to test the limits of that power.



  • Quite the contrary! They effectively sell their cards at a ~20% discount to a bunch of AI companies by “investing” in the companies for a promise to use that money to buy their cards.

    It’s as dumb as it sounds and textbook unsustainable economic bubble behavior, but NVidia don’t care because more sales = more stonks = more money to “invest” = more sales = more stonks = more yachts for Jensen. So what if it makes 1929 look like a walk in the park, it’s not their problem.



  • On maybe the third day of my first programming job, a colleague pulled me aside and said “don’t give me ‘shoulds’ and ‘probablys’. You need to sound confident so I can know to trust what you’re saying”.

    That guy was a bit of a dickhead in general but there’s a lot of truth there. To the question “what’s the expected impact of this change?”, “None.” is a good answer. “Well it should work…” is not useful feedback and a good Operations Manager will rightfully reject the change.

    Of course it is better to be hesitant than falsely confident, but far too many (software) engineers hide behind indecisive language to dodge the necessary hard work of validating their hunches. If you didn’t test your shit fully, just say so. If you’re right, say it. Personal ego doesn’t belong in an engineering discussion.


  • Real answer: it depends.

    • Deleting a file in use: no problemo. File is removed from the directory immediately, but exists on disk until last program who had the file open closes. Everyone wins! (Unless you’re trying to free up space by deleting a huge file that’s being held open by a program and not understanding why the filesystem usage didn’t go down)
    • Unmounting a hard drive in use: Will error out similarly to Windows. lsof can tell you which process has which files open. There’s nuance with lazy unmounts and whatnot but that should not be used in most cases.

    Now in practice you should be wary of one very important thing that changes compared to Windows: Writes are asynchronous on Linux. First the kernel writes to RAM, then it flushes to disk at a later time for performance reasons (this is one of the reasons why writing a bunch of small files is many times faster on Linux than Windows). The upshot is that just because your file copy is “done” doesn’t mean you can just yank the USB cable. Always safely unmount before unplugging a storage device on Linux.


  • And Hytale got shitcanned!

    It’s actually amazing that in an industry so hell-bent on copying successful formulas ad-nauseam (e.g. Quake&Doom spawning the whole genre of First Person Shooters), Minecraft has not seen anything reach the status of spiritual successor in over 15 years of charts-topping sales performance. Not from its own studio, not from its former creator, not with the Late Hypixel Studios.

    There are survival games and base-building games and exploration games, but none of them are “Minecraft-likes” in the way that early FPS were “Quake-likes”. CS has Valorant. LoL has Dota. Tekken has Street Fighter. PUBG has Fortnite has Roblox. Minecraft somehow remains truly one-of-a-kind, a gaming UFO that eludes suits looking for a replicable formula. I actually believe Mojang themselves don’t understand why Minecraft works in the first place either, which is why every update seemingly either underwhelms or angers everyone. That game is lightning in a bottle and no-one knows what to do with it.

    If Nadella had a stroke so bad he decided to make Minecraft FOSS, I’d be really interested to see what would happen. If any for-profit company was allowed to make direct Minecraft derivatives, I do think we would see a level of creativity and innovation that would dwarf even the already extremely prolific current modding scene.



  • I can’t prove it but I think there is a real sociolinguistic phenomenon where Americans are unusually obsessed with “safety through temperature”. Like they hear “fire = no germs” as children and somehow internalize that steaks should be somewhere between well done and burnt beyond recognition, and dishwashers should boil your plates like you’re sterilizing a hospital gown that’s been thrown up on by an Ebola patient.

    Soap, bitches. It works. Even at 40 °C (with modern detergent and washing cycles). Good thing too because I don’t want to know how y’all are having sex if you think boiling water is the only decent cleaning procedure for putting things in your mouth.


  • Technology Connections and Hank Green have been shouting this for a while, but that whole issue is way overblown. Some first gen EVs around 2010 had issues, but every major manufacturer since then has way exceeded expectations on battery lifetime thanks to advanced BMS and thermal controls. Car batteries don’t just rapidly degrade out of the blue, the tech has nothing in common with what’s in your phone. But public sentiment has not caught up because most people think Li-Ion = smartphone = dead after 2-5 years, so second hand EVs are way undervalued. Which is great for buyers.

    It’s not like you can’t easily total a second-hand ICE by mechanical failure. Just ask anyone who own(ed) a puretech engine. If you went by manufacturer recommendations, the fucking thing might just eat your timing belt one day and grenade itself. And there’s no way a full engine swap on a 5-10 year old economy car is economically viable.

    There’s always something that could go wrong when you buy a car. Unless you get comprehensive insurance and warranty, you need to accept the fact that losing the entire car to an accident, catastrophic mechanical failure, or theft is always a risk. If that’s too much anxiety to deal with, get a lease.


  • azertyfun@sh.itjust.workstoScience Memes@mander.xyzFight me
    link
    fedilink
    English
    arrow-up
    12
    ·
    26 days ago

    If we’re going to be pedantic, let’s do it correctly.

    Even with the blinds shut, a space heater will emit a surprisingly large amount of radio waves (mine actually disrupts USB devices with a small EMP when it turns on, and anyone with an RTL-SDR can tell you those 50 Hz harmonics are rough). Some of those radio waves will penetrate the walls/blinds and a tiny fraction might escape the atmosphere and head off into space. From there some will find their way to interstellar space and potentially drift “forever” (well, until the heat death of the universe or whichever theory you subscribe to; I think at that point saying “the photon never got converted into heat energy” is a good enough approximation).


  • If only.

    Should America one day go back to something resembling a functioning democracy, his legacy will be “who could have seen it coming” “no-one I know voted for him” “voter fraud” “we were too afraid” “at least the trains ran on time” “it was China/Russia’s fault”. I’ve heard most of those already.

    Variations on all these lies and more were peddled by the Germans after the war and believed by the world. Even by American judges right after WWII who acquitted the overwhelming majority of Nazi War Criminals tried at Nuremberg despite mountains of evidence.

    Anything but a society, culture, and individuals holding themselves accountable for easily predictable and predicted failures to govern.