Ajudar pessoas estudante de música a estudar teoria musical
-
Ajudar no entendimento de escalas musicais
-
Formação de acordes
| #include <stdio.h> | |
| #include <stdlib.h> | |
| int main(int argc, char *argv[]){ | |
| if (argc <= 1){ | |
| printf( | |
| "É necessário passar um argumento inteiro!\n" | |
| "Uso correto: fizzbuzz <int>\n" | |
| ); | |
| return 1; |
| [user] | |
| name = Vicente Marçal | |
| email = vicente.marcal@gmail.com | |
| [init] | |
| defaultBranch = main | |
| [core] | |
| excludesfile = ~/.gitignore_global | |
| editor = vim | |
| autocrlf = input | |
| pager = delta |
| .idea | |
| .coverage | |
| .secrets.toml | |
| *.swp | |
| Makefile | |
| temporary/ | |
| test_config.ini | |
| .fleet/ | |
| .isort.cfg | |
| .devcontainer/ |
| [username] | |
| style_user = "green bold" | |
| style_root = "red bold" | |
| format = "[$user]($style) " | |
| disabled = false | |
| show_always = true | |
| [hostname] | |
| ssh_only = false | |
| format = "[ $hostname ](bold yellow)" |
| let mapleader = ',' " Map the leader key to a comma. | |
| set nocompatible " Inicia o Vim no modo incompatível com o Vi. | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim " Configura a runtime para incluir o Vunle e inicializa | |
| call vundle#begin() | |
| Plugin 'gmarik/Vundle.vim' " Faz com que o Vundle administre o Vundle | |
| Plugin 'vim-scripts/indentpython.vim' " Configura o VIM para auto-identação no Python | |
| Plugin 'dense-analysis/ale' " Configura Lint para Análise estática de Código |