Skip to content

Instantly share code, notes, and snippets.

View Riverfount's full-sized avatar
🏠
Working from home

Vicente Marçal Riverfount

🏠
Working from home
View GitHub Profile
#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;

Notas musicais

Objetivos

Ajudar pessoas estudante de música a estudar teoria musical

  • Ajudar no entendimento de escalas musicais

  • Formação de acordes

[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)"
@Riverfount
Riverfount / .vimrc
Created June 6, 2024 18:47
Minhas configurações do vim
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