Skip to content

Instantly share code, notes, and snippets.

View lkd70's full-sized avatar

LKD70 lkd70

  • LKD70
  • England
  • 14:00 (UTC +01:00)
View GitHub Profile
@lkd70
lkd70 / Allow Nvidia Broadcast Updates.reg
Last active August 28, 2025 17:52
Block/Allow NVidia Broadcast Updates (Save each file as .reg, double click to run)
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\FirewallRules]
"{723B2CF9-6C17-40CF-AD64-382DAF2BC7BD}"="v2.32|Action=Allow|Active=TRUE|Dir=Out|App=%ProgramFiles%\\NVIDIA Corporation\\NVIDIA Broadcast\\NVIDIA Broadcast UI.exe|Name=Allow NVidia Broadcast Updates|"
@lkd70
lkd70 / custom_script.sh
Created January 12, 2025 16:00
Upload to Telegram from Radarr/Sonarr/Lidarr with Telegram Topic support.
#!/bin/bash
# Configurable working directory
WORKING_DIR="/torrent/utils/message-telegram"
# Change to the working directory
cd "$WORKING_DIR" || { echo "Failed to change to working directory: $WORKING_DIR"; exit 1; }
# Function to send telegram message with error handling
send_telegram_message() {
@lkd70
lkd70 / README.md
Last active April 11, 2024 19:52
A theme for Kagi that resembles the older blue one.

How To

Follow this guide

What Does This Do?

This is an attempt to 'restore' some of the aspects of the older dark blue theme for Kagi. It's highly opinionated so may not fit your needs.

Here's a list of what I want to add/have added:

@lkd70
lkd70 / LKD-EasyEpicInstaller
Created October 5, 2022 21:57
Installer script for the Epic Games version of ARK using existing Steam files.
Add-Type -AssemblyName PresentationFramework
Function Get-Folder($initialDirectory="C:\")
{
[System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms")|Out-Null
$foldername = New-Object System.Windows.Forms.FolderBrowserDialog
$foldername.Description = "Select a folder"
$foldername.rootfolder = "MyComputer"
$foldername.SelectedPath = $initialDirectory