If key prefixes don’t matter much any more, then it’s a very recent change that I’ve missed.
Lots of people think microservices = performance gains only.
It’s not. It’s mainly for organizational efficiency. You can’t be blocked from deploying fixes or features. Always be shipping. Without breaking someone else’s code.
I don't think I ever heard that. Who claims that microservice architectures are for performance gains?
I might be talking out of my ass, but I'm pretty sure we've "known" for centuries that imperfection has an enormous place in art. Before computers, before photography.
- The material of the robot's "finger" makes for a very clanky sound (metal?). Actually it sounds kinda like a harpsichord - The perfect rhythm makes for a very robotic feel - The perfect consistency of how a string is plucked (same attack/volume at every note) also makes for a very robotic feel
The first is about harmonics, the second two not so much, but I'd expect that harmonics are the lesser of what makes it feel midi-ey. After all, some people play with metal picks or fingerpicks (https://en.wikipedia.org/wiki/Fingerpick).
it'll build something that fails a test, but i know how to fix the problem. i can't jump in a manually fix it or tell it what to do. i just have to watch it churn through the problem and eventually give up and throw away a 90% good solution that i knew how to fix.
Wikipedia says 50:
In adults over the age of 50 years, the body's thirst sensation reduces and continues diminishing with age, putting this population at increased risk of dehydration.
And having to be stay at a hospital for a length of time for any reason is very much Not Good for an elderly person. Other illnesses, muscle atrophy, disorientation, loneliness, cognitive decline...
Sure but literally _who_ is planning for this? Not any of the AI players, no government, no major political party anywhere. There's no incentive in our society that's set up for this to happen.
$myString.trim().replace("w", "h");
Which has the advantage of also offering a clean alternative to the fragmented stdlib.
With this sort of "just" I could build Paris out of matchsticks
Do they? After too many functional battles I started practicing what I'm jokingly calling "Debugging-Driven Development" and just like TDD keeps the design decisions in mind to allow for testability from the get-go, this makes me write code that will be trivially easy to debug (specially printf-guided debugging and step-by-step execution debugging)
Like, adding a printf in the middle of a for loop, without even needing to understand the logic of the loop. Just make a new line and write a printf. I grew tired of all those tight chains of code that iterate beautifully but later when in a hurry at 3am on a Sunday are hell to decompose and debug.
I think it's a bad trade-off, most languages out there are moving away from it