CLI Tools

  1. helix: A post-modern modal text editor
  2. YouPlot: A command line tool that draw plots on the terminal
  1. Why does 0.1 + 0.2 = 0.30000000000000004?
  2. The Rust Implementation Of GNU Coreutils Is Becoming Remarkably Robust
  3. What is a kubeconfig file?
  4. Why We Need Open Source Mentorship Programs at the Linux Foundation
  5. Using a 1930 Teletype as a Linux Terminal

Tip of the Week

Using the watch command:

# the most basic usage:
watch kubectl get pods -n NAMESPACE

# increase the interval:
watch -n 5 kubectl get pods -n NAMESPACE

# highlight differences between runs:
watch -d kubectl get pods -n NAMESPACE

# highlight differences from initial run:
watch -d=permanent kubectl get pods -n NAMESPACE

# kubectl has a builtin watch option:
kubectl get pods -n NAMESPACE -w