Skip to content

Instantly share code, notes, and snippets.

View mmehta-10's full-sized avatar

Megha Mehta mmehta-10

  • DevOps and Cloud Consultant
  • India
View GitHub Profile
@mohanpedala
mohanpedala / helm-cheatsheet.md
Created August 13, 2019 22:50 — forked from tuannvm/cka.md
#Helm #Kubernetes #cheatsheet, happy helming!
@woody3000
woody3000 / Jenkinsfile
Created May 19, 2018 00:17
Advanced Jenkinsfile
#!groovy
pipeline {
agent any
tools {
maven 'Maven-3'
jdk 'JDK 1.8uLATEST'
}
@althonos
althonos / setup.cfg
Last active March 4, 2024 18:08
A `setup.cfg` template for my Python projects
# https://gist.github.com/althonos/6914b896789d3f2078d1e6237642c35c
[metadata]
name = {name}
version = file: {name}/_version.txt
author = Martin Larralde
author_email = martin.larralde@embl.de
url = https://github.com/althonos/{name}
description = {description}
long_description = file: README.md
@tamas-molnar
tamas-molnar / kubectl-shortcuts.sh
Last active June 19, 2024 14:10
aliases and shortcuts for kubectl
alias kc='kubectl'
alias kclf='kubectl logs --tail=200 -f'
alias kcgs='kubectl get service -o wide'
alias kcgd='kubectl get deployment -o wide'
alias kcgp='kubectl get pod -o wide'
alias kcgn='kubectl get node -o wide'
alias kcdp='kubectl describe pod'
alias kcds='kubectl describe service'
alias kcdd='kubectl describe deployment'
alias kcdf='kubectl delete -f'
@dwayne
dwayne / ch0.md
Last active August 9, 2020 07:57
My notes from the book "Working with TCP Sockets by Jesse Storimer"

Chapter 0

Network programming is ultimately about sharing and communication.

Audience: Ruby devs on Unix or Unix-like systems.

Uses Ruby 1.9.

Part 1 - Introduction to the primitives of Socket programming