Skip to content

Instantly share code, notes, and snippets.

View karl18's full-sized avatar
🎯
Focusing

Kareem Mostafa karl18

🎯
Focusing
View GitHub Profile
@karl18
karl18 / config
Created September 30, 2025 07:56 — forked from pksunkara/config
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
# vi: ft=dosini
[user]
name = Pavan Kumar Sunkara
email = pavan.sss1991@gmail.com
username = pksunkara
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta
[column]
@karl18
karl18 / values_pointers.go
Created February 25, 2020 19:17 — forked from josephspurrier/values_pointers.go
Golang - Asterisk and Ampersand Cheatsheet
/*
********************************************************************************
Golang - Asterisk and Ampersand Cheatsheet
********************************************************************************
Also available at: https://play.golang.org/p/lNpnS9j1ma
Allowed:
--------
p := Person{"Steve", 28} stores the value
@karl18
karl18 / kubectl-delete_all
Created February 9, 2020 23:40
Kubernetes: Delete §"Terminating Status"§ pods
kubectl delete pods <pod> --grace-period=0 --force