Skip to content

Instantly share code, notes, and snippets.

View davivcgarcia's full-sized avatar
🏠
Working from home

Davi Garcia davivcgarcia

🏠
Working from home
View GitHub Profile
@davivcgarcia
davivcgarcia / bootstrapper.sh
Last active April 7, 2022 20:44
AWS CloudShell/Cloud9 Bootstrapper
#! /bin/bash
#
# About: Unified shell script to simplify AWS CloudShell/Cloud9 tooling bootstraping
# Author: Davi Garcia (davivcgarcia)
#
# Usage: $ source <(curl -sL https://bit.ly/aws-cloud-bootstrapper)
#
#
# Creates directory structure in the persistent storage mount
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active May 24, 2024 10:28
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@rafaeltuelho
rafaeltuelho / openshift-cheatsheet.md
Last active May 18, 2024 05:03
My Openshift Cheatsheet

My Openshift Cheatsheet

Project Quotes, Limits and Templates

  • Cluster Quota
oc create clusterquota env-qa \
    --project-label-selector environment=qa \
    --hard pods=10,services=5
    
oc create clusterquota user-qa \
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.