https://stackoverflow.com/users/116639/tom-anderson?tab=profile
FWIW you can do a better job with the JSON structure than in the article:
{"GreaterOf": [
{"Value": [0, "Dollar"]},
{"Subtract": [
{"Dependency": ["/totalTentativeTax"]},
{"Dependency": ["/totalNonRefundableCredits"]}
]}
]}
Basically, a node is an object with one entry, whose key is the type and whose value is an array. It's a rather S-expressiony approach. if you really don't like using arrays for all the contents, you could always use more normal values at the leaves: {"GreaterOf": [
{"Value": {"value": 0, "kind": "Dollar"}},
{"Subtract": {
"minuend": {"Dependency": "/totalTentativeTax"},
"subtrahend": {"Dependency": "/totalNonRefundableCredits"}
}}
]}
It has the nice property that you're always guaranteed to see the type before any of the contents, even if object keys get reordered, so you can do streaming decoding without having to buffer arbitrary amounts of JSON. Probably not important when parsing a tax code, but can be useful for big datasets.I think you're talking about microphonics:
https://zikman.audio/blog/cable-microphonics-what-it-is-and-...
Also sometimes called the stethoscope effect.
I think strictly speaking, this isn't actually microphonics, because that means that mechanical noise causes electrical noise, which then results in audible noise, whereas what is happening is just transmission of vibrations up the cable into the ear.
Anyway, it can be fixed with better cables. They don't have to be fancy (they don't have to be the 349 euro cables that site is selling!) - i have a pair of KZ ZS10 Pro X earphones, and using the stock cables, i don't get rustling through those.
(more generally, i have an embarrassing number of Chi-Fi earphones, and don't get rustling with any of them)
This project is an enhanced reader for Ycombinator Hacker News: https://news.ycombinator.com/.
The interface also allow to comment, post and interact with the original HN platform. Credentials are stored locally and are never sent to any server, you can check the source code here: https://github.com/GabrielePicco/hacker-news-rich.
For suggestions and features requests you can write me here: gabrielepicco.github.io