This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Tutorial oficial: | |
| https://docs.microsoft.com/en-us/windows/wsl/install-win10 | |
| ### Passo 1 (PowerShell Admin): | |
| dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart | |
| ### Passo 2 (PowerShell Admin): | |
| dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart | |
| ### Passo 3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This configuration file allows you to pass permanent command line arguments to VS Code. | |
| // Only a subset of arguments is currently supported to reduce the likelyhood of breaking | |
| // the installation. | |
| // | |
| // PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT | |
| // | |
| // NOTE: Changing this file requires a restart of VS Code. | |
| { | |
| // Use software rendering instead of hardware accelerated rendering. | |
| // This can help in cases where you see rendering issues in VS Code. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "categories": [ | |
| { "id": "camisetas", "title": "Camisetas" }, | |
| { "id": "calcas", "title": "Calças" } | |
| ], | |
| "products": [ | |
| { "id": 1, "title": "Camiseta Front-end", "price": 79.9, "category_id": "camisetas", "slug": "camiseta-front-ends"}, | |
| { "id": 2, "title": "Camiseta CSharpolin", "price": 69.9, "category_id": "camisetas", "slug": "camiseta-csharpolin"}, | |
| { "id": 3, "title": "Calça preta back-end", "price": 129.9, "category_id": "calcas", "slug": "calca-preta-back-end"}, | |
| { "id": 4, "title": "Calça azul do React", "price": 109.9, "category_id": "calcas", "slug": "calca-azul-react"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker pull mcr.microsoft.com/mssql/server:2019-CU3-ubuntu-18.04 | |
| docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=!@12QWqw" -p 1433:1433 --name sql1 -d mcr.microsoft.com/mssql/server:2019-CU3-ubuntu-18.04 | |
| docker ps -a | |
| docker exec -it sql1 "bash" | |
| clear | |
| uname -a | |
| cd /opt/mssql-tools/bin | |
| pwd | |
| clear | |
| ./sqlcmd -S localhost -U SA |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"lastUpload":"2020-06-10T23:17:57.323Z","extensionVersion":"v3.4.3"} |