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 February 20, 2026 22:27
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