Talking about changing consensus rules is the best way to get a lot of hate, but the idea seems promising to me, and I'd like to get some feedback and have more people think about it.
Problem
There's a long-running debate in the Bitcoin community if having low (and eventually none) miner subsidy is a problem in the long term.
Transactions in Bitcoin are considered irreversible because they are “buried behind a PoW (proof of work)”. Finding a block requires burning some amount of energy by the miners, which is easily verifiable. Trying to change the history to revert transactions (steal) would require redoing all that PoW.
But why do miners burn that energy? Because the network pays them to. The payment comes from two sources: block subsidy (new coins printed) and transaction fees.
Every 4 years the subsidy is halved and eventually, it will simply disappear (0 sats), leaving the transaction fees as the only payment for the miners to provide the PoW (making reverting transactions costly).
How irreversible a transaction is can be thought of in terms of a ratio of: “how much money is there to steal by reverting it” divided by “how much would it cost to redo all the PoW to revert it”.
Humans are very competitive. If you give them a number to rate themselves with, they will try to increase it.
If you find an Open Source project, and it's not very optimized on a certain metric you care about, to make it better, you have to do only one thing: write a benchmark for it. Ideally showing this project is worse in a given metric compared to some other similar projects. You're almost guaranteed that in a short time there will be improvements.
Most people must be familiar with the quote:
“Measurement is the first step that leads to control and eventually to improvement. If you can’t measure something, you can’t understand it. If you can’t understand it, you can’t control it. If you can’t control it, you can’t improve it.”
― H. James Harrington
It's an important insight and people internalized and wish to apply it... even where it can't be.
A couple of years ago I've read a blog post somewhere, where the author said that they always use < or <= and never > and >=.
So instead of:
if v.len() > MAX_ALLOWED_SIZE {
which is written the way one would say it: “if the length of v is greater than allowed ...“, to use:
if MAX_ALLOWED_SIZE < len.size() {
which instead of trying to be a transliteration, puts the sides in the natural order, like in:
0, 1, 2 3, 4 ...
I got curious if doing it this way is beneficial, and half-consciously tried it out. And I got hooked, and highly recommend it to everyone.
I think the main reason why it works is that it effectively eliminates one complication. I look at the comparison and don't have to parse which way is the operator pointing and interpret it. I don't have to “read it in my head”. I just look and “left is lower”, “right is higher”. Simple.
The only downside is that now seeing > in code that I did not write, annoys me a bit. I still immediately notice that “it points to the wrong side”, and have can figure it out fast, but having to think about it seems inconvenient.
That's kind of it. I can't find the original blog post (was it maybe a reddit comment or something?)~, but if you do, please send it my way and I would put the link below.You can find the original blog post here (thank you Johannes!).
I find that it's useful to think about software projects as restrooms. Surprisingly a lot of aspects of software development fit well in this analogy.
We have toilets (codebases) to serve our needs. We don't particularly value them for what they are, other than as much as they are useful to us. We have rules and rituals around sharing them, and so on.
But let me just tell you something important about restroom maintenance.
Since “mocks” and “mocking” is somewhat vague, and nuances between mocks, fakes, mock objects, test doubles, spies, etc. are confusing, let's start with what I mean by “mocking”.
What I mean by it is intercepting and/or substituting internal and often arbitrary function calls to test your code.
A great example of a mocking approach is a mocking framework like Mockito, where the tests look like this:
BTW. I highly recommend
Statistical Rethinking 2022 Youtube lectures by the same author. I started watching them recently and I am enjoying them a lot so far (finished first two videos so far).