Skip to content

Instantly share code, notes, and snippets.

View alex-egorov's full-sized avatar

A*** E*** alex-egorov

View GitHub Profile

Keybase proof

I hereby claim:

  • I am alex-egorov on github.
  • I am aegorov (https://keybase.io/aegorov) on keybase.
  • I have a public key ASD7kznZ3pXscouEVUhdAC_C8zrJY_QluCcgY7_Eh065UAo

To claim this, I am signing this object:

@alex-egorov
alex-egorov / bash_strict_mode.md
Created September 4, 2021 13:01 — forked from mohanpedala/bash_strict_mode.md
set -e, -u, -o, -x pipefail explanation

set -e, -u, -x, -o pipefail

The set lines

  • These lines deliberately cause your script to fail. Wait, what? Believe me, this is a good thing.
  • With these settings, certain common errors will cause the script to immediately fail, explicitly and loudly. Otherwise, you can get hidden bugs that are discovered only when they blow up in production.
  • set -euxo pipefail is short for:
set -e
set -u
@alex-egorov
alex-egorov / kubectl-plugins.md
Created August 23, 2021 20:49
kubectl plugins

Steps to install BCC and bpftrace from source on Ubuntu 18.04.

BCC

Install build dependencies

sudo apt-get -y install bison build-essential cmake flex git libedit-dev \
  libllvm6.0 llvm-6.0-dev libclang-6.0-dev python zlib1g-dev libelf-dev \
 iperf3 luajit libluajit-5.1-dev netperf linux-headers-$(uname -r)
@alex-egorov
alex-egorov / kafka-cheat-sheet.md
Created January 12, 2021 20:55 — forked from filipefigcorreia/kafka-cheat-sheet.md
Apache Kafka Cheat Sheet

Kafka Topics

List existing topics

bin/kafka-topics.sh --zookeeper localhost:2181 --list

Purge a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000

... wait a minute ...

bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --delete-config retention.ms

@alex-egorov
alex-egorov / cheatsheet-elasticsearch.md
Created December 18, 2020 15:33 — forked from ruanbekker/cheatsheet-elasticsearch.md
Elasticsearch Cheatsheet : Example API usage of using Elasticsearch with curl
@alex-egorov
alex-egorov / elastic_cheat_sheet.md
Created December 18, 2020 15:33 — forked from igorcosta/elastic_cheat_sheet.md
Elastic Cheat Sheet
#!/bin/bash -e
# Setup a Root CA in vault
# Generate and sign an Intermediate cert
#
# Requires:
# * A running vault server already initialzed and unsealed
# * Environment variable VAULT_TOKEN is set
# * vault cli (https://www.vaultproject.io)
# * httpie (https://github.com/jkbrzt/httpie)
@alex-egorov
alex-egorov / vegeta.go
Created August 8, 2020 17:26 — forked from simcap/vegeta.go
Vegeta example
package main
import (
"bufio"
"encoding/json"
"fmt"
"net/url"
"net/http"
"os"
"time"