Skip to content

Instantly share code, notes, and snippets.

@transhapHigsn
transhapHigsn / default.nix
Created February 1, 2022 16:24
Python + poetry development environment using Nix
{ pkgs ? import <nixpkgs> { } }:
pkgs.poetry2nix.mkPoetryApplication {
projectDir = ./.;
python = pkgs.python38;
}
@transhapHigsn
transhapHigsn / nth_prime.rs
Created December 27, 2020 12:13
Rust Exercise
pub fn check_for_prime(div: u32, primes: &mut Vec<u32>) -> bool {
for i in primes {
if *i > div/2 {
return true;
}
if div % *i == 0 {
return false;
}
}
@transhapHigsn
transhapHigsn / number_of_set_bits_for_a_number.rs
Created December 27, 2020 11:52
Get number of set bits in a decimal number
use std::io;
fn number_of_bits(num: u32) -> u32 {
let mut count = 0;
let mut copy_num = num;
while copy_num > 0 {
count += 1;
copy_num = copy_num & (copy_num - 1);
}
count
@transhapHigsn
transhapHigsn / fix-wsl2-dns-resolution
Created December 12, 2020 05:56 — forked from coltenkrauter/fix-wsl2-dns-resolution
Fix DNS resolution in WSL2
1. Create a file: /etc/wsl.conf.
2. Put the following lines in the file in order to ensure the your DNS changes do not get blown away
[network]
generateResolvConf = false
3. In a cmd window, run wsl --shutdown
4. Restart WSL2
5. Create a file: /etc/resolv.conf. If it exists, replace existing one with this new file.
6. Put the following line in the file
@transhapHigsn
transhapHigsn / bot.rb
Created August 1, 2020 09:01 — forked from dideler/bot.rb
Sending a notification message to Telegram using its HTTP API via cURL
# Use this script to test that your Telegram bot works.
#
# Install the dependency
#
# $ gem install telegram_bot
#
# Run the bot
#
# $ ruby bot.rb
#
---
# Source: calico/templates/calico-config.yaml
# This ConfigMap is used to configure a self-hosted Calico installation.
kind: ConfigMap
apiVersion: v1
metadata:
name: calico-config
namespace: kube-system
data:
# Typha is disabled.
kubectl get pods | grep Evicted | awk '{print $1}' | xargs kubectl delete pod
@transhapHigsn
transhapHigsn / delete-from-v2-docker-registry.md
Created June 18, 2020 07:14 — forked from jaytaylor/delete-from-v2-docker-registry.md
One liner for deleting images from a v2 docker registry

One liner for deleting images from a v2 docker registry

Just plug in your own values for registry and repo/image name.

registry='localhost:5000'
name='my-image'
curl -v -sSL -X DELETE "http://${registry}/v2/${name}/manifests/$(
    curl -sSL -I \
        -H "Accept: application/vnd.docker.distribution.manifest.v2+json" \
@transhapHigsn
transhapHigsn / nodes-gc.py
Last active December 28, 2020 22:25
K3s garbage collect expired passwords for nodes in cluster
# steps
# 1. echo -n $(sudo cat /var/lib/rancher/k3s/server/cred/node-passwd) > node-pass
# 2. set kube context, export KUBECONFIG=/path/to/kube/config.yaml
# 3. python node-gc.py
# 4. sudo mv check-pass /var/lib/rancher/k3s/server/cred/node-passwd
# NOTE: Also you can just create cron job that clears content of the file(/var/lib/rancher/k3s/server/cred/node-passwd),
# works very well.
import subprocess