Skip to content

Instantly share code, notes, and snippets.

@asheroto
asheroto / Optimize-TCPSettings.ps1
Last active May 18, 2026 13:26
Adjusts various TCP and network settings in Windows to enhance the speed of the Internet connection.
#Requires -RunAsAdministrator
<#
.SYNOPSIS
Network performance optimization script for Windows 10/11.
.DESCRIPTION
Applies TCP and network stack tweaks targeting lower latency.
Skips settings that are read-only or no-ops on Windows 10/11 consumer editions.
Run in an elevated PowerShell session.
@yashgorana
yashgorana / msedge-debloat.reg
Last active March 26, 2026 10:04
Debloat Microsoft Edge using Chromium policies. Auto-generated using https://github.com/yashgorana/chrome-debloat
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Edge]
"ApplicationGuardFavoritesSyncEnabled"=dword:00000000
"ApplicationGuardPassiveModeEnabled"=dword:00000000
"ApplicationGuardTrafficIdentificationEnabled"=dword:00000000
"ApplicationGuardUploadBlockingEnabled"=dword:00000000
"TyposquattingCheckerEnabled"=dword:00000000
"EdgeWorkspacesEnabled"=dword:00000000
"ControlDefaultStateOfAllowExtensionFromOtherStoresSettingEnabled"=dword:00000001
@matthewjberger
matthewjberger / install.sh
Last active April 16, 2026 14:15
Personalized Arch Installation
# !/bin/bash
# UEFI/GPT Installation
# This is meant to be run from the archiso live media command line
host_name=$1
root_password=$2
user_name=$3
user_password=$4
additional_kernel_parameters=$5
@joshschmelzle
joshschmelzle / ffmpeg-cut-out-video.cmd
Created November 29, 2016 18:17
Cut a video without re-encoding with ffmpeg
ffmpeg -i input.mp4 -c copy -ss 00:04:25.000 -to 00:09:25.000 output.mp4