Skip to content

Instantly share code, notes, and snippets.

View lvnilesh's full-sized avatar
💭
🏆 Vibranium Status Level

LV Nilesh lvnilesh

💭
🏆 Vibranium Status Level
View GitHub Profile
@lvnilesh
lvnilesh / gist:315fa438ecce5d73ccdf5790e486adfd
Created April 3, 2025 17:27
proxmox update upgrade error leaves proxmox in a state where the VM can't boot.
```
root@msi:~# sudo apt update
Hit:1 http://security.debian.org bookworm-security InRelease
Hit:2 http://ftp.us.debian.org/debian bookworm InRelease
Get:3 http://ftp.us.debian.org/debian bookworm-updates InRelease [55.4 kB]
Hit:4 http://download.proxmox.com/debian/ceph-reef bookworm InRelease
Get:5 http://download.proxmox.com/debian/pve bookworm InRelease [2,768 B]
Fetched 58.2 kB in 3s (22.0 kB/s)
Reading package lists... Done
Building dependency tree... Done
@lvnilesh
lvnilesh / details
Created March 27, 2025 06:30
system details
```
cloudgenius@asus:~$ lspci
00:00.0 Host bridge: Intel Corporation Device a700 (rev 01)
00:01.0 PCI bridge: Intel Corporation Raptor Lake PCI Express 5.0 Graphics Port (PEG010) (rev 01)
00:06.0 PCI bridge: Intel Corporation Raptor Lake PCIe 4.0 Graphics Port (rev 01)
00:0a.0 Signal processing controller: Intel Corporation Raptor Lake Crashlog and Telemetry (rev 01)
00:14.0 USB controller: Intel Corporation Raptor Lake USB 3.2 Gen 2x2 (20 Gb/s) XHCI Host Controller (rev 11)
00:14.2 RAM memory: Intel Corporation Raptor Lake-S PCH Shared SRAM (rev 11)
00:14.3 Network controller: Intel Corporation Raptor Lake-S PCH CNVi WiFi (rev 11)
00:15.0 Serial bus controller: Intel Corporation Raptor Lake Serial IO I2C Host Controller #0 (rev 11)
@lvnilesh
lvnilesh / 10-wakeup.rules
Created March 26, 2025 21:06
wakeup rules to wake linux up when using keyboard or mouse
# touch /etc/udev/rules.d/10-wakeup.rules
```
lsusb
Bus 001 Device 021: ID 046d:c548 Logitech, Inc. Logi Bolt Receiver
```
046d:c548
```
@lvnilesh
lvnilesh / brightness-control
Created March 22, 2025 21:44
brightness control stepper script
```
#!/bin/bash
# Get current brightness level
current_brightness=$(xrandr --verbose | grep -m 1 -i brightness | awk '{print $2}')
# Define step size for brightness change
step=0.1
# Adjust brightness based on argument
@lvnilesh
lvnilesh / dimmer
Created March 22, 2025 20:54
dimmer display brightness and gamma adjustment on ubuntu linux
#! /bin/bash
# Script for adjusting display brightness and gamma
# This script assumes that you have two monitors connected via DP-1 and DP-4
# run `xrandr --verbose` or just `xrandr` to find the detail about the monitors you have connected.
# Ensure input is a valid number and convert it to a decimal
if [[ "$1" =~ ^[0-9]+$ ]] && (( $1 >= 1 && $1 <= 10 )); then
[ "$1" = 10 ] && percent="1" || percent="0.$1"
else
echo "Usage: $0 <brightness level (1-10)> [night]"
@lvnilesh
lvnilesh / karabiner.json
Created February 20, 2025 03:50
karabiner.json from m1 Mac
{
"global": { "show_profile_name_in_menu_bar": true },
"profiles": [
{
"complex_modifications": {
"rules": [
{
"description": "CAPS_LOCK to HYPER (SHIFT+COMMAND+OPTION+CONTROL) or ESCAPE (If Alone)",
"manipulators": [
{
@lvnilesh
lvnilesh / hls.sh
Created November 8, 2024 20:20 — forked from stenuto/hls.sh
HLS ffmpeg script
#!/bin/bash
# Function to display usage information
usage() {
echo "Usage: $0 /path/to/input.mp4 [ /path/to/output_directory ]"
exit 1
}
# Check if at least one argument (input file) is provided
if [ $# -lt 1 ]; then
@lvnilesh
lvnilesh / .config-karabiner-karabiner.json
Created November 2, 2024 21:54
karabiner on the old macbook pro
{
"global": {
"ask_for_confirmation_before_quitting": true,
"check_for_updates_on_startup": true,
"show_in_menu_bar": true,
"show_profile_name_in_menu_bar": false,
"unsafe_ui": false
},
"profiles": [
{
@lvnilesh
lvnilesh / docker-compose.yaml
Created October 21, 2024 17:20
mount an NFS export directly inside a docker container
services:
web:
image: nginx:latest
ports:
- "80:80"
volumes:
- web_data:/usr/share/nginx/html
# volumes:
# web_data:
@lvnilesh
lvnilesh / create-aks-k8s.sh
Created September 20, 2024 04:52
create-aks-k8s.sh
```
export RANDOM_ID="$(openssl rand -hex 3)"
export MY_RESOURCE_GROUP_NAME="CGRG$RANDOM_ID"
export REGION="westus"
export MY_AKS_CLUSTER_NAME="andromeda$RANDOM_ID"
export MY_DNS_LABEL="cgdns$RANDOM_ID"
az group create --name $MY_RESOURCE_GROUP_NAME --location $REGION
az aks create --resource-group $MY_RESOURCE_GROUP_NAME --name $MY_AKS_CLUSTER_NAME --node-count 1 --generate-ssh-keys