Skip Navigation
I make games and this literally happened to me this morning
  • What is the game? It's not being a shill to answer questions.

  • Paralyzed Jockey Loses Ability to Walk After Manufacturer Refuses to Fix Battery For His $100,000 Exoskeleton
  • Like anything medically related in the US, it's our time to crack open our wallets and do our patriotic duty of paying half the nation.

    Like, if I want to talk to a doctor for 5 minutes, then it's my time to pay the all the insurance industry workers, and I have to pay my part of those 3 minutes long drug commercials you see on TV every ad break and before every YouTube video, and I have to pay all those people locking down the medical devices so that the users can't use their own data. This is my time to shine, I got to pay for all this because I talked to the doctor for 5 minutes. Also, hopefully in the end I have a few cents left over to give to the doctor.

    Fucking rent seekers...

  • Ubisofts stock tanked this morning ahead of the markets opening
  • Look at the entire history.

    In 2018 their stock price was about 24, now it's 2.

  • Error message
  • I haven't written any Java since Java 6. This makes me so happy to hear.

    What about XML, and XML based configs? Is the Java ecosystem still obsessed with XML?

    I remember I was once trying to learn Hibernate. After finding what I thought looked like the best tutorial, I skimmed through it and there was literally no Java code in the tutorial about a Java library! It was all XML! I never could understand it, but this was early in my career, maybe I could handle it now, maybe not.

  • Error message
  • I don't know. That's what I was saying. I can't possibly imagine what I could say to help someone understand that error message.

    😉

  • Error message
  • If you can't understand that error message then I don't know what to tell you.

  • Rumor: Sony Will Announce More Major PS5 Exclusives for 2025
  • The rumored 4th and 5th games...

  • Cities these days
  • You guys had a house!?!

  • Rockstar Games DDoSed Heavily By Players Protesting New AntiCheat Code
  • And I think their board is panicking trying to figure out how they can regain me, specifically, as a customer.

    More seriously, I apparently am not the only one who eventually got their fill of Ubisoft games. I think Ubisoft has planted resentment in the minds of all their customers, and as soon as they slipped a little in game quality their customers were more than happy to leave, just for the sake of leaving.

  • YouTube has found a new way to load ads | AdGuard Blog
  • I may not like it, but you do make an interesting technical argument.

    I think it would still be detectable though because of buffering.

    What you're saying assumes that videos are streamed frame-by-frame: "here's a frame", "okay, I watched that frame", "okay, here's the next frame".

    With buffering videos will preload the next 30 seconds of video, and so if you pressed a button to skip ahead 10 seconds, that often happens instantly because the computer has already stored the next 30 seconds of video. Your plan to just pretend to skip ahead doesn't work in this case, because my computer can know whether or not it really did skip ahead, because of buffering.

  • Rockstar Games DDoSed Heavily By Players Protesting New AntiCheat Code
  • Couldn't we avoid all this by giving players the option to host and moderate their own servers?

  • Rockstar Games DDoSed Heavily By Players Protesting New AntiCheat Code
  • Use a more holistic approach. Combine heuristics like the average speed and aim hit percentage with reports from other players.

    Review player reports, if a player makes a false allegation in their reports, mark that player as having less reliable reports. If a player reports someone who turns out to be a definite cheater, mark whoever reported the cheater as having more reliable reports. Etc etc.

    Like, if the report just says "player was moving fast outside a vehicle", maybe they were cheating, or maybe they were just goofing off trying to stand on top of vehicles the whole game. If the report says "player was moving fast the whole game, had the highest kill count, and was also reported by 5 other players in the match for cheating", it's a little more clear what's happening.

  • Rockstar Games DDoSed Heavily By Players Protesting New AntiCheat Code
  • I bought Crysis and didn't like the DRM, so I haven't bought a Ubisoft game since. How's that working out for Ubisoft?

  • Amazon's Monopoly of the tech industry is ruining the US economy
  • I agree. Price is important in a classic "free market" where people compete to sell goods and services for cheaper and whoever does it best makes a profit and grows, etc, etc.

    This ain't a classic free market. We frequently see companies become market leaders without ever earning a profit. That's not a classic free market.

    Succeeding as a company because you make customers happy sounds nice, but the most powerful companies today succeed by gaining favor from those already in power (venture capitalists, etc), and the customers are just a bargaining chip to be tossed around on the bargaining tables of the wealthy.

  • YouTube has found a new way to load ads | AdGuard Blog
  • Ads will always be detectable because you cannot speed up or skip an ad like you can the rest of the video.

    If they do make it so you can speed up or skip the ad sections of a video, mission accomplished.

    If all else fails, I'd enjoy a plugin that just blanks the video and mutes the sound whenever an ad is playing. I'll enjoy the few seconds of quiet, and hopefully I can use that time to break out of the mentally unhealthy doom spiral that is the typical YouTube experience.

  • Better merge it, too!
  • :+1:

  • Palworld maker vows to fight Nintendo lawsuit on behalf of fans and indie developers
  • Good call, the shape arranging mechanic existing in board game form before Tetris, and the "challenge approaching from the top of the screen" thing was a staple of many many Atari and arcade games.

  • Can I remove a git repo without resorting to `rm -rf` ?

    Git repos have lots of write protected files in the .git directory, sometimes hundreds, and the default rm my_project_managed_by_git will prompt before deleting each write protected file. So, to actually delete my project I have to do rm -rf my_project_managed_by_git.

    Using rm -rf scares me. Is there a reasonable way to delete git repos without it?

    45
    Does Lemmy really benefit from Rust? Is code execution speed the bottleneck?

    My first experience with Lemmy was thinking that the UI was beautiful, and lemmy.ml (the first instance I looked at) was asking people not to join because they already had 1500 users and were struggling to scale.

    1500 users just doesn't seem like much, it seems like the type of load you could handle with a Raspberry Pi in a dusty corner.

    Are the Lemmy servers struggling to scale because of the federation process / protocols?

    Maybe I underestimate how much compute goes into hosting user generated content? Users generate very little text, but uploading pictures takes more space. Users are generating millions of bytes of content and it's overloading computers that can handle billions of bytes with ease, what happened? Am I missing something here?

    Or maybe the code is just inefficient?

    Which brings me to the title's question: Does Lemmy benefit from using Rust? None of the problems I can imagine are related to code execution speed.

    If the federation process and protocols are inefficient, then everything is being built on sand. Popular protocols are hard to change. How often does the HTTP protocol change? Never. The language used for the code doesn't matter in this case.

    If the code is just inefficient, well, inefficient Rust is probably slower than efficient Python or JavaScript. Could the complexity of Rust have pushed the devs towards a simpler but less efficient solution that ends up being slower than garbage collected languages? I'm sure this has happened before, but I don't know anything about the Lemmy code.

    Or, again, maybe I'm just underestimating the amount of compute required to support 1500 users sharing a little bit of text and a few images?

    17
    Buttons Buttons @programming.dev
    Posts 8
    Comments 350