> For the complete documentation index, see [llms.txt](https://bobphul.gitbook.io/library/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://bobphul.gitbook.io/library/master.md).

# keep going

## 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.

{% hint style="info" %}
Basic refers to configuration experience, Intermediate refers to actual service experience and Fluent refers to operation and management.
{% endhint %}

System Engineer :

{% code title="se-profile.py" %}

```python
# 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
```

{% endcode %}

Cloud Engineer:

{% code title="ce-profile.py" %}

```python
# 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
```

{% endcode %}
