• 43 Posts
  • 446 Comments
Joined 2 years ago
cake
Cake day: July 18th, 2024

help-circle
    1. At least on Lemmy, this is definitely what I’ve observed. If you look at any thread that’s full of sturm und drang, it’s usually a tiny handful of accounts that are creating all of it (and then roping other people into their hostility, like a little chain reaction, like Chernobyl.) If you look at the impact, it just looks like everyone’s an asshole, but if you look at the root of the trouble, you realize most people are fine and a tiny minority are noisy and hostile and they can just get everyone else spun up.
    2. I agree, if you’re in NYC right at this moment in history and you can’t see a bigger picture of things worth getting heated up about than White Lotus, you should talk with people in your community more.





  • Grok responded to X users’ questions about public figures by generating foul and violent rape fantasies, including one targeting progressive activist and policy analyst Will Stancil. (Stancil has indicated he may sue X.)

    When you fine-tune a coding AI on code that has deliberate flaws in it, and then switch it back to having conversations in English, it starts praising Hitler and constructing other deliberately hateful content. It wouldn’t surprise me if fine-tuning Grok to be Nazi also led it to “generalize” some additional things that weren’t intended by the operators.




  • That’s not how it works though.

    I actually agree that registration is silly. It’s trivial to create fake email addresses; all it does is present obstacles and slight privacy implications for legitimate users, while forming an incredibly mild speedbump for malicious users. But, it’s probably not going away, every little tool in the toolbox that can be deployed by overworked volunteer admins against the unending tide of malicious users trying to make their lives more difficult is probably going to get deployed if it is easy to do.







  • I feel like this is an example of how the core dev team running on an instance that basically just has 3 of the admins do more or less all the moderation for the entire site is not ideal. This type of feature is probably one of the most-requested pain points for most people who run most servers, but my guess is that it’s basically completely invisible to the .ml team why it would even be needed, because their model works fine for them, so why would they.

    Of course they’ve got a right to work or not work on whatever they want, but if their goal is success and good moderation for most servers this type of scalability and teamwork enabling thing is super important.


  • Somewhere out there is an article by someone who walked around a games conference and came away from the experience horrified that so much of the content he was seeing was from small indie studios who weren’t in a position to hire wastes of oxygen like himself, and was furiously nail-biting about what this would do to the state of the industry.

    Related news is the authors of Dave the Diver having to explain that they are in no way an independent studio, and they do not deserve the award they just received for “best independent blah blah,” because “indie” has at this point simply become completely synonymous with “original and good.”



  • Yeah, almost to an excessive degree. To me it’s fine, it just means the designer has room to grow in terms of their skill at getting the right balance, but also it’s going to be a little bit of personal taste. This video includes some pretty interesting discussion of the balance between spelling things out, making sure that everyone can notice and enjoy them, versus making things opaque knowing that you’ll leave some people behind but making it that much more special for the people who found them “all by themselves” without any kind of prompting.




  • Yeah. It’s not a perfect game, it has many issues, but it is fun and exciting and it does something very very different, very successfully. I’m reminded of the Zero Punctuation review of Psychonauts basically saying that its number one good point was that it was something genuinely mad and original, in contrast to the sea of imitation that is modern gaming, and for that alone hooray.



  • All I can say is you’re missing out… I can see that it’s a type of game that may not be for everybody, but it is honestly probably the most unusual game I have ever played in my life and I’m enjoying it a lot. I almost did the same as you did, I beat Leshy one time and then continued messing around with it sort of out of curiosity… and then the whole actual fuckin’ game started.

    It just made me pick a file from my hard drive, made me a card based on it, and then told me if I let that card die, it’s going to delete that file. This game is nuts man.



  • And storing the source and such for every dependency would be bigger than, and result in the same thing as an image.

    Let’s flip that around.

    The insanity that would be downloading and storing everything you need, wrapping it all up into a massive tarball and then shipping it to anyone who wants to use the end product, and also by the way assuming that everything you need in order to rebuild it will always be available from every upstream source if you want to make any changes, is precisely what Docker does. And yes, it’s silly to trust that everything it’s referencing will always be available from whoever’s providing it.

    (Also, security)

    Docker is like installing onto an empty computer then shipping the entire machine to the end user.

    Correct. Because it’s not capable enough to make actually-reproducible builds.

    My point is, you can do that imaging (in a couple of different ways) with Nix, if you really wanted to. No one does, because it would be insane when you have other more effective tools that can accomplish the exact same goal without needing to ship the entire machine to the end user. There are good use cases for Docker, making it easy to scale services up as was the original intent is a really good one. The way people commonly use it today, as a way to make reproducible environments for ease of one-off deployment, is not one. In my opinion.

    I’ve been tempted into a “my favorite technology is better” pissing match, I guess. Anyway, Nix is better.


  • The issue is, nix builds are only guaranteed to be reproducible if the dependencies don’t change.

    Dude, this is exactly why Nix is better. Docker builds are only guaranteed to be reproducible if the dependencies don’t change. Which they will. The vast majority of real-world Dockerfiles do pip install, wget, all kinds of basically unlimited nonsense to pull down their dependencies from anywhere on the internet.

    Nix builds, on the other hand, are forbidden from the internet, specifically to force them to declare dependencies explicitly and have it within a managed system. You can trust that the Nix repositories aren’t going to change (or store them yourself, along with all the source that generated them and will actually produce the same binaries, if you’re paranoid). You can send the flake.nix and flake.lock files and it will actually work to reproduce a basically byte-identical container on the receiver’s end, which means you don’t have to send multi-gigabyte “images” in order to be able to depend on the recipient actually being able to make use of it. This is what I was saying that the whole thing of needing “images” is a non-issue if your workflow isn’t allowing arbitrary fuckery on an industrial scale whenever you are trying to spin up a new container.

    I suspect that making a new container and populating it with something useful is so trivial on Nix, that you’re missing the point of what is actually happening, whereas with Docker you can tell something big is happening because it’s such a fandango when it happens. And so you assume Docker is “real” and Nix is “fake” or something.

    I like one a package to be independent

    Yes, me too, which is why an affinity for Docker is weird to me.