Skip to content

Instantly share code, notes, and snippets.

View luckylittle's full-sized avatar
:octocat:
Working for @RedHatOfficial

Lucian Maly luckylittle

:octocat:
Working for @RedHatOfficial
View GitHub Profile
@luckylittle
luckylittle / dl_links.csv
Last active August 30, 2024 00:45
Manning Publications Ebooks Downloader
@luckylittle
luckylittle / wayland_brightness.sh
Created May 1, 2023 06:19
Change the brightness of your monitor programatically
#!/bin/zsh
# Turn the monitor brightness down to almost zero
dconf write /org/gnome/shell/extensions/soft-brightness/current-brightness 0.01
# Turn the monitor brightness up to usable value
dconf write /org/gnome/shell/extensions/soft-brightness/current-brightness 0.8
@luckylittle
luckylittle / generate_pdf.sh
Created April 19, 2023 06:08
Beautiful PDF generator out of Markdown powered by podman
#!/bin/zsh
########################################
########################################
## ##
## Author: [email protected] ##
## Takes Markdown file `in.md` and ##
## converts it into a LaTeX PDF !! ##
## ##
########################################
@luckylittle
luckylittle / fedora_upgrade.sh
Last active October 7, 2023 16:42
Typical workflow of Fedora system-wide upgrade to the next releasever
#!/usr/bin/env bash
sudo dnf upgrade --refresh
sudo dnf install dnf-plugin-system-upgrade
sudo dnf system-upgrade download --releasever=37
sudo dnf system-upgrade reboot
sudo dnf install remove-retired-packages
remove-retired-packages
sudo dnf repoquery --unsatisfied
sudo dnf repoquery --duplicates
@luckylittle
luckylittle / fix_icaclient.sh
Created February 17, 2023 04:44
SSL Problems with Citrix ICAClient on Linux
# Error: You have not chosen to trust USERTrust RSA Certification Authority (SSL error 61)
wget http://www.tbs-x509.com/USERTrustRSACertificationAuthority.crt
sudo cp USERTrustRSACertificationAuthority.crt /opt/Citrix/ICAClient/keystore/cacerts/USERTrustRSACertificationAuthority.pem
# alternatively, if it's intermediate put it in /opt/Citrix/ICAClient/keystore/intcerts/
sudo /opt/Citrix/ICAClient/util/ctx_rehash
@luckylittle
luckylittle / procedure.txt
Last active February 16, 2023 01:25
GitOps environment promotion / image version updates
### BEFORE:
lmaly@localhost  ~/Projects/gitops-environment-promotion/envs/staging-asia   main  cat kustomization.yml
---
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: staging
namePrefix: staging-asia-
@luckylittle
luckylittle / pre-commit.sh
Created February 15, 2023 04:41
Pre-commit Git hook (.git/hooks/pre-commit.sh) that checks certain keywords
#!/bin/sh
matches=$(git diff-index --patch HEAD | grep '^+' | grep -Pi 'password|keyword2|keyword3')
if [ ! -z "$matches" ]
then
cat <<\EOT
Error: Words from the blocked list were present in the diff:
EOT
echo $matches
exit 1
fi
@luckylittle
luckylittle / Mock Exam 1.md
Last active March 30, 2025 14:39
Prometheus Certified Associate (PCA)

Mock Exam

1

Q1. The metric node_cpu_temp_celcius reports the current temperature of a nodes CPU in celsius. What query will return the average temperature across all CPUs on a per node basis? The query should return {instance=“node1”} 23.5 //average temp across all CPUs on node1 {instance=“node2”} 33.5 //average temp across all CPUs on node2.

node_cpu_temp_celsius{instance="node1", cpu="0"} 28
node_cpu_temp_celsius{instance="node1", cpu="1"} 19
node_cpu_temp_celsius{instance="node2", cpu="0"} 36
node_cpu_temp_celsius{instance="node2", cpu="1"} 31