- Versão mínima do PHP 7.4
- Composer (autoloader)
Criar um arquivo .sqlite
| $ git config --global user.name "usuario" | |
| $ git config --global user.email [email protected] | |
| $ git config --global core.editor kate | |
| $ git config --list | |
| $ ssh-keygen -t ed25519 -C "[email protected]" | |
| - Ir para o diretório que salvou a chave pública e copiá-la; | |
| - Github > Settings > SSH > New SSH Key > colar a chave pública; |
How to install dotnetSDK/dotnetRUNTIME/aspnetRUNTIME on archlinux.
BigLinux -> As instalações podem ser feitas pelo Adiconar/Remover programas (MUITO mais fácil)
Clique aqui para acessar o AR do dotnet-sdk & dotnet-runtime
Checar esta anotação sempre que fizer uma nova formatação do computador.
Open the shell as administrator and follow the steps:
Get-ExecutionPolicy. If it returns Restricted, then run Set-ExecutionPolicy AllSigned or Set-ExecutionPolicy Bypass -Scope Process.Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))| { | |
| "workbench.colorTheme": "Origamid Next", | |
| "workbench.iconTheme": "material-icon-theme", | |
| "editor.fontFamily": "'Fira Code SemiBold'", | |
| "editor.fontLigatures": true, | |
| "editor.fontSize": 14, | |
| "editor.lineHeight": 1.5, | |
| "editor.wordWrap": "on", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "files.autoSave": "afterDelay", |
| /* | |
| */ | |
| CREATE TABLE departamento( | |
| cod_depart INT NOT NULL AUTO_INCREMENT, | |
| nome VARCHAR(45) NOT NULL, | |
| PRIMARY KEY (cod_depart) |