sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminator
Terminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").
const formatCurrencyBRL = (price, showLeadingCurrency = true) => { | |
price = Math.round(price * 100) / 100; | |
const options = { | |
style: showLeadingCurrency ? "currency" : "decimal", | |
currency: "BRL", | |
minimumFractionDigits: 2 | |
}; | |
return price.toLocaleString( |
ssh-keygen -t rsa -b 4096 -C "[email protected]"