Skip to content

Instantly share code, notes, and snippets.

View NathanFRibeiro's full-sized avatar
👨‍💻
coding...

Nathan F. Ribeiro NathanFRibeiro

👨‍💻
coding...
View GitHub Profile
{
"workbench.colorTheme": "Dracula",
"terminal.external.linuxExec": "~/.zshrc",
"terminal.integrated.shell.osx": "/bin/zsh",
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.lineHeight": 18,
"editor.formatOnSave": true,
"editor.rulers": [
80

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@NathanFRibeiro
NathanFRibeiro / install-docker.sh
Created October 16, 2019 12:58 — forked from sethbergman/install-docker.sh
Install Docker CE on Linux Mint 19
#!/usr/bin/env bash
# https://docs.docker.com/install/linux/docker-ce/ubuntu/
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
sudo apt-get update
sudo apt-get install docker.io
# https://docs.docker.com/compose/install/
@NathanFRibeiro
NathanFRibeiro / .eslintrc.js
Created October 12, 2019 22:26
Eslint settings for React projects with Redux and Hooks
module.exports = {
env: {
browser: true,
es6: true,
},
extends: ['airbnb', 'prettier', 'prettier/react'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
@NathanFRibeiro
NathanFRibeiro / settings.json
Created June 28, 2019 00:23
Settings for VS Code
{
"window.zoomLevel": -1,
"workbench.colorTheme": "Dracula",
"workbench.iconTheme": "material-icon-theme",
"editor.fontFamily": "Fira Code",
"editor.fontSize": 16,
"editor.lineHeight": 24,
"editor.formatOnSave": true,
"editor.rulers": [120],
"editor.tabSize": 2,
------- MODULO 1 - AMBIENTES E CONCEITOS -------
Frameworks utilizados:
- ExpressJS
- AdonisJS
- NestJS
-- Http Codes --
1xx: Informational