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
[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 = vicente.marcal@gmail.com
[init]
defaultBranch = main
[core]
excludesfile = ~/.gitignore_global
editor = vim
autocrlf = input
pager = delta

Notas musicais

Objetivos

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;
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]

Keybase proof

I hereby claim:

  • I am riverfount on github.
  • I am riverfount (https://keybase.io/riverfount) on keybase.
  • I have a public key ASB3_ViQI_awzws0dcDA9_3MFS9sJnJEE-Hs51oCflfrlgo

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
def generate_batch(generator, batch_size=10):
batch = []
for e in generator:
if len(batch) == batch_size:
yield batch
batch = []
batch.append(e)
if batch:
yield batch