This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tkinter as tk | |
from tkinter import ttk | |
from tkinter.font import Font | |
import serial | |
import re | |
import threading | |
import math | |
from matplotlib.figure import Figure | |
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg | |
import sys |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Arduino.h> | |
#include <ESP8266WiFi.h> | |
#include <ESPAsyncTCP.h> | |
#include <ESPAsyncWebServer.h> | |
#include <ESPFS.h> | |
#include <detail/mimetable.h> | |
AsyncWebServer server(80); | |
auto ssid = ""; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Smart Immich Docker Updater | |
# An intelligent update script for Immich | |
# | |
# This script checks the current version of your Immich installation, | |
# compares it with the latest version available on GitHub, | |
# and performs the update only if necessary. | |
# | |
# Usage: ./update-immich.sh [options] [path/to/docker-compose.yml] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$jsonFile = file_get_contents("region.json"); | |
$json = json_decode($jsonFile, true); | |
$eu = []; | |
$na = []; | |
$skip = []; | |
foreach ($json as $item){ |