Skip to content

Instantly share code, notes, and snippets.

View ChuckMichael's full-sized avatar
🐧

M ChuckMichael

🐧
View GitHub Profile
@ChuckMichael
ChuckMichael / bluetooth_version.md
Last active April 19, 2024 13:40
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 / 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>
curl parrot.live
@ChuckMichael
ChuckMichael / sandbox-secure-nointernet.wsb
Last active July 29, 2023 22:00
Windows Sandbox configuration file (no internet, clipboard sharing disabled, enabled protected client)
<Configuration>
<Networking>Disable</Networking>
<ClipboardRedirection>Disable</ClipboardRedirection>
<ProtectedClient>Enable</ProtectedClient>
</Configuration>
@ChuckMichael
ChuckMichael / dotnet_telemetry_disable.bat
Created June 25, 2023 09:25
Disable .NET telemetry
set DOTNET_CLI_TELEMETRY_OPTOUT=1
@ChuckMichael
ChuckMichael / 0x00000704_fix.reg
Last active April 10, 2024 17:56
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"
@ChuckMichael
ChuckMichael / rgb_alt_software.md
Last active May 28, 2023 19:55
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 / vc_redistr.md
Last active March 24, 2024 14:47
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 / openwrt_reboot.sh
Last active August 4, 2022 15:17
restart router every Saturday on 4:00.
# source https://openwrt.org/docs/guide-user/base-system/cron#periodic_reboot
crontab -e
# Restart router at 04:00 on Saturday
0 4 * * 6 sleep 70 && touch /etc/banner && reboot
# crontab must end with the last line as space or a comment