Now the double-edged sword of higher-level languages is that they have more going on. Not only more layers (but put a pin in that), you also have *will amplification* as a core reason to use them in the first place.
`conn = db.connect("psql://some-connection-string")`
Think about how much work you ask the computer to do in a line like that. That starts with parsing the connection string into some internal structure. There's probably going to be DNS involved, which itself is caches and a UDP stack and TCP fallback... look, I have a character limit, and you can play this out yourself.
The point is you invoked all that machinery with a pretty concise expression of what you wanted. That simple expression of will was expanded into an enormous fractal of detail, implied asks, on your behalf. That's beautiful and terrifying and productive. High level: You're Welcome! (tm)
3/n
