To play devil's advocate here, imagine a world where the exact opposite has occurred: physical media (CDs specifically) is the norm, and there's no DRM, so the raw data can be copied right off of it. In this world, scalpers scoop up all available inventory of physical media from local retailers, consumers pay a premium to them for the original product, the scalpers sell cheaper copies where the game binary has been modified to insert advertisements or mine cryptocurrency, out of the woodwork appears a cottage industry of companies offering services to modify game binaries and connect them to the ad networks and crypto exchanges. The scalper gets a cut, the gamer gets a cheaper game, everyone is happy.
I'm with you but I see a bigger problem. I'm not sure if you noticed but there are threads of low desire within our society. Young people, in particular young men, increasingly seem to be checking out of dating and higher education, both examples being paths towards enriching oneself. As these people age, lose mental plasticity, and become entrenched in their ways, how likely are we to be able to convince them to begin valuing those things again?
I'm less concerned about the impact of AI specifically and more about concerned about people simply losing the will for one another or anything at all. None of this stuff in the real world will matter too much if people are getting their basic needs and desires met in a virtual one.
The rhetoric of this comment seems to imply that this is a bad thing, but is it really? If it becomes more difficult to make money through creative endeavors, then that leaves us with fewer reasons to be creative other than for the sake of self-expression... which is what we want, right?
That only works in a society that doesn’t put such a high premium on productivity as it is defined by how much revenue it generates and vague notions of class (“this is a real job, that is not a real job). We shit on people who work jobs we need/utilize the services of despite the fact that they work as hard as any of us do because we’re too good for that work. The defining factors? We pay them poorly, they get no PTO or parental leave, etc. Because we don’t value them. It’s a vicious feedback loop.
We saw this in the 80’s through 2000’s. All parents told their kids was “go to college or you’ll become a mechanic.” Then everyone went to college at all costs and then they were told “well that’s what you get for taking on loans for college. Should’ve been sensible and gone to trade school to become a mechanic.”
Of course this is never their kid. Their kid was supposed to college. Everyone else was supposed to go to trade school.
I highly recommend everyone read the comic Godshaper. It’s 2 trades (10 or 12 issues can’t remember) and it highlights this dynamic in a way that is impossible to overstate.
Sometimes I have the feeling people here are actually braindead or pretending to be or lots of bots around. Anyway. How do you self express yourself without money? And without an audience?
I see each of these as distinct but overlapping; I'm (slowly) writing a guide to string formatting with all of these in mind, trying to emphasize when I'd choose one over the other. (fwiw I personally avoid % and + these days; $ is pretty uncommon in practice; f-, t-, and .format() all seem to have good unique uses.)
The last three generally shouldn't be used (`+` is sometimes fine, but not really for formatting), but I doubt we would ever get a py4 that removes them, given the stomachaches that py3 caused. It does feel odd that a t-string is just an f-string without args applied.
It's my understanding that they're still recommended for logging since with f-strings you always pay the formatting cost (but with str.format it's deferred).
I could scarcely believe this new t-string wasn't a joke. As an occasional, grudging Python programmer, I rue the accretion of string formatters over the years. My code bears the history of successive, imperfectly understood (by me)formatters.
I'm surprised that there's been no mention of Operation Paperclip, neither in the article nor in the comments here. Seems like a huge part of the story to leave out.
Yes, including surrounded and forcibly brought them into US camps. But yeah, the Soviets did the same and we had the nuclear bomb race, the space race and the Cold War.
This is the first thing that struck me. Dangerous to weave narratives where large scale phenomena are elegantly explained by a single cause. It's always a confluence of multiple factors: influx of Nazi scientists, the policy mentioned in the article, the fact that Europe was recovering from a war, and perhaps others we're failing to notice.
A favorite example of mine is the idea that World War 1 would not have happened if only Duke Ferdinand's driver had been told of the route change during the Sarajevo visit.
It's about writing code that your peers can read. "DO NOT SUBMIT" is clear as day. "ASDFASD" probably does not mean "this is a debugging string" to most people.
I live in an apartment complex that uses RealPage. My roommates and I re-signed the lease earlier this year, with a projected 15% rent price increase. We then walked to our leasing office to ask about it, they simply cancelled the increase. We're now paying the same rate we were last year.
I am fairly certain that 15% increase was the automatic recommendation by RealPage.
It may have been an illegal increase, any apartment built before 2018 in Ontario is subject to rent control, 2.5% was the max this year.
RealPage would only have an affect on new leases with new apartments.
Your lease does not renew, it automatically goes month to month. They can't cancel a lease, they would need a reason to evict and apply for it at the LTB.
I'm pretty sure that the GP understood that, and was just being nitpicky about grammar. It's incorrect grammar to say "it has been 10 years" in this case.
There are plenty of projects smaller than the Linux kernel that have developed and employed DSLs (to varying degrees of success, I'll grant). I wonder, are there any languages out there designed specifically for kernel programming?
Given the number of preprocessor hacks used in the kernel, and the amount of GCC-specific behavior that the codebase depends on, it seems like they are already halfway there.
Honestly, they'd probably be better off if they ditched all the sed/awk/macro BS and just went back to bash scripts (or perl/TCL, if you don't like weird syntax issues) that spat out C code. Rust saw the writing on the wall and implemented proc macros.