Skip to content

Instantly share code, notes, and snippets.

View boomsya's full-sized avatar

Nick boomsya

  • Ukraine, Kyiv
  • 03:53 (UTC +02:00)
View GitHub Profile
@ryanlua
ryanlua / fritzing-download.md
Last active December 15, 2025 20:16
Free download of Fritzing using the official download links
@boomsya
boomsya / CreateV3KEThumbnail.py
Last active June 28, 2025 14:11
Enabling Ender 3 V3 KE Model Preview (Thumbnail) With Cura 5+
# Cura V3KE Thumbnail creator
# Kolio ([email protected])
#
# This only works with Cura 5.0+
import base64
from UM.Logger import Logger
from cura.Snapshot import Snapshot
from PyQt6.QtCore import QByteArray, QIODevice, QBuffer
@elktros
elktros / Arduino_Interrupts_Button_Interrupt_Debounce.ino
Created June 29, 2018 08:04
Interrupt based Button sketch with debounce for Arduino Interrupts Tutorial.
int ledPin = 13;
int buttonPin = 2;
int ledToggle;
int previousState = HIGH;
unsigned int previousPress;
volatile int buttonFlag;
int buttonDebounce = 20;
void setup()
@odan
odan / xampp_php7_xdebug.md
Last active October 13, 2025 22:45
Installing Xdebug for XAMPP