Skip to content

Instantly share code, notes, and snippets.

View topcug's full-sized avatar
💭
life is a best effort point-in-time

Gulcan Topcu topcug

💭
life is a best effort point-in-time
View GitHub Profile
@topcug
topcug / Kubernetes-fresh-install-on-wsl-cgroupv2 for quantum dev environment.txt
Last active February 25, 2025 23:58
Kubernetes-fresh-install-on-wsl-cgroupv2 for quantum dev environment
#install Ubuntu-24.04
wsl --list --verbose
wsl --install -d Ubuntu-24.04
wsl #and set the user and psw
sudo apt update && sudo apt upgrade -y
# on vs code
#F1 and Remote-SSH: Connect to Host
#install the rest
@petrbouda
petrbouda / memory-limit-request-jvm.md
Last active July 7, 2026 19:41
Memory LIMIT and REQUEST in Containers and JVM

Memory LIMIT and REQUEST in Containers and JVM

  • Do you run a JVM inside a container on Kubernetes (or maybe OpenShift)?
  • Do you struggle with REQUEST and LIMIT parameters?
  • Do you know the impact of those parameters on your JVM?
  • Have you met OOM Killer?

Hope you will find answers to these questions in this example-based article.

How to set up JVM Heap size in a Container

@guoyoujin
guoyoujin / install cfssl
Last active February 19, 2025 19:06
linux install cfssl
source:
https://pkg.cfssl.org/
install:
$ curl -s -L -o /bin/cfssl https://pkg.cfssl.org/R1.2/cfssl_linux-amd64
$ curl -s -L -o /bin/cfssljson https://pkg.cfssl.org/R1.2/cfssljson_linux-amd64
$ curl -s -L -o /bin/cfssl-certinfo https://pkg.cfssl.org/R1.2/cfssl-certinfo_linux-amd64
$ chmod +x /bin/cfssl*