Peaches - I Don’t Give a Fuck
Peaches - I Don’t Give a Fuck
Is the token not keyed to a specific source? I would have expected it to operate similarly to an SSL cert, where part of the verification process is that the source is the correct origin that the token belongs to - so if someone just lifted a valid cert to put into a malicious one, it would catch anything from changing a single character in the project name to changing the repository host (i.e. GitHub to GitLab)
I think some portions of the company do want to buy these studios to make games. Mostly because they need a regular funnel of titles to put on Game Pass, and the best way to do that is small- to mid-budget games that can generate hype. But then other portions of the company want to chase that big AAA paycheck because big numbers look good, even if ROI isn’t as good for that one game versus 3 or 4 smaller titles. And others still only care about what will make the balance sheet look the best for the quarter.
Even smaller companies end up with various “factions” within the org as far as vision and how to best create success (or even how to define success); a company like Microsoft is so fractured that different divisions are unaware of each other’s goals and have competing interests.
I’m not trying to defend Microsoft here, I just think this is a consequence of an overly large organization that doesn’t have unified goals.
Really? I have no idea who that artist is. Is it someone I’ve just forgotten about from when we were younger?
I mean, I loved DOS2 as well, but I definitely think BG3 is the better game. There’s a lot of replayability from the combat in DOS, but the story and characters in BG3 are on a whole different level. DOS2 does definitely rank in my top 5 CRPGs though (BG3, BG2, DOS2, DA:O, and probably NWN would be that full list)
That’s one of two scenarios where I’m happy to buy early access. Valheim and Palworld both fall in that category. The other category I’m happy to buy early access is for a project I am particularly interested in seeing succeed (and willing to give some feedback on to help). So far I think I’ve only done that with BG3 and that turned out pretty well for me.
Again, that’s incorrect. Pounds (Lbs) are the US measurement for mass. Feel free to provide a source to the contrary. I specified pounds mass vs pounds force because in an engineering space, it’s worthwhile to be specific, but the Pound (lb) is all that is specified in any documentation as the unit for mass in the US system.
That’s incorrect. They are, in engineering contexts, referred to as pounds mass (lbm) or pounds force (lbf) respectively. The US Customary Unit for mass is the pound (lb) (aka pound mass, lbm)
It’s just a pun. They’re both units of mass, hence there would be mass confusion.
It doesn’t work with the pun, but the more confusing part for people would probably be the fact that pounds are used for both mass and force, but in SI, the units are different (kilograms for mass vs newtons for force), though that doesn’t really matter for most people.
Seems to be working fine for me in Indiana. Looked at the Lemmy repo and could look through the repo. I didn’t like try to push anything to a repo of my own though.
It absolutely should not have been named zeroth() because the reasoning for that is purely pedantic and ignores WHY arrays are 0 indexed. It’s not like the people in the early days of writing programming languages were saying “the zeroth item in the array” - they would refer to it using human language because they are humans, not machines. Arrays are 0 indexed because it’s more efficient for address location. To get the location in memory of an array item, it’s startingAddress + (objectSize * index). If they were 1 indexed, the machine would have to reverse the offset.
Function/Method names, on the other hand, should be written so as to make the most sense to the humans reading and writing the code, because the humans are the only ones that care what the name is. When you have an array or list, it’s intuitive to think “I want the first thing in the array” or “I want the last thing in the array),” so it makes sense to use first and last. That also makes them intuitive counterparts (what would be the intuitive counterpart to “zeroth”?).