To my knowledge upgrading to the newer release of any of those linux distros was not blocked by having only slightly old and perfectly serviceable hardware.
To my knowledge upgrading to the newer release of any of those linux distros was not blocked by having only slightly old and perfectly serviceable hardware.
I completely agree that business ghouls doing business ghoul things make studios make worse games… doesn’t really affect my point though… studios are not making games based on a “bar” set by the consumers as described in the original post…
They are part of the studios… point was “the bar” is “fun/interesting”. The vast majority of people that purchase games don’t have a bar as defined by the comment I originally replied to.
Studios can make whatever they want. People aren’t putting in orders.
Targeted ads are obviously way more effective and therefore generate more money. But it’s not the only way.
I’m not so sure this has turned out to be all that true
I never used npp as my code editor but as a secondary program that i kept notes in and would paste text in to manipulate then move back into code editor. It had a rich plugin ecosystem way before that was common. I use Kate for those purposes instead now
Sort of alarming how many upvotes this has without anybody providing any reference at all. We have enough privacy problems to worry about without people posting unsubstantiated claims :/
I can’t find anything about it. Claim seems sus tbh
Where is the info about this?
Some rust proponents having this attitude is probably part of the problem.
I think rust has good ideas and may even become the default systems language in the mid-term. I find it irritating that there is a very vocal subset of rust proponents that tend to insist that every project in every language needs to be rewritten in rust immediately. I suspect that is also why other people are down on rust.
Negative. I am a meat popsicle.
Why would it involve re encoding?
It was target not walgreens, and it was probably not even real. Please stop belligerently pushing unsubstantiated bullshit as if it’s incontrovertible fact. https://www.kdnuggets.com/2014/05/target-predict-teen-pregnancy-inside-story.html
Meanwhile, llms are less useful at helping me write code than intellij was a decade ago
Usually it doesn’t matter what abstractions you choose when you try to factor them to support hypothetical future work, because chances are you incorrectly anticipate future needs.
In other words, generic code that only supports one use case will almost certainly have to be deconstructed to allow a good generic implementation for 2 use cases, so it is better to just write simple code and factor code out when you can see the real commonalities.
In other, other words, KISS, YAGNI
I hate reading code like this. It means that there is a bunch of object or global state that could be getting modified by anything all over the place that I can’t see just by looking at the method. In other words, if you say you understand this method, it is because you are making assumptions about other code that might be wrong.
I’ll take a 30 line pure function over a web of methods changing member state every time.
You can do PGO with GCC, though it takes extra steps of course