Skip to content
View jfalves's full-sized avatar
  • mollie.com
  • Amsterdam, Netherlands
Block or Report

Block or report jfalves

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jfalves/README.md

Hey, I'm Jonathan Alves! 👋

Welcome to my github profile, here you can find mainly data projects, and some other random junk. I hope you like it!

I've started woking with data in 2010 as ETL developer and for the past years I've worked in many roles such as data freelancer/consultant, DBA and data analyst. I'm currently working for Recharge.com focused in creating a cloud data platform.

What I like to use

python

docker

aws

git

postgresql

airflow


What I also know how to use

tableau

powercenter

pentaho

mysql


Find me elsewhere

linkedin

Pinned

  1. horse_colic_dataset horse_colic_dataset Public

    HTML

  2. licitacao_publica licitacao_publica Public

    Esse é um projeto de Business Intelligence com o objetivo de sumarizar dados de licitações públicas de compra.

    TSQL 2 1

  3. Genetic-Algorithm-from-Scratch-Snippets Genetic-Algorithm-from-Scratch-Snippets
    1
    def crossover(self, partner):
    2
    
                  
    3
        child = DNA(self.size)
    4
        midpoint = random.randint(self.size)
    5