Skip to content

Instantly share code, notes, and snippets.

View akaydev-coder's full-sized avatar
:electron:
Life is Sort of Passing by

Akay Devel Coder akaydev-coder

:electron:
Life is Sort of Passing by
  • Dev.root
  • Germany
  • 06:03 (UTC +02:00)
View GitHub Profile
@rikka0w0
rikka0w0 / Add_System_to_ThisPC_Win10_20H2.reg
Created March 15, 2021 13:12
Add an menu item for the legacy "System" control panel page in the context menu of ThisPC, run as TrustedInstaller, use NSudo
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\System]
"Icon"="imageres.dll,143"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\System\command]
@="explorer /same,shell:::{BB06C0E4-D293-4f75-8A90-CB05B6477EEE}"
[HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\shell\Manage]
"Icon"="imageres.dll,313"
@TameemS
TameemS / debloatMEmu.md
Last active October 2, 2025 13:21
Debloating & Optimizing MEmu

Inspired by this

More of my guides: Debloating LDPlayer - Debloating Nox (Updated)

Edit 22/8/2021: I have updated MEmu and it seems like it reinstalls the apps and re-enables the services. Repeat steps 5, 7, 8, and 9 if you update MEmu.

Debloating MEmu

In my experience, Nox can be quite slow and choppy, and looks like I'm not the only person with this problem. A lot of people say that MEmu performs better than Nox, and I could agree with that. I have no chopping issues with it so far. But like Nox, there are kinda shady stuff going on.

@Ruffo324
Ruffo324 / Hyper-V PCI-Passthroug.ps1
Last active August 26, 2025 08:53
Hyper-V PCIe passthrough CheatSheet
# Change to name of TARGET-VM.
$vm='CHANGE_ME'
# Change to PCI device location (💡 Location).
$Location = 'CHANGE_ME'
# Enable CPU features.
Set-VM -GuestControlledCacheTypes $true -VMName $vm
# Host-Shutdown rule must be changed for the VM.
Set-VM -Name $vm -AutomaticStopAction TurnOff
@opastorello
opastorello / gist:05f02f902339ebc27ea7f20c1838b066
Created November 4, 2021 06:43
Cracking Sublime Text Build (4121)
# Cracking Sublime Text ( Build 4121 ) Tutorial Analysis
---
Two main changes to be made for best experience. This can be done with script.
### License Key
While it is possible to deduce the format of the license key, there is available ones online to show. Analyse and see that it is still that same format. The main part is the verification of the hash values from the license key that we want to always be "correct". This is also the key that this tutorial will use.
```
/*
* Global Media Controls Panel
* Written by Tam710562
*/
(() => {
'use strict';
const gnoh = {
i18n: {
@Dan-cer
Dan-cer / deepl.user.js
Last active April 7, 2023 04:17
Customized Vivaldi web-panel for DeepL Translator
// ==Description==
// Due to Chromium security updates, some Chrome extensions are currently not working in Vivaldi Sidebar.
// It also affects this script.
// It is a customization for using DeepL Translator as web-panel in Vivaldi Browser.
// It can be added like a chrome extension when you have activated developer mode for chrome extensions.
// The code can be modified to match your resolution or theme colors.
// Copy the code below from line 9 to end, save it to any directory as "deepl.user.js" and add the file by dragging it into
// vivaldi://extensions/
// ==/Description==
@TameemS
TameemS / debloatLDPlayer.md
Last active October 13, 2025 21:29
Debloating LDPlayer

Inspired by this

More of my guides: Debloating MEMu - Debloating Nox (Updated)

This mainly applies to LDPlayer9. They will probably work on the low end options (like LDPlayer5) but not guaranteed.

Debloating LDPlayer

This emulator seems to have less stability issues than MEMu. I think we get the shtick that these emulators do spooky stuff.

  1. Download LDPlayer, preferably an offline version from the version history
@macshome
macshome / defang.md
Last active October 4, 2025 19:20
How to defang system protections on macOS

How to Defang macOS System Protections

If you want to change things on the root drive of a Mac you will need to take some steps to disable the built in security of the system. Most of these steps are the same regardless if you are on Intel or Apple Silicon. If there is a difference it is noted.

Note that all of these things put a Mac into an unsupported and less secure state.

Make sure you either perform these steps in a VM or that you reset the protections after you are done poking around

Protections and Terms

(This list is not exahustive on the details of each. Check the links at the end for more info.)

@chriskyfung
chriskyfung / Optimize-vEthernet-for-BluestacksNxt.ps1
Last active June 11, 2025 17:11
PowerShell Script to Optimize Virtual Ethernet Adapter Performance for BlueStacks with Hyper-V Enabled
#Requires -RunAsAdministrator
Try {
# Disable all Virtual Ethernet Adapters except the Virtual Ethernet Adapter for BlueStacks
Get-NetAdapter -Name "vEthernet *" | where Name -inotmatch ‘BluestacksNxt’ | Disable-NetAdapter -Confirm:$false
# Ensure the Virtual Ethernet Adapter for BlueStacks is active
Enable-NetAdapter -Name "vEthernet (BluestacksNxt)"
# Disable Large Send Offload (LSO) for all Virtual Ethernet Adapters. Learn more: https://learn.microsoft.com/en-us/windows-hardware/drivers/network/performance-in-network-adapters#supporting-large-send-offload-lso
@AveYo
AveYo / . steamwebhelper_min.bat
Last active September 16, 2025 12:28
Steam minimal resource usage after removal of -no-browser & -vgui options. Enter script in powershell then use Steam_min shortcut on Desktop instead
@(set "0=%~f0" '& set 1=%*) & powershell -nop -c "$env:2=gc -lit $env:0|out-string; $env:2|powershell -nop -c -" & exit /b ');.{
" Steam_min : always restarts in SmallMode with reduced ram and cpu usage when idle - AveYo, 2025.06.11 "
$FriendsSignIn = 0
$FriendsAnimed = 0
$ShowGameIcons = 0
$NoJoystick = 1
$NoShaders = 1
$NoGPU = 1