Commit for Gitea

This commit is contained in:
DuOtto
2026-04-28 12:14:58 +02:00
parent 225ecc2e17
commit a12182baa2
116 changed files with 2630 additions and 381 deletions
+8
View File
@@ -0,0 +1,8 @@
import socket, struct, time
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.sendto(
struct.pack("<4sBIQB", b"HAND", 1, 123, int(time.time()*1000), 0),
("127.0.0.1", 9000)
)
print("sent")