Refactor

Refactor is not only a submenu in your IDE. It’s a verb. After design patterns, there now is a catalog of refactor-patterns. This one is both hilarious as true, Inline Temp:

decimal basePrice = anOrder.basePrice();
return basePrice > 1000m;

becomes

return anOrder.basePrice() > 1000m;