Skip to content
View MarceloCFSF's full-sized avatar
💭
Learning
💭
Learning

Block or report MarceloCFSF

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

Hi there 👋

My name is Marcelo and I hold a Bachelor's degree in Science and Technology from UFABC. I am currently completing my Bachelor's degree in Computer Science, also at UFABC. I love programming and technology, always looking to learn more about it.

My Skills:

  • Javascript
  • Node
  • Firebase
  • React
  • React Native
  • Python
  • Flutter

Some of my projects

📫 How to reach me

LinkedIn

Pinned Loading

  1. ScudEletronica/appScuderiaUFABC ScudEletronica/appScuderiaUFABC Public

    JavaScript 1

  2. Meus-Produtos Meus-Produtos Public

    Desafio para estágio em desenvolvedor .NET

    HTML

  3. Daily-Interview-Pro Daily-Interview-Pro Public

    My solutions for the Daily Interview Pro questions

    Python

  4. Imersao_GameDev Imersao_GameDev Public

    Projeto desenvolvido durante a Imersão GameDev

    JavaScript

  5. FizzBuzz Problem FizzBuzz Problem
    1
    // My FizzBuzz problem solve, using JavaScript
    2
    
                  
    3
    for(let i = 1; i <= 100; i++) {
    4
        console.log((i % 3 ? "" : "Fizz") + (i % 5 ? "" : "Buzz") || i)
    5
    }
  6. Super-Mario-World Super-Mario-World Public

    Agente inteligente capaz de finalizar a fase Yoshi Island 2 do jogo Super Mario World

    Python