Skip to content

Instantly share code, notes, and snippets.

View nunesson's full-sized avatar
🎲
Learning SQL

Anderson Nunes nunesson

🎲
Learning SQL
View GitHub Profile
@nunesson
nunesson / aula_29_2.js
Created March 9, 2023 19:31 — forked from isaacbatst/aula_29_2.js
Base de Dados usada na aula
// no mongo ou mongosh
// use aula_29_2;
// no vscode \/
// use("aula_29_2");
db.filmes.drop();
db.filmes.insertMany(
[
@nunesson
nunesson / gist:c7bd3e2438abea7f0777897d6350f2b3
Created January 29, 2023 20:23 — forked from rxaviers/gist:7360908
Complete list of github markdown emoji markup

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@nunesson
nunesson / CheatSheet.sql
Created November 22, 2022 11:28 — forked from FP-Coding/CheatSheet.sql
Cheatsheet - SQL
* - significa nome de todas colunas;
; - Não esquecer do ponto e vírgula
- Query padrão - SELECT
SELECT (coluna_nome) FROM nome_database.nome_tabela;
- Query do valor de uma operação ou valor fixo
SELECT valor AS nome_coluna, valor2 AS nome_coluna_2
- Query com CONCAT
@nunesson
nunesson / checklist-context.md
Created October 15, 2022 14:15 — forked from ANDREHORMAN1994/checklist-context.md
Checklist do Context API

Checklist do Context API

Vamos começar criando nossos arquivos dentro da pasta src:

  • Criar uma pasta context;
  • Dentro da pasta context vamos criar um arquivo myContext.js;

Dentro do arquivo myContext.js:

  • Importar do react o createContext;
@nunesson
nunesson / checklist-redux.md
Last active September 26, 2022 19:43 — forked from ANDREHORMAN1994/checklist-redux.md
Checklist do Redux

Checklist do Redux

Antes de começar

  • pensar como será o formato do seu estado global
  • pensar quais actions serão necessárias na sua aplicação

Instalação

  • npx create-react-app my-app-redux;
  • npm install --save redux react-redux;
  • npm install --save redux-devtools-extension