Skip to content

Instantly share code, notes, and snippets.

View santiagon610's full-sized avatar

Nicholas Santiago santiagon610

View GitHub Profile
{
"$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.",
@santiagon610
santiagon610 / cnam.sh
Created March 12, 2024 18:13
CNAM query - checks OpenCNAM for E.164 formatted telephone number, pipes through JQ for display
#!/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.
@santiagon610
santiagon610 / gitlab-container-build.yaml
Last active June 13, 2023 15:42
Builds Docker images and pushes them to the Gitlab internal registry
stages:
- build
- deploy
- tag
default:
tags:
- kubernetes
variables:
DOCKER_DRIVER: overlay2
@santiagon610
santiagon610 / bashPrompt.sh
Last active December 16, 2022 23:11
Colorful bash prompt - red when root
#!/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\] \\$ "