Skip to content

Instantly share code, notes, and snippets.

View TheFallender's full-sized avatar

TheFallender TheFallender

View GitHub Profile
@TheFallender
TheFallender / rust_conf.md
Last active June 4, 2023 10:20
Rust Configuration

Rust Configuration

Key Binds


Basic

Auto attack and duck:

bind f2 attack;duck

Duck toggle:

@TheFallender
TheFallender / debloatLossLessCut.ps1
Created October 13, 2022 12:35
Script to debloat the LossLessCut installation from https://community.chocolatey.org/packages/lossless-cut
# To the one that made the original bloatware script, you will be glad to hear that I will give you my most sincere and lovely fuck you.
# Like, who the adds +1500 entries to the registry and doesn't delete them when uninstalling.
# Still, thank you for making the package and mantaining it.
# So, while I have tested this script, I recommend checking it just in case I screwed up in something.
# Remove the media association with LosslessCut
if ((Test-Path -LiteralPath "HKLM:\SOFTWARE\Clients\Media\LosslessCut") -eq $true) {
Remove-Item "HKLM:\SOFTWARE\Clients\Media\LosslessCut" -Recurse -Force -Confirm:$false;
};
@TheFallender
TheFallender / PasteInput.ahk
Last active October 16, 2023 20:24
PasteInput - Paste your clipboard text letter by letter.
SendMode Input
SetKeyDelay, 0
SendRaw %clipboard%
exitapp