• 0 Posts
  • 24 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle
  • I’ve got Gran Turismo 7 and it’s great in some ways but they ruined the pacing of the game. It hands out cars like they expire in less than a week. It can be fun to try out a whole bunch of different cars, but there’s not much sense of progression like the older ones gave.

    I remember building a connection to some of the cars in older games. When you bought a car, it was meaningful because it took time to win enough money to afford something, and then I’d spend a while upgrading it until eventually hitting a ceiling and needing a better car to upgrade to progress to more races. And then add some variety with a few races with rules or restrictions along the way to give a reason to buy some other cards in the same tier, but then then it would be a big decision.

    In GT7, all except the top end supercars feel like an afterthought, my garage gets filled for free as I win races, and any time I want to try a different car, first thing I do is buy most or all of the upgrades because it’s all trivial. Race with limiting rules? Ok, give me 5 minutes and I’ll find, buy, and max out another car to win this one.

    Granted, it has more of an emphasis on the driving than the older ones did (where you could usually take your super car into whatever races your wanted and see how many times you could lap everyone), but I think I like the progressing through cars part more than the racing part and GT7 is disappointing in that regard compared to GT4 or GT3.



  • I like that someone figured out half assing things can be just as funny or even funnier than putting in the effort to make it look more professional.

    Now I’m curious about who first bottled that lightning.

    Maybe the makers of Aqua Teen Hunger Force? Half the characters in there seemed like they were making it up as they went and is the earliest one I can think of where that was a common theme.

    Home Movies came later but is the earliest where that’s applied to media produced “in-universe” that I can think of.

    Home Improvement was earlier than both and Tim was often out of his league on his show, but that was more of a “ill prepared but at least trying to be professional” act than “making it up as we go and not even trying to hide it”.


  • Back in the day, when I fired up Mortal Kombat 3 for the snes, I’d usually end up spending more time in the space invaders game than playing MK itself, especially since the consoles kept the tuning intended to keep the quarters coming for the arcade version (first fight would be easy, next fight would be hard, then easy after continue, so it wasn’t just pay to play for the arcade but pay to win).

    I’m curious if I’d remember each of the codes required for the secret menus, one of which contained the mini game. Can’t remember them offhand but it might be different with an snes controller in my hand.

    Actually I think I do remember one of them (or maybe it’s the Konami code, or maybe those two are the same code):

    Up, up, down, down, left, right, A, B, A

    Or maybe it was right then left. Lol I also remember usually needing to try several variations before I’d get each code correct.



  • Reviews say it’s adding a giant QR code to downloaded videos to get people to pay a license fee but I do not see that after downloading something just now. Though tbf, they did update it yesterday and might have removed that because of the feedback they were getting.

    Permissions look reasonable to me, based on my understanding of what they need to do for the functionality, though I suppose there is potential for abuse.

    It requires a companion desktop program for some streams, which did seem sketchy at first but I wasn’t able to find any specific claims of it doing anything undesired, just people who noped out when they saw it wanted them to install something and others who said it does function as desired. Again, hard to say if it does anything in addition to enabling some streams to be downloaded, but I haven’t noticed anything out of place on my PC since installing it either from tool-based scans or manual checks of places where malware can put itself to survive restarts.

    There were also claims that it didn’t work with YouTube in the reviews, but that doesn’t seem to be the case for me, since it does light up. Though maybe that was timing-based, too, where Google briefly managed to block it only for them to adjust.

    So I haven’t seen any of those issues but YMMV. I’m going to keep using it but will also keep an eye on it. Either way, thanks for letting me know.




  • Also you can just block elements you right click on in Firefox (though this might be an option added by an add-on). If there’s hidden elements you just need to go through each of those until you can click on the one you want directly (and you can tell by what is highlighted in the inspect element mode).

    You can also hit delete in inspect element mode to remove that element. You can also edit whatever you want in the element. Makes me wish it existed back when I was doing more web dev work, would have made things a lot easier when debugging.


  • With all these stories of malicious or incompetent mods, it makes me wonder if Russian trolls managed to get a bunch of mod positions on Reddit and mod to frustrate and hurt or kill communities to further division. Because it sounds a bit beyond a power trip or normal incompetence.

    Though it could be due to volume and lack of effective tools and mods just dealing with their queues with batch actions and ignoring a lot of messages.

    I suppose there could also be some mods trying to kill it from the inside after deciding they didn’t want to die on the “set sub private” hill once the admins started taking subs back. Guerrilla modding.

    Either way it’s a shitshow.


  • Anyone who cares to see it already has, so I wouldn’t waste too much energy on it. Even a smoking gun would likely be disappointing when the world keeps turning without much change.

    Though if you could show they’ve fucked the shareholders somehow, that might be different. But even there, most of the shitshow is out in the open and if they didn’t cross the line by driving away so much of their userbase, I’m not sure what would be considered crossing the line.


  • They can also be entertaining. Like there was one post removed within the past week where the mod said “don’t threaten mod action”, so I was curious and looked it up on the log. The guy had taken offense to something that wasn’t offensive (heard what they wanted to hear instead of what was said) then gave an ultimatum that they either apologize and retract within an hour or they’ll report them and an investigation on their comment history would happen. It was hilarious.




  • Yeah, I was going to mention race conditions as soon as I saw the parent comment. Though I’d guess most cases where the debugger “fixes” the issue while print statements don’t are also race conditions, just the race isn’t tight enough that that extra IO time changes the result.

    Best way to be thorough with concurrency testing IMO involves using synchronization to deliberately check the results of each potential race going either way. Of course, this is an exponential problem if you really want to be thorough (like some races could be based on thread 1 getting one specific instruction in between two specific instructions in thread 2, or maybe a race involves more than 2 threads, which would make it exponentially grow the exponential problem).

    But a trick for print statement debugging race conditions is to keep your message short. Even better if you can just send a dword to some fast logger asynchronously (though be careful to not introduce more race conditions with this!).

    This is one of the reasons why concurrency is hard even for those who understand it well.