See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
Compile with:
webpack --config vendor.webpack.config.js
webpack --config app.webpack.config.js
Use with the following index.html
The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55
will be the first on the list, already selected:
🇧🇷 [pt-BR]
function dobro(n) { | |
if (typeof(n) != "number") return 0; // se n não é um número retorne 0 | |
return n * 2; | |
} | |
document.write(dobro(2)); // ok, imprime 4 | |
document.write(dobro("t")); // ok, "t" não é do tipo number, então imprime 0 |