Skip to content

Instantly share code, notes, and snippets.

View itskenny0's full-sized avatar

kenny itskenny0

  • I don't know what I'm doing, Inc.
  • Germany
View GitHub Profile

Install WinGet (Windows Package Manager) on Windows 10/11 LTSC

This guide describes several methods to install WinGet (Windows Package Manager) on Windows 10/11 LTSC.

Tested working on Windows 10/11 LTSC Recommended minimum build: 22H2 Requires Administrator Rights


✅ Requirements

Hacking HY300 Pro+ Projector (720p)

Hello manufacturer. Good device. But software we want to customize. If you allow, we will buy more.

Despite being advertised as "4K 1080P", it really downscales those to 720P.

But for 28.50 EUR from Amazon Warehuose Germany in 2025, one can't exactly complain. https://www.amazon.de/dp/B0DSP74YQW

Chengdu Hotack Technology Co., Ltd. is the OEM?

@omergorur
omergorur / enable_guest_samba_windows11.ps1
Last active June 16, 2026 10:49
Enable Guest Access to Samba Shares on Windows 11 24H2
Set-SmbClientConfiguration -RequireSecuritySignature $false
Set-SmbClientConfiguration -EnableInsecureGuestLogons $true
@fishcu
fishcu / zero28_setup.md
Last active August 7, 2025 13:40
MagicX Zero 28: How to set up a clean rooted system

MagicX Zero 28

This guide details how to set up a clean rooted system.

The list of global Android hotkeys may be useful: https://github.com/Magicx-Breeze/Dawn/wiki/Default_Control_EN

Flash the System Image

Flash the image with the tool.

@seamonkey420
seamonkey420 / YB1-X90FL-Android7.txt
Last active June 20, 2026 09:12
Lenovo Yoga Book YB1-X90L Android 7.1.1 update notes
Yoga Android 7.1.1 update notes!
Models: YB1-X90F and YB1-X90L (LTE needs to be added back, not covered here)
seamonkey420
created: 9/21/2024
updated: 10/16/2024
Wait to plug in yoga to pc!
Pre-req work:
@phplaw
phplaw / link_and_bugs.md
Last active June 27, 2026 20:55
Everything about eGPU on Mac

scenario: you have a windows vm failing to boot with INACCESSIBLE_BOOT_DEVICE and changing the disk type to ide or something else causes another bsod. how to you get it to boot up again without a physical machine?

download the stable virtio drivers from here, in iso form: https://fedorapeople.org/groups/virt/virtio-win/direct-downloads/stable-virtio/virtio-win.iso

add the iso to your qemu/virt manager config as a cd/dvd drive

windows should send you to the recovery mode screen, but if it doesn't you might have to run a windows install iso to get to it.

@mattitanskane
mattitanskane / hidedock.md
Last active June 25, 2026 16:20
How to hide the Dock on MacOS

I never use the Dock and all it does for me is come in the way when I'm resizing windows or clicking on stuff I can't access using just my keyboard.

Here's a way to hide the Dock so it doesn't get in the way anymore.

Run the following commands in the terminal.

# Hide Dock
defaults write com.apple.dock autohide -bool true && killall Dock
defaults write com.apple.dock autohide-delay -float 1000 && killall Dock
@chall8908
chall8908 / dark-mode-toggle.js
Last active April 11, 2025 08:25
Rocket.Chat Dark Mode
// Toggleable dark mode for those of us that care about that kind of thing.
const toggleButton = '<button class="sidebar__toolbar-button rc-tooltip rc-tooltip--down js-button" aria-label="Toggle Dark Mode">D</button>';
function addDarkModeToggle() {
const sidebarToolbar = $('.sidebar__toolbar');
// wait for the sidebar toolbar to be visible
// this will also be false if the toolbar doesn't exist yet
if(!sidebarToolbar.is(':visible')) {
setTimeout(addDarkModeToggle, 250);
@edvinassabaliauskas
edvinassabaliauskas / rocket_theme_dark.js
Last active January 7, 2024 13:22
Dark theme enabler for Rocket.Chat. Theme taken from https://github.com/0x0049/Rocket.Chat.Dark
var ThemeEnabler = {
isThemeOn: false,
controls: null,
onAppLoaded: async function() {
this.checkCookie()
do {