Ajudar pessoas estudante de música a estudar teoria musical
-
Ajudar no entendimento de escalas musicais
-
Formação de acordes
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 |
[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)" |
.idea | |
.coverage | |
.secrets.toml | |
*.swp | |
Makefile | |
temporary/ | |
test_config.ini | |
.fleet/ | |
.isort.cfg | |
.devcontainer/ |
[user] | |
name = Vicente Marçal | |
email = [email protected] | |
[init] | |
defaultBranch = main | |
[core] | |
excludesfile = ~/.gitignore_global | |
editor = vim | |
autocrlf = input | |
pager = delta |
#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; |
name: CI | |
on: pull_request | |
jobs: | |
ci: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.8.6] | |
poetry-version: [1.1.4, 1.1.5] |
I hereby claim:
To claim this, I am signing this object:
# If you come from bash you might have to change your $PATH. | |
# export PATH=$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH="/home/riverfount/.oh-my-zsh" | |
# Set name of the theme to load --- if set to "random", it will | |
# load a random theme each time oh-my-zsh is loaded, in which case, | |
# to know which specific one was loaded, run: echo $RANDOM_THEME | |
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
#!/bin/bash | |
distro=`lsb_release -ds` | |
kernel=`uname -sr` | |
echo $kernel $distro |