Skip to content
View brunoopinheiro's full-sized avatar
💻
Coding
💻
Coding

Highlights

  • Pro
Block or Report

Block or report brunoopinheiro

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

Opa, tudo bom!? 👋

Me chamo Bruno, sou Desenvolvedor Web Full-Stack, Arqueólogo e Freelancer Game Designer
Conecte-se comigo no Linkedin!


Frameworks, Stacks e mais:

Languages

Python JavaScript TypeScript Dart Markdown HTML5 CSS3 Java

Data Science, Machine Learning & Neural Networks

Anaconda Matplotlib NumPy Pandas scikit-learn SciPy PyTorch TensorFlow

Frameworks, Plataforms, Libs, Databases, ORMS & more

React Flutter React Router Redux MUI NodeJS Nodemon Express.js Flask JWT MySQL MongoDB MicrosoftSQLServer Sequelize ESLint SonarLint Docker NPM

Testing

Jest cypress Mocha

OS & Version Control

Linux Ubuntu Windows Git GitHub Azure GitLab

Other Tools

Notion Postman LaTeX

Pinned Loading

  1. niryo-tiktactoe niryo-tiktactoe Public

    Niryo NED 2 Robot - TicTacToe Pick and Place Challenge

    Python 1

  2. Quick_Python_Cheat_Sheet Quick_Python_Cheat_Sheet Public

    Repository made to easily store python snippets to ease of reference

    Jupyter Notebook 2

  3. data-science-adasc20232-1115 data-science-adasc20232-1115 Public

    Projeto feito para conclusão do módulo de Machine Learning 2, do Santander Coders 2023.2 | Ada

    Jupyter Notebook

  4. cin-ria-classes cin-ria-classes Public

    Repositório de Aulas da Residência em Robótica (Softex-CIn - UFPE)

    1

  5. warfare-unit-card warfare-unit-card Public

    A frontend project made to easy the creation of warfare card units for Kingdoms & Warfare.

    JavaScript 1 1

  6. Capitalize Function Capitalize Function
    1
    function capitalize(inputString) {
    2
      const words = inputString.split(" ");
    3
      const capitalizedWords = words.map(word => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase());
    4
      const reduced = capitalizedWords.reduce((acc, curr) => `${acc} ${curr}`, "");
    5
      return reduced.slice(1);