It takes a human being about 14 thousand brain-hours to learn to run. An AI can learn to do it in less than half as many CPU-hours, but the results are like this.
How to become a senior developer:
- create a LinkedIn account
- create a blog
- publish a couple of blog entries how everything sucks
- create a Twitter account
- post a couple of pics from conferences
- buy a Macbook Pro
- post a couple of pics hacking from Starbucks
Given:
var a = { b: 2, c: 3, d: 4 };
var b = {};
Most seem to think these are equivalent:
1. b = Object.assign({},a);
2. b = { ...a };
3. ({ ...b } = a);
4. Object.assign(b,a);
Not quite. Subtle differences.
I spent 4 hours debugging a multi-threaded lock contention bug in a CLI tool.
Then I watched 2 rockets land up right on their assigned landing pads at the exact same time after launching a vehicle in space.
I quit.