Skip to content

Instantly share code, notes, and snippets.

View ChuckMichael's full-sized avatar
🐧

M ChuckMichael

🐧
View GitHub Profile
@ChuckMichael
ChuckMichael / vcredistr.md
Last active June 17, 2025 11:29
Visual C++ Redistributable Packages
@ChuckMichael
ChuckMichael / rgb_alt_software.md
Last active May 24, 2025 23:16
Compare of alternative RGB software
Name License Supported? Supported devices Platform Notes
JackNet RGB Sync GPL-2.0 ❌ No activity from 3 years Windows
SignalRGB Propertiary Windows
OpenRGB GPL-2.0 Windows, Linux, MacOS
Aurora MIT
@ChuckMichael
ChuckMichael / bluetooth_version.md
Last active May 11, 2025 01:14
Bluetooth version. Based on Official Bluetooth SIG documentation: https://www.bluetooth.com/specifications/assigned-numbers/
Link Manager Protocol Version (LMP) LMP Hex Bluetooth Core Specification
LMP 0 0x00 Bluetooth Core Specification 1.0b
LMP 1 0x01 Bluetooth Core Specification 1.1
LMP 2 0x02 Bluetooth Core Specification 1.2
LMP 3 0x03 Bluetooth Core Specification 2.0 + EDR
LMP 4 0x04 Bluetooth Core Specification 2.1 + EDR
LMP 5 0x05 Bluetooth Core Specification 3.0 + HS
LMP 6 0x06 Bluetooth Core Specification 4.0
LMP 7 0x07 Bluetooth Core Specification 4.1
@ChuckMichael
ChuckMichael / vc_redistr.md
Last active March 28, 2025 05:10
Install all Visual C++ Redistributables using only one command!

Warning

App Installer must be installed on Win10/11.

CMD

Tip

You can save it and run as batch file (.bat).

winget install --id=Microsoft.VCRedist.2005.x86 -e  && winget install --id=Microsoft.VCRedist.2005.x64 -e  && winget install --id=Microsoft.VCRedist.2008.x86 -e  && winget install --id=Microsoft.VCRedist.2008.x64 -e  && winget install --id=Microsoft.VCRedist.2010.x86 -e  && winget install --id=Microsoft.VCRedist.2010.x64 -e  && winget install --id=Microsoft.VCRedist.2012.x86 -e  && winget install --id=Microsoft.VCRedist.2012.x64 -e  && winget install --id=Microsoft.VCRedist.2013.x86 -e  && winget install --id=Microsoft.VCRedist.2013.x64 -e  && winget install --id=Microsoft.VCRedist.2015+.x86 -e  && winget install --id=Microsoft.VCRedist.2015+.x64 -e 
@ChuckMichael
ChuckMichael / list.md
Last active January 25, 2025 15:56
Moja lista dodatkowych filtrów do Ublock Orgin/Adguard
@ChuckMichael
ChuckMichael / 0x00000704_fix.reg
Last active September 15, 2024 18:36
Error fix for "Operation could not be completed (error 0x00000704). The specified port is unknown" when installing Brother printer software. It also fixed problem with not working Brother Monitor Status. Read more on my blog:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors]
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\Local Port]
"Driver"="localspl.dll"
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Print\Monitors\Standard TCP/IP Port]
"Driver"="tcpmon.dll"
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp]
"DisableWpad"=dword:00000001
@ChuckMichael
ChuckMichael / 7zip-config.md
Created February 10, 2024 19:57
7-Zip and NanaZip - Editor Tab configuration

7-Zip and NanaZip - Editor tab configuration

window

View

Path to text editor

Notepad.exe

Editor

Path to text editor

@ChuckMichael
ChuckMichael / config.xml
Created October 18, 2023 15:24
config MS365
<Configuration>
<Add OfficeClientEdition="64" Channel="Current" AllowCdnFallback="true">
<Product ID="O365HomePremRetail">
<Language ID="pl-pl" />
<ExcludeApp ID="Access" />
<ExcludeApp ID="OneDrive" />
<ExcludeApp ID="OneNote" />
<ExcludeApp ID="Outlook" />
<ExcludeApp ID="Publisher" />
</Product>
@ChuckMichael
ChuckMichael / notepadplusplus_win11.reg
Last active October 8, 2023 23:56
***/!\Not needed starting from Notepad++ v8.5.1/!\*** It adds "Edit with Notepad++" option to new context menu under Windows 11. Thanks to @AveYo!
Windows Registry Editor Version 5.00
; Edit with Notepad++ in Windows 11 contextmenu - by AveYo (https://gist.github.com/AveYo)
[-HKEY_CURRENT_USER\Software\Classes\*\shell\extract]
[HKEY_CURRENT_USER\Software\Classes\*\shell\extract]
"MuiVerb"="Edit with &Notepad++"
"Icon"="C:\\Program Files\\Notepad++\\notepad++.exe,0"
"MultiSelectModel"="Player"
"NeverDefault"=""
"AppliesTo"="NOT .zip"