Skip to content

Instantly share code, notes, and snippets.

View AzimsTech's full-sized avatar
🖨️
git push origin main --force

Wan Azims AzimsTech

🖨️
git push origin main --force
View GitHub Profile
@gengor-git
gengor-git / Backup-Settings.ps1
Last active June 13, 2024 09:00
Backup script to store my Windows configs in a 7-zip archive incl. scripts for chocolatey and VS Code.
<#PSScriptInfo
.AUTHOR
Martin Palmowski
.SYNPOSIS
Backup settings and configs for my Windows 10 environment.
.DESCRIPTION
Backup the most relevant settings and configs in a 7-zip archive.
Requires 7-zip to be installed an in the path.
Paths are based on Windows 10 defaults.
#>
@Alee14
Alee14 / win-dism.md
Last active March 7, 2026 07:21
Installing Windows using CMD. (UEFI and BIOS Supported)

Installing Windows using CMD. (UEFI and BIOS Supported)

Guide created by Andrew Lee. Supports Windows 7, 8, 10, and 11.

Note that this guide does not go into detail, it's just providing the commands to install Windows.

Be cautions when doing this when dualbooting, please backup any existing data or you will lose them all.

Open CMD

First open CMD by pressing the following keys after booting into setup: Shift + F10

Creating Partition

@hollow-space
hollow-space / autoexec.cfg
Created May 17, 2021 18:11
Personal dota autoexec config
// AUDIO TAB
volume 0.6
snd_gamevolume 0.6
snd_musicvolume 0.000000
snd_voipvolume 0.7
snd_gamevoicevolume 0.6
snd_mute_losefocus 0
chat_sound false
dota_mute_cobroadcasters 0
@noseratio
noseratio / adb-clear-packages.ps1
Last active October 5, 2024 19:55
Clear all Android packages and user data via ADB
# Clear all Android packages and user data via ADB, by @noseratio
# Run: powershell -f adb-clear-packages.ps1
# To get ADB: https://community.chocolatey.org/packages/adb
#
# Q: Why not a factory reset?
# A: https://www.reddit.com/r/Android/comments/naetg8/a_quick_powershell_script_for_clearing_user_data/gxtaswl?context=3
$confirmation = Read-Host "This will clear all packages data and user files. Are you sure you want to proceed? (y|n)"
if ($confirmation -ne 'y') {
return
@hinell
hinell / Fix Broken EDID Guide.md
Last active January 21, 2026 01:37
Guide how to achieve better resolution with broken EDID. Two methods are used: xorg.conf config and kernel params.

Fix Broken EDID Guide

This guide outlines replacement of the broken EDID metadata file for the device in Linux Operating Systems.

Last-Modified: Sunday, April 11, 2021

• • •

@eromatiya
eromatiya / miui12-blur-go-brrr.md
Last active July 25, 2025 01:03
A guide to enable blur effects on MIUI 12 low-end devices

How to bring back the blur effects of MIUI 12 on low-end devices

If you have a low-end device, you probably noticed the gray background color on your control center and notification shade. Let's bring back the glorious blur effect by patching MiuiSystemUI.apk.

Prerequisites:

  • adb
  • apktool < v2.6.0
  • smali/baksmali
  • Code/Text Editor
@Aldaviva
Aldaviva / Windows 10 & 11 services.md
Last active March 10, 2026 21:46
Safety of disabling services in Windows 10 and 11

These settings apply to normal, functioning Windows 10 and 11 Pro desktops and laptops with

  • wired Ethernet
  • Wi-Fi
  • Bluetooth
  • IPv4
  • IPv6
  • no touch screen

Safe to disable

@edjdavid
edjdavid / pp_motion_interp.md
Created August 13, 2020 12:39
PotPlayer Motion Interpolation
@DrEmpiricism
DrEmpiricism / Start-WindowsCleanup.ps1
Last active January 25, 2026 06:35
Clean-up system clutter and reclaim disk space
Function Start-WindowsCleanup
{
<#
.SYNOPSIS
`Start-WindowsCleanup` cleans-up a system clutter and reclaims disk space.
.DESCRIPTION
The `Start-WindowsCleanup` cmdlet performs the following clean-up tasks to reclaim disk space:
Clears the contents of common directories of the Windows file system for both the current running user and the global system that are used to store temporary, logging, backup, cache and dump files.

Create Windows Terminal shortcut in Windows + X context menu

Windows Terminal shortcut in WinX context menu

In Windows PowerShell do the following:

$folderPath = "$ENV:LOCALAPPDATA\Microsoft\Windows\WinX\Group3"
$adminFilePath = Join-Path $folderPath "00 - Windows Terminal.lnk"
$normalFilePath = Join-Path $folderPath "00a - Windows Terminal.lnk"