Skip to content

Instantly share code, notes, and snippets.

View jvrviegas's full-sized avatar
🎯
Focusing

João Vitor Viegas Rêgo jvrviegas

🎯
Focusing
  • São Luís, Brazil
View GitHub Profile
@jvrviegas
jvrviegas / metatags.html
Created February 1, 2021 14:11 — forked from diego3g/metatags.html
Meta tags do curso de Next.js
<meta httpEquiv="x-ua-compatible" content="IE=edge,chrome=1" />
<meta name="MobileOptimized" content="320" />
<meta name="HandheldFriendly" content="True" />
<meta name="theme-color" content="#121214" />
<meta name="msapplication-TileColor" content="#121214" />
<meta name="referrer" content="no-referrer-when-downgrade" />
<meta name="google" content="notranslate" />
<meta property="og:title" content={pageTitle} />
<meta property="og:description" content={description} />
@jvrviegas
jvrviegas / mongo_install.sh
Created December 5, 2020 12:16
Docker scripts to create some databases
#!/bin/zsh
docker run --name mongodb -p 27017:27017 -d -t mongo
@jvrviegas
jvrviegas / settings.json
Created June 7, 2020 18:45
Arquivo de configuração do VS Code (JSON)
{
"terminal.integrated.fontSize": 12,
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.tabSize": 2,
"editor.fontSize": 12,
"editor.lineHeight": 20,
"editor.fontFamily": "Fira Code",
@jvrviegas
jvrviegas / .eslintrc.json
Created June 7, 2020 18:40
Arquivo de configuração do ESLint
{
"env": {
"es6": true
},
"extends": [
"plugin:react/recommended",
"airbnb",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"