Rust dev, I enjoy reading and playing games, I also usually like to spend time with friends.

You can reach me on mastodon @sukhmel@mastodon.online or telegram @sukhmel@tg

  • 0 Posts
  • 79 Comments
Joined 1 year ago
cake
Cake day: July 3rd, 2023

help-circle

    1. What could’ve fit in a screen of text should not be a video at all
    2. I save videos for later all the time, I just watch them never
    3. If some information is not visual-first, and not entertainment, if it may be important to people and should be spread, it also better not be a video. Maybe accompanied by a video to make use of audience reach, if you already have a channel with an audience, that is.







  • Except for the countries that have anti-hate laws that are deliberately vague and specifically used to jail anyone who is disliked by the government. China and Russia come to mind as examples, but I’m sure they aren’t the only ones.

    Besides hate-speech, I’m not sure how much should be censored really. China does a lot of censoring to ‘protect’ their citizens from everything, I’m not sure this would be a good thing even if that really was a goal.

    And protecting children from traumatising content looks like another good thing to do, but under that banner I usually see governments doing whatever they want without caring about children past using their image.





  • TL;DR: if something not from Amazon is delivered by Amazon Spain, it’s a PITA and the recipient has no control over delivery.

    I recently had one delivery sub-contracted to Amazon Spain, it was a nightmare. I was not able to choose a different date (only the original delivery company could, but they didn’t answer me at all), not able to choose a pick up point (for the same reason), not able to correct the address that was slightly messed up. They emailed me that the parcel is up for delivery in 10 days, and delivered it next day after the email, probably 1 and 10 are close enough.

    It’s a lucky thing they even called me, I was away for several more days and couldn’t receive the parcel. The support said they will usually make three delivery attempts and then send back, but that they may do more or less attempts. Also they responded that I should give the seller some time to respond to my inquiry about moving delivery date, but they will continue to try to deliver and maybe fail and send back.

    By the way, the original delivery company never replied at all, if I were unable to finally catch a delivery I would be out of luck. Also, the delivery window is 10 AM to 10 PM, no details, just wait and hope








  • I see now, that you were misunderstood in some parts.

    even if I got reported a really weird bug related to UB, I should (I am not experienced enough to make a claim) be able to know it’s UB since the game’s gonna crash when I try to recreate the bug in Debug.

    This may be problematic for several reasons: it may be hard to reproduce, the more complicated the state, the harder; bug may rely on some race condition that may be much rarer in Debug because of speed difference; UB is notorious for causing things that should (seemingly) never happen, like returning from infinite loops, proving false statements true, and such, so it may be hard to understand what at all happened and why.

    Regarding optimisations, it might still be better to try to profile the code (I will be honest, I don’t do that until the moment when I can’t go further without optimisation, and I haven’t reached that with Rust) and see what are the real hot spots that require optimisations. I hope that someday you will be able to upgrade your machine, and hope that your game will be a good example of something that really runs anywhere