Skip to content
View Diegomca98's full-sized avatar

Block or report Diegomca98

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

Call Me Hand Medium-Light Skin Tone Hi there Call Me Hand Medium-Light Skin Tone



Hey! My name is Diego Enríquez, I speak Spanish (Native), English (Advanced), Italian (Intermediate) languages at different levels, I've been working as an IT specialist since 2018, working from IT support to software development using Python, JS, PHP, SQL and some of their frameworks. In my free time I like:

Reading Playing Guitar Gaming Weight Lifting Jiu Jitsu Coffee Hopping Bar Hopping Anime Coding Learning

🔧 Technologies & Tools 🔧

Cloud Providers

AWS GCP

Cloud Services

Cloud Shell
EC2
IAM
Load Balancers
RDS
Aurora
ElastiCache
Route 53
ElastiCache
S3
Global Accelerator
Cloud Shell GKE Big Query Compute Engine Cloud Storage Cloud SQL Cloud Scheduler Pub/Sub IAM Cloud Functions

Code

Python Django C++ Terraform MySQL PostgreSQL

Tools and Services

GitHub Docker Codespaces Kubernetes Jupyter Notebooks VSCode

CI/CD

Jenkins

Libraries

Pandas Numpy Matplotlib Matplotlib Scikit-Learn Tensorflow NLP Toolkit

📈 Statistics 📈





class Diegomca98:
    def __init__(self):
        self._first_name = "Diego Alberto"
        self._last_name = "Enríquez Rodríguez"
        self._spoken_languages = {
            'Spanish': 'Native',
            'English': 'Advanced - C1',
            'Italian': 'Intermediate - A2'
        }
        self._schooling = {
            'Information Technologies': ['Degree', 'CUCEA', 'Jan/2017-May/2023'],
            'Data Science and Machine Learning':  ['Bootcamp', '4Geeks Academy', 'Nov/2023'],
            'Associate Cloud Engineer': ['Certification', 'Google', 'Dec/2021'],
        }

        self._roles = [
            'CloudOps Engineer', 
            'Infrastructure Engineer', 
            'Backend Developer', 
            'DB Engineer',
            'DB Designer'
        ]
        
        self._qualifications = {
            'Hard Skills': [
                'Python', 
                'Django', 
                'Jupyter Notebooks', 
                'VSCode', 
                'Pandas', 
                'Matplotlib', 
                'Seaborn', 
                'Web Scraping', 
                'File Manipulation', 
                'Scikit-Learn', 
                'TensorFlow', 
                'Natural Languague Processing Toolkit', 
                'SQL', 
                'APIs', 
                'Terraform', 
                'AWS', 
                'GCP', 
                'Kubernetes', 
                'Cloud Shell', 
                'Git/GitHub', 
                'Git Codespaces', 
                'Linux', 
                'Jenkins'
            ],
            'Soft Skills': [
                'Creativity', 
                'Discipline', 
                'Critical Thinking', 
                'Adaptability', 
                'Problem Solving', 
                'Communication', 
                'Teamwork', 
                'Confidence', 
                'Active Listening', 
                'Emotional Intelligence'
            ]
        }

    def presentation(self):
        print(f'Hey! My name is {self._first_name} {self._last_name}, I speak {len(self._spoken_languages)} languages at different levels, I\'ve  been working as an IT specialist since 2018, working from IT support to software development using Python, JS, PHP, SQL and some of their frameworks.')

    def get_qualifications(self):
        print('\n')
        print('---------------------------------------------------')
        print('------------------- Hard Skills -------------------')
        print('---------------------------------------------------')
        for hskill in self._qualifications['Hard Skills']:
            print('|---->', hskill)
        print('\n')

        print('---------------------------------------------------')
        print('------------------- Soft Skills -------------------')
        print('---------------------------------------------------')
        for sskill in self._qualifications['Soft Skills']:
            print('|---->', sskill)

    def get_certifications(self):
        print('####################################')
        print('########## Certifications ##########')
        print('####################################')

        for cert in self._schooling:
            if self._schooling[cert][2] == '':
                string_concat = 'to be obtained'
            else:
                string_concat = f'achived on {self._schooling[cert][2]}'
            if self._schooling[cert][0].lower() == 'certification':
                print(f'|---->  {self._schooling[cert][1]} {cert.title()} {string_concat}')

    def set_certifications(self, cert_info):
        self._schooling[cert_info[0]] = ['Certification', cert_info[1], cert_info[2]]




tbo_certification = ['Solutions Architect Associate', 'AWS', '']
me = Diegomca98()

me.set_certifications(tbo_certification)
print('\n')
me.get_qualifications()
print('\n')
me.get_certifications()
print('\n')
me.presentation()

Popular repositories Loading

  1. 4Geeks-Diego 4Geeks-Diego Public

    Jupyter Notebook 1 2

  2. 4geeks-ml-template-prjs 4geeks-ml-template-prjs Public template

    Forked from 4GeeksAcademy/machine-learning-python-template

    Very simple template to work on machine learning projects with Python

    Jupyter Notebook 1 1

  3. r-basic r-basic Public

    Forked from joanby/r-basic

    Curso de introducción a la estadística descriptiva con R Studio

    HTML

  4. python-ml-course python-ml-course Public

    Forked from joanby/python-ml-course

    Curso de Introducción a Machine Learning con Python

    Jupyter Notebook

  5. profiles-rest-api profiles-rest-api Public

    Source code for profiles REST API course - Beginner

    Python

  6. foodcatalog foodcatalog Public

    Django Masterclass : Build Web Apps With Python & Django - Project 1

    Python