Skip to content

Instantly share code, notes, and snippets.

View Archisman-Mridha's full-sized avatar
👓
Reading documentation

Archisman Mridha Archisman-Mridha

👓
Reading documentation
View GitHub Profile
local Tanka = import 'github.com/grafana/jsonnet-libs/tanka-util/main.libsonnet',
Helm = Tanka.helm.new(std.thisFile);
local Kubernetes = import 'github.com/jsonnet-libs/k8s-libsonnet/1.32/main.libsonnet';
local Utils = import './utils.libsonnet';
local app = 'strimzi';
// Events are organized and durably stored in topics. Topics in Kafka are always multi-producer and
// multi-subscriber: a topic can have zero, one, or many producers that write events to it, as well
// as zero, one, or many consumers that subscribe to these events. Events in a topic can be read as

Notes from Random meetings :

  • How to deal with HTTPS traffic in eBPF.

  • DNS policy : cluster first.

  • Kubekey.

  • Automatic certificate rotation for ETCD.

netstat -anop | grep 9081
ps aux
telnet
crictl ps
crictl inspect
  • List all the network interfaces in my device :
@Archisman-Mridha
Archisman-Mridha / tmux.cheatsheet.md
Last active September 16, 2024 07:38
Tmux cheatsheet

Use ctrl + b + : to get into command mode.

Session management

  • Start a new session - tmux | tmux new -s session-name
  • List existing sessions - tmux ls
  • Attach to a session - tmux a -t session-name
  • Detach from the session - ctrl + b + d
  • Destroy a session - tmux kill session -i session-name

Pane management

@Archisman-Mridha
Archisman-Mridha / neovim.cheatsheet.md
Last active July 26, 2026 01:09
Neovim cheatsheet

Anatomy of a motion - Command + Count + Motion

Navigation

  • Jump to beginning of line : 0 | jumps to the first non-whitespace character : _
  • Jump to end of line : $
  • Move forward by 1 word : jumps to beginning of the next word : w | jumps to end of the next word : e
  • Move backward by 1 word : jumps to beginning of the previous word : b | jumps to end of the previous word : ge
  • Jump to beginning of the file : gg
  • Jump to end of the file : G
  • Move forward to the next instance of the character (( in this case) : f( // NOTE : Repeat motion using , (for backwards movement) or ; (for forward movement)