Skip to content

Instantly share code, notes, and snippets.

View usamaahmadkhan's full-sized avatar

Usama Ahmad usamaahmadkhan

View GitHub Profile
@usamaahmadkhan
usamaahmadkhan / repos.md
Created September 28, 2022 15:36
Useful Repos for Software Engineering

𝟏. 𝐂𝐨𝐝𝐢𝐧𝐠 𝐔𝐧𝐢𝐯𝐞𝐫𝐬𝐢𝐭𝐲 𝐈𝐧𝐭𝐞𝐫𝐯𝐢𝐞𝐰 𝟐𝟑𝟒𝐊⭐ A complete computer science study plan to become a software engineer. Link: https://lnkd.in/d3RMTjpd

𝟐. 𝐓𝐞𝐜𝐡 𝐈𝐧𝐭𝐞𝐫𝐯𝐢𝐞𝐰 𝐇𝐚𝐧𝐝𝐛𝐨𝐨𝐤 𝟕𝟖.𝟔𝐤⭐ Curated coding interview preparation materials for busy software engineers Link: https://lnkd.in/dv2-Dpey

𝟑. 𝐉𝐚𝐯𝐚𝐒𝐜𝐫𝐢𝐩𝐭 𝐀𝐥𝐠𝐨𝐫𝐢𝐭𝐡𝐦𝐬 𝟏𝟓𝟏𝐤⭐ Algorithms and data structures implemented in JavaScript with explanations and links to further readings

@usamaahmadkhan
usamaahmadkhan / install-helm-operator.sh
Created March 9, 2022 19:47
Deploy Helm Operator quickly
HELM_CHART_VERSION=1.4.2
HELM_OPERATOR_NAMESPACE=helm
kubectl create namespace $(HELM_OPERATOR_NAMESPACE)
helm repo add fluxcd https://charts.fluxcd.io
helm upgrade --install helm-operator fluxcd/helm-operator --version $(HELM_CHART_VERSION) --wait --set helm.versions=v3 --namespace $(HELM_OPERATOR_NAMESPACE)
@usamaahmadkhan
usamaahmadkhan / ex280.md
Last active October 13, 2022 08:43
Openshift Commands cheat sheet for Redhat Exam EX280

EX280 Useful Commands


Create Htpasswd IdentityProvider

Create Htpasswd file

sudo dnf install httpd_tools
htpasswd -c -b -B passwdfile usama pass123  # -c Create new file, -B Use bcrypt algo, -b use password from command rather then stdin htpass
htpasswd -b passwdfile ahmad pass321        # Append credentials in the same file, notice absent of -c flag