Skip to content

Instantly share code, notes, and snippets.

@kupietools
kupietools / Docker Desktop v 4.0.0 thru 4.22.1 direct download links
Last active December 3, 2025 06:59
List of Direct Download links for Docker Desktop from version 4.0.0 released 2021-08-31 thru 4.22.1 released 2023-08-24, as archived on archive.org
@EverythingSmartHome
EverythingSmartHome / Sonoff NSPanel Flashing commands.txt
Last active April 29, 2025 22:30
Sonoff NSPanel Flashing commands
Get Flash Size and info:
esptool.py flash_id
Read backup flash from esp32 with 4MB of flash size:
esptool.py read_flash 0x0 0x400000 nspanel.bin
Tasmota template for NSPanel:
{"NAME":"NSPanel","GPIO":[0,0,0,0,3872,0,0,0,0,0,32,0,0,0,0,225,0,480,224,1,0,0,0,33,0,0,0,0,0,0,0,0,0,0,4736,0],"FLAG":0,"BASE":1,"CMND":"ADCParam 2,64000,10000,3950 | Sleep 0 | BuzzerPWM 1"}
@rampfox
rampfox / TNT’s certificate.md
Last active February 17, 2025 04:03
If Crashes when opening Mac Cracked Apps

Apple removed TNT’s certificate, so the app will crash after July 12th. The current solution is to sign it yourself.

Run in Terminal

codesign --force --deep --sign - /Applications/name.app

if Permission denied don't forget to add sudo

example:

@tap52384
tap52384 / README.md
Last active December 2, 2025 17:00
Install Windows on External Drive for macOS
@berniebernie
berniebernie / MEL: Display all maya icons.mel.c
Created December 30, 2015 15:10
Shows a window with all icon ressources, more accessible than scrolling through the icons in the shelf options http://i.imgur.com/0WSBD90.png
if (`window -exists AllIconsWin`) deleteUI AllIconsWin;
if (`windowPref -exists AllIconsWin`) windowPref -remove AllIconsWin;
string $window = `window -title "All icons" -rtf 1 -widthHeight 840 550 AllIconsWin`;
columnLayout -adj 1;
$labels = `textFieldGrp -label "Resources: " -text "click icons to get icon names"`;
$scrollLayout = `scrollLayout -verticalScrollBarThickness 16 -h 500`;
rowColumnLayout -numberOfColumns 25;
string $icons[] = `resourceManager -nameFilter "*"`;