• 0 Posts
  • 1.32K Comments
Joined 2 years ago
cake
Cake day: June 21st, 2023

help-circle
  • These arguments are great.

    Making a page more accessible doesn’t just mean making it easier for people with disabilities to use the page. It means improving the user experience for everyone, including those with disabilities, but also those who do not have them. An accessible UI is a UI that everyone can easily use. It also means making the page more accessible to some kinds of tools, whether those are search engine crawlers, archiving tools, or even ChatGPT.



  • So he’s capable enough to add new islands and content, but not change a trigger on how to save. One button. Same logic…

    Correct. The entire game state was not designed to be serialized. You can see this with how buggy multiplayer is. He could do saving mid-day, but I don’t think most players would want that over an entire new island worth of content, especially when the amount of work is comparable.

    A buggy mod by someone who didn’t write it doesn’t mean it’s not possible.

    I didn’t say it’s not possible. Anything’s possible when it’s your code. I said it would be hard to add now.

    You can like a game and someone and still be able to be critical of a game design decision they make. Not everyone is good or bad. A hero or villain. No one is perfect.

    This part, I don’t get. I maintained a mod with thousands of endorsements and over a hundred thousand unique downloads. I talked with modders even bigger than me regularly. Even the lead dev of SMAPI, who has some more insight into the codebase than anyone else in the modding community.

    None of us succeeded in it.

    At no point did I defend the game on its merits of being “good or bad”. I haven’t played it in years. All I did was explain that this is technically very difficult to do.


    On the topic of dark patterns, many games have specific points where you can save. This is not unique to SDV. For example, some games only allow you to save at specific points to avoid save scumming and increase the difficulty.

    What matters isn’t when you can save. It’s whether your inability to save at times is being exploited for their benefit.


  • It’s not a dark pattern. It’s a technical limitation.

    Concerned Ape wrote that game with very limited programming experience. Having significantly modded the game in the past, the code is a mess, but indicative of someone who is learning to program still.

    While I haven’t played SDV in a long time, there was a mod when I played that allowed you to save at any time. It was buggy as hell.

    It’s an indie game made by one dude. He got some help from CF for multiplayer and porting, but that was about it.

    At this rate, all indie games have dark patterns lol.



  • monitoring how they are used is good to identify if people are actually more productive with it

    Unfortunately, many jobs skipped this step. The marketing on AI tools should be illegal.

    Far too many CEOs are promised that their employees will do more with less, so of course they give their employees more to do and make them use AI, then fire employees because the remaining ones are supposed to be more productive.

    Some are. Many aren’t.

    Like your comparison, the issue is that it’s not the right tool for every job, nor is it the right tool for everyone. (Whether it’s the right tool for anyone is another question of course, but some people feel more productive with it at times, so I’ll just leave it at that.)

    Anyway, I’m fortunate enough to be in a position where AI is only strongly encouraged, but not forced. My friend was not though. Then he used it because he had to, despite it being useless to him. Then he, a chunk of his management chain, and half his department were fired. Nobody was hired to replace them.



  • Their response seems to be arguing against a claim that AdGuard didn’t even make. AdGuard acknowledged the existence of CSAM and reported it to archive.today. What they brought into question was whether WAAD was a legitimate organization as opposed to something shady.

    In their article, AdGuard published the registration address and the email of WAAD, as well as the names of the directors, and distributed confidential emails while openly defaming our actions, our structure, and the bailiff.

    Publishing the public details of an organization, like its director and the email address, are not doxxing. Emails cannot be made confidential without an agreement on both sides, and French law, even if it does protect communications between French people, cannot extend beyond France.

    Defamation also is a very strong claim to make here. I can’t speak for European law, nor am I a lawyer of course, but in the US, defamation usually needs to not only be harmful, but knowingly false. AdGuard doesn’t know who you are, nor have they made any false statements. The law they quoted also says “with an intent to harm” which is clearly not the case here, though they have shown reason to assume you have intent to harm archive.today.

    AdGuard publicly declared that all reported URLs had been removed. Our technical checks show that part of this content is still accessible on Archive.today and its mirrors.

    The fuck is a “technical check”? Maybe clear your cache? I don’t want to know what these URLs are, but I can guarantee they don’t start with https://adguard-dns.io/.


  • TehPers@beehaw.orgtoChat@beehaw.orgAnd now what?
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    2 days ago

    When you get a chance, might be good to take a break and process it all. The world will keep moving, and it won’t wait for you. But the world doesn’t move so fast that you can’t take a breather for a minute, then catch back up to it.

    Afterwards? Well, like your mom said, it’s your posessions now. What you do with them is up to you. Whether they are nothing more than mementos, or whether you inherited billions, you get to choose how those posessions are used.

    I’m no parent, but if I were, I’d want my child to use my posessions to their fullest, whether that’s making a positive change in their life, using them to achieve a dream, or even using them to further a cause they care deeply about. I’ve never met your dad, but I can’t imagine it being too different for him.


  • This is super cool! I love seeing these new implementations of JS. boa is another JS runtime written in Rust as well.

    I’m curious how easy it is to embed this. Can I use it from another Rust project? Can I customize module loading behavior, or set limits on the runtime to limit CPU usage or memory usage or intercept network calls? Can I use it from a non-Rust project? Or is this intended to be a standalone JS runtime called from the CLI? I’ve been looking at Boa as a JS engine for one of my projects, but I’m open to checking out brimstone too if it’ll work.


  • Saying the issue here is AI seems like nonsense to me. The issue is that not many tools localize to Icelandic. LLMs are just some of those tools.

    Anyway, languages rise and fall. Hell, Hawaiian was practically extinct at one point and nearly entirely undocumented. Hebrew was extinct for over 1000 years before being revived.

    To me anyway, what’s most important is documentation. As long as the shift is organic, the rise and fall of languages doesn’t bother me at all. Let’s just make sure that the languages are very well documented so that the languages are never forgotten. They are one of the most important aspects of cultures, after all.


  • Another commenter already explained why this is unsound, so I’ll skip that, though static mut is almost universally unsound.

    Note, of course, that main() won’t be called more than once, so if you can, I would honestly just make this a stack variable containing a Box<[u8; 0x400]> instead. Alternatively, a Box<[u8]> can make it simpler to pass around, and a Vec<u8> that is pre-allocated with Vec::with_capacity lets you track the current length as well with the buffer (if it’s going to have a variable length of actually useful data).

    If you want to make it a static for some reason, I’d recommend making it just static and thread_local, then wrapping it in some kind of cell. Making it thread local will mean you don’t need to lock to access it safely.




  • Rust currently isn’t as performant as optimized C code, and I highly doubt that even unsafe rust can beat hand optimized assembly — C can’t, anyways.

    A bit tangential, but to answer this question, nothing beats the most optimized assembly code. At best, programming languages can only hope to match the most optimized assembly.

    Rust does have macros for inlining assembly into your program, but it’s horribly unsafe and not super easy to work with.

    Rewriting ffmpeg in Rust is not a solution here (like you’re saying).


  • The sheer scale of this across multiple sectors should put any fears that we’re not in a recession to rest.

    Wow thanks. I feel so relieved now!

    Seeing my own friends affected by both the layoffs and the shutdown (since their work is government funded), there’s no way the economy isn’t royally fucked.

    Anyway, I’m no economist, so I won’t pretend like I can say what will happen, but it’s very clear something will happen, or we’re already in it (more likely).

    Can’t wait to see what happens if/when AI’s hype dies too.


  • Also, when it comes to mounting radiators, all that matters at the end is where the air collects, and as long as a vertically mounted radiator has one end above the pump, then air will naturally collect there. Tube orientation matters, but not a whole lot. Tubes on the bottom usually means that air collects on the side of the radiator where it’s less likely to recirculate back into the pump, but mounting it the other way doesn’t usually cause issues because the air can still collect and what few bubbles make it to the pump aren’t significant enough to damage it.

    TL;DR: the goal is to not run the pump dry, which should never happen as long as the pump isn’t at the top of your water loop (radiator below pump).



  • I already do #1, and I push for #3 (specifically Python or TS) where I can at work, but there’s this weird obsession with bash that people have at work despite all these scripts not running on Windows natively (outside WSL). Currently I do #2, but I often end up just stuck in bash the whole time because it’s needed for things as simple as building our code. I want to try out Fish as an alternative for those situations.


  • Yeah I normally use Nushell as well. It was the one cross-platform shell I really liked.

    I’ll still use it. I just need to find something a bit closer to bash for when I need to use bash commands to do something, or where working in an environment where others use bash. Nushell has some pretty major syntax differences like && not being used to “chain” commands.