sudo apt install r-base-core
This file contains 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
{ | |
"tabWidth": 4, | |
"semi": true, | |
"useTabs": true, | |
"singleQuote": true, | |
"trailingComma": "all", | |
"printWidth": 100, | |
"plugins": ["prettier-plugin-svelte"], | |
"overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] | |
} |
This file contains 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
{ | |
// TAB BEHAVIOR: | |
"editor.insertSpaces": false, // VSCODE WON'T INSERT SPACES WHEN PRESSING 'TAB'. | |
"editor.tabSize": 4, // THE NUMBER OF SPACES A TAB IS EQUAL TO. | |
"editor.detectIndentation": false, // DISABLE 'editor.tabSize' AND 'editor.insertSpaces' AUTOMATIC DETECTION BASED ON THE FILE CONTENTS. | |
///// | |
// EXPLORER SIDEBAR: | |
"explorer.sortOrder": "filesFirst", // FILES AND FOLDERS ARE SORTED BY THEIR NAMES. FILES ARE DISPLAYED BEFORE FOLDERS. | |
"explorer.confirmDelete": false, // THE EXPLORER WON'T ASK FOR CONFIRMATION WHEN DELETING A FILE VIA THE TRASH. | |
"workbench.tree.indent": 18, // CONTROLS TREE INDENTATION IN PIXELS. |
This file contains 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
<script> | |
// PASSANDO PARA A FUNÇÃO UMA INFORMAÇÃO PRIMITIVA (COMO NÚMERO, STRING OU BOOLEAN), UMA CÓPIA DO VALOR É PASSADA. ASSIM, QUANDO A FUNÇÃO FAZ UMA ALTERAÇÃO, APENAS A CÓPIA É ALTERADA, MANTENDO O VALOR ORIGINAL INTACTO. | |
let numberAge=1; | |
function functionBirthday(parAge){ | |
parAge=parAge+1; | |
} | |
functionBirthday(numberAge); | |
sudo apt-get install git-all
sudo killall snap-store
sudo snap refresh
sudo apt install python-is-python3
sudo apt install python3-pip
sudo apt install python3.10-venv
pip freeze > requirements.txt
pip uninstall -r requirements.txt -y
git config --global user.name "TYPE YOUR NAME HERE"
git config --global user.email [email protected]
sudo apt update
sudo apt upgrade
sudo apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install nodejs -y
node --version.
NO CASO DE ERRO, TENTAR:
NewerOlder