Skip to content

Instantly share code, notes, and snippets.

View wildy5588's full-sized avatar

Wildy Sheverando wildy5588

View GitHub Profile
@wildy5588
wildy5588 / Debian-12-sources.list
Created August 28, 2024 06:10
Debian 12 Sources List
deb http://deb.debian.org/debian bookworm contrib main non-free-firmware
deb http://deb.debian.org/debian bookworm-updates contrib main non-free-firmware
deb http://deb.debian.org/debian bookworm-backports contrib main non-free-firmware
deb http://deb.debian.org/debian-security bookworm-security contrib main non-free-firmware
@wildy5588
wildy5588 / guides-to-recovery-bios-gigabyte-b75m-d3h.md
Created June 9, 2024 16:22
Guides to Enter Recovery Bios on Gigabyte B75M-D3H When Main BIOS Corrupted

Fixing Main BIOS Error Using Backup BIOS

If your motherboard is experiencing a repeated cycle of turning on for 10 seconds, turning off automatically, and then turning on again for 10 seconds, followed by displaying a corrupted BIOS, you can use the backup BIOS to restore the main BIOS.

Problem Illustration

WhatsApp Image 2024-06-09 at 21 59 15_171b3c33

Follow these steps:

1. Initiate Power Cycle:

  • Hold the power button on the front of the case.
@wildy5588
wildy5588 / guides_to_resize_recovery_partition_w1011.txt
Created June 2, 2024 18:15
Guides to resize recovery partition in windows 10/11 [UEFI]
Guides to resize partition
1. Run CMD as Administrator
2. disable reagent use : reagentc /disable
3. Type diskpart in the cmd
list disk
sel disk [yourwindows]
list part
sel part [winreindex]
@wildy5588
wildy5588 / install-winget-win-10-11.txt
Last active August 3, 2024 03:10
Guides to install Winget in Windows 10 and 11
# >> Create temporary folder
mkdir C:\tempfol
cd C:\tempfol
# >> Enable Protocol TLSv1.2 and SSLv1.3
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls, [Net.SecurityProtocolType]::Tls11, [Net.SecurityProtocolType]::Tls12, [Net.SecurityProtocolType]::Ssl3
[Net.ServicePointManager]::SecurityProtocol = "Tls, Tls11, Tls12, Ssl3"
# >> Install VCLibs
Invoke-WebRequest -Uri https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx -OutFile .\VCLibs.appx