🛴keep going

Document repository for me

Who am I?!

System engineer and Cloud engineer. Over 8+ years of experience in the IT industry as a system operation and management. Get AWS and Azure certification.

Basic refers to configuration experience, Intermediate refers to actual service experience and Fluent refers to operation and management.

System Engineer :

se-profile.py
# Operating system built or operated
def OS(Linux, Windows, Hypervisor):
    Linux['RHEL'] = Fluent
    Windows['Server'] = Fluent
    Hypervisor['VMware'] = Fluent

# Programming languages available or learning
def Programming(Language):
    Language['Python'] = Intermediate
    Language['Go'] = Basic
    
# Tech stack
def TechStack(OpenSource):
    OpenSource['Docker'] = Intermediate
    OpenSource['k8s'] = Basic
    OpenSource['Openstack'] = Basic

Cloud Engineer:

ce-profile.py
# CSP(Cloud Service Provisor)
def cloud(CSP):
    CSP['AWS'] = Fluent
    CSP['Azure'] = Fluent
    CSP['Oracle'] = Intermediate

# IaC (Infrastructure as Code)
def IaC(tools):
    tools['Cloudformation'] = Intermediate
    tools['Terraform'] = Basic
    tools['Ansible'] = Basic

Last updated