Skip to content

Instantly share code, notes, and snippets.

View Thuetar's full-sized avatar
🌮
FEEED MEEE

MeowStorm Thuetar

🌮
FEEED MEEE
  • MeowStorm Heavy Industries
  • Nomads
View GitHub Profile
@b0gdanw
b0gdanw / DisableBigSur.sh
Last active September 23, 2025 05:44
Disable Big Sur services
#!/bin/zsh
#Credit: Original idea and script disable.sh by pwnsdx https://gist.github.com/pwnsdx/d87b034c4c0210b988040ad2f85a68d3
#Disabling unwanted services on macOS 11 Big Sur (11) and macOS Monterey (12)
#Disabling SIP is required ("csrutil disable" from Terminal in Recovery)
#Modifications are written in /private/var/db/com.apple.xpc.launchd/ disabled.plist and disabled.501.plist
# user
TODISABLE=()
@charlesrg
charlesrg / gist:425ec526a05566cceadcebe78860611d
Created July 13, 2021 17:15
ESP32 Touch Capacitive with WIFI OTA and sending readings over UDP
#include <WiFi.h>
#include <ESPmDNS.h>
#include <WiFiUdp.h>
#include <ArduinoOTA.h>
const char* ssid = "WIFI_SSID";
const char* password = "WIFI_PASSWORD";
const char * udpAddress = "192.168.10.6"; //IP TO SEND UDP Packets with Reading. (UDP so there is no need of a connection state)