(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| { | |
| "estados": [ | |
| { | |
| "sigla": "AC", | |
| "nome": "Acre", | |
| "cidades": [ | |
| "Acrelândia", | |
| "Assis Brasil", | |
| "Brasiléia", | |
| "Bujari", |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
/!\ Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Go trought this guide step by step and it should be fine 😉
~/.ssh/config, set each ssh key for each repository as in this exemple:Aviso: Muitas vezes detalhes de várias operações podem variar de banco para banco. Em questões onde fiquei em dúvida, este documento segue o funcionamento do PostgreSQL, pois é o banco que conheço melhor.
Antes de começar a escrever SQL, você precisa entender o modelo de como um banco de dados relacional funciona. Não precisa se aprofundar muito, mas você precisa entender como que dados e relacionamentos entre eles são representados. (Nota importante: Relacionamento e relação não são a
| const admin = require("firebase-admin") | |
| /* | |
| const serviceAccount = require("./../key.json"); | |
| const { exit } = require("process"); | |
| admin.initializeApp({ | |
| credential: admin.credential.cert(serviceAccount) | |
| }) | |
| */ |
| local M = {} | |
| M.colors = { | |
| bg = "#0a0a0a", | |
| fg = "#dadada", | |
| light_grey = "#747474", | |
| grey = "#7f8c98", | |
| purple = "#dabaff", | |
| pink = "#ff7ab2", | |
| orange = "#ff8170", |