This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
| "basics": { | |
| "name": "Nicholas Santiago", | |
| "label": "Strategic Cloud & DevSecOps Leader", | |
| "image": "https://gravatar.com/avatar/7ecf56ba106becf8248671ec3fc1fbfb?s=400", | |
| "email": "yo@santiago.wtf", | |
| "phone": "+1 215 800-0045", | |
| "url": "https://nicholas.santiago.wtf", | |
| "summary": "Strategic Cloud & DevSecOps Leader with over 20 years of experience driving digital transformation and architecting resilient, cloud-native infrastructures. Proven expertise in steering multi-cloud migrations (AWS, Azure, OCI) and scaling high-performance engineering cultures through automation and Infrastructure as Code (IaC). Adept at aligning technical roadmaps with business objectives to enhance security posture, operational efficiency, and organizational growth.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -e | |
| TELEPHONE_NUMBER=$1 | |
| getOpenCnamCreds() { | |
| # Depending on how you store your secrets, you might need to use | |
| # a different approach to populate the OPENCNAM_SID and | |
| # OPENCNAM_TOKEN variables. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| stages: | |
| - build | |
| - deploy | |
| - tag | |
| default: | |
| tags: | |
| - kubernetes | |
| variables: | |
| DOCKER_DRIVER: overlay2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # conditional bash prompt | |
| # if root provide a red and white shell prompt | |
| # if not root provide an orange and green shell prompt | |
| # | |
| # generated from ezprompt.net, nothing special :) | |
| if [ $UID == 0 ]; then | |
| PS1="\[\e[31m\]\u\[\e[m\]@\h \[\e[31m\]\w\[\e[m\] \\$ " |