Skip to content
View otavio-silva's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report otavio-silva

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
otavio-silva/README.md

Hello there 👨🏻‍💻, I'm Otávio Augusto!

Followers Profile Views

//needs g++ with flag "-std=c++17"
#include <iostream>
#include <string>
#include <tuple>

std::tuple<std::string, std::string, std::string, std::string> about_me()
{
  auto name = "Otávio Augusto Silva";
  auto schooling = "Computer Science student at Universidade Federal de Minas Gerais (UFMG)";
  auto bio = "A little introverted, somewhat shy but always friendly and excited to meet new people." 
  "Hard-working and dedicated programmer/data scientist/AI specialist." 
  "Finding my place in the world, one day at a time, a little step everyday towards self-reflection and improvement." 
  "I like teamwork and collaborative environments because people who work together for a common goal, always improve together.";
  auto profession = "Data Scientist | Machine Learning Specialist | Deep Learning Enthusiast";
  return std::make_tuple(name, schooling, bio, profession);
}

int main(int argc, char const *argv[])
{
    auto [name, schooling, bio, profession] = about_me();
    std::cout << name << '\n';
    std::cout << schooling << '\n';
    std::cout << bio << '\n';
    std::cout << profession << '\n';
    return 0;
}

Skills and Experiences:

Programming Languages:

C C++ C# Python Java JavaScript Haskell LaTeX

Data Science/Machine Learning/Deep Learning:

Keras NumPy Pandas PyTorch scikit-learn SciPy TensorFlow

Version Control:

Git GitHub GitLab

Frameworks/Plataforms:

.Net Anaconda OpenCV SQLite Jupyter Notebook

IDEs/Text Editors:

Atom Visual Studio Code Visual Studio

Operating Systems:

Windows Linux Ubuntu Arch Linux Manjaro

Connect with me:

Random:

I'm also a PC gamer:

And I love music:


otavio-silva

otavio-silva

Popular repositories

  1. Workshop-Machine-Learning---Hands-On- Workshop-Machine-Learning---Hands-On- Public

    Código do workshop de setembro sobre machine learning contendo também a base de dados.

    Jupyter Notebook

  2. jupyter_intro_class_ibd jupyter_intro_class_ibd Public

    Forked from filipefbn/jupyter_intro_class_ibd

    Aula de introdução a jupyter, pandas e sqlite para a turma de IBD 2019/1

    Jupyter Notebook

  3. IBD-TP1 IBD-TP1 Public

    Trabalho prático 1 da disciplina de Introdução a Bancos de Dados.

    Jupyter Notebook

  4. IBD-TP2 IBD-TP2 Public

    Trabalho prático 2 da disciplina de Introdução à Bancos de Dados (DCC011)

    Jupyter Notebook

  5. PO-TP2 PO-TP2 Public

    Trabalho prático II da disciplina de Pesquisa Operacional (DCC035)

    Jupyter Notebook

  6. PortoHack-Santos PortoHack-Santos Public

    Repositório para o código da Hackathon Porto Hack Santos.

    Jupyter Notebook 1