Skip to content
View vitornere's full-sized avatar

Highlights

  • Pro

Organizations

@Learning-Something @EDA-UNB-FGA @Lacos-da-Alegria

Block or report vitornere

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

Hey, nice to meet you! I'm Vitor Nere

Principal Software Engineer at Zentake

A little more about me...

#!/usr/bin/python3
# -*- coding: utf-8 -*-

class SoftwareEngineer:
    def __init__(self, data, indent=0):
        self.data = data
        self.indent = indent

    def __print(self, value, indent):
        return '\t' * indent + str(value) + '\n'

    def __beatiful_print(self, data, indent):
        to_str = ''
        for key, value in data.items():
            to_str += self.__print('\033[1m' + key.upper() + '\033[0m', indent)
            if isinstance(value, dict):
                to_str += self.__beatiful_print(value, indent+1)
            elif isinstance(value, list):
                to_str += self.__print(', '.join(value), indent+1)
            elif isinstance(value, tuple):
                to_str += self.__print(f'{value[0]}\xc2\xb0 N, {value[1]}\xc2\xb0 W', indent+1)
            else:
                to_str += self.__print(value, indent+1)
        return to_str

    def __str__(self):
        return self.__beatiful_print(self.data, self.indent)

if __name__ == '__main__':
    data = dict(
        name='Vitor Nere',
        role='Principal Software Engineer',
        location=(-15.786515996164606, -47.88718512527681),
        code=['Python', 'Javascript', 'Typescript'],
        technologies=dict(
            backEnd=['Django', 'Flask', 'FastAPI'],
            frontEnd=['React', 'Next.js'],
            mobileApp=['React Native'],
            desktopApp=['Electron', 'PWA'],
            devOps=['AWS', 'Docker', 'Serverless', 'Hasura'],
            databases=['PostgresSQL', 'DynamoDB'],
            misc=['Firebase', 'Unit Tests', 'GraphQL', 'Redux', 'Amplify Framework']
        )
    )
    vitor_nere = SoftwareEngineer(data)
    print(vitor_nere)

I love connecting with different people so if you want to say hi, I'll be happy to meet you more! 😊


📈 GitHub Stats

Profile Stats

🏆 GitHub Trophies

trophy

Pinned Loading

  1. Pubnic/first-steps Pubnic/first-steps Public

    Primeiros passos para aprender Python

    1

  2. dolce-gusto-code-submitter dolce-gusto-code-submitter Public

    This project automates the submission of codes on the Nescafe Dolce Gusto website.

    Python

  3. Enpyre/engine Enpyre/engine Public

    A Python game engine in React

    Python

  4. Enpyre/enpyre Enpyre/enpyre Public

    A Python game engine in React

    TypeScript

  5. Pubnic/sls-deploy-microservices Pubnic/sls-deploy-microservices Public

    A GitHub Action for automating the deployment of serverless FastAPI microservices. Simplify your CI/CD pipeline with this action, leveraging Serverless Framework to deploy microservices efficiently…

    2

  6. Pubnic/sync-doppler-aws-lambda-action Pubnic/sync-doppler-aws-lambda-action Public

    A GitHub Action to sync Doppler secrets with AWS Lambda, ensuring secure and seamless updates to your serverless applications.

    1