Skip to content

Instantly share code, notes, and snippets.

View upodroid's full-sized avatar
🤔
Focusing

Mahamed Ali upodroid

🤔
Focusing
  • Earth
View GitHub Profile
@aojea
aojea / README.md
Last active December 2, 2024 16:20
Run Kubernets conformance tests
@superseb
superseb / rke2-commands.md
Last active December 26, 2024 10:33
RKE2 commands

RKE2 commands

  • Updated on May 29 to accommodate etcd container not having /bin/sh available anymore.

Install

curl -sL https://get.rke2.io | sh
systemctl daemon-reload
systemctl start rke2-server
@olih
olih / jq-cheetsheet.md
Last active December 20, 2024 13:22
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@dideler
dideler / 0-startup-overview.md
Last active December 3, 2024 15:36
Startup Engineering notes
@stephenhardy
stephenhardy / git-clearHistory
Created April 26, 2013 22:14
Steps to clear out the history of a git/github repository
-- Remove the history from
rm -rf .git
-- recreate the repos from the current content only
git init
git add .
git commit -m "Initial commit"
-- push to the github remote repos ensuring you overwrite history
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git