Skip to content

Instantly share code, notes, and snippets.

View darxtorm's full-sized avatar

JD darxtorm

  • 18:13 (UTC +10:00)
View GitHub Profile
@PsychoSmiley
PsychoSmiley / lr_bridge.py
Created January 7, 2026 05:05
Local proxy Lovense Remote <-> Intiface Central; WebSocket bridge translates toy commands, runs on port 30010.
"""
Lovense Remote API -> Intiface Central Proxy - IP address in-game: 127.0.0.1
Translates Lovense HTTP commands to Buttplug WebSocket protocol.
"""
import asyncio, json, ssl, sys, tempfile, threading, os
from http.server import HTTPServer, BaseHTTPRequestHandler
for pkg in ["websockets", "cryptography"]:
try: __import__(pkg)
except ImportError:
@taskylizard
taskylizard / fmhy.md
Last active May 26, 2026 09:20
/r/freemediaheckyeah, in one single file (view raw)
@mrl22
mrl22 / move-storage.sh
Last active July 24, 2025 05:12
Bash script to move storage of all Proxmox Virtual Machines to different storage
#!/bin/sh
movefrom='micronssd'
moveto='wdredpro'
for vm in $(qm list | awk '{print $1}' | grep -Eo '[0-9]{1,3}');
do
for storage in $(qm config $vm | grep $movefrom: | awk '{print $1}' | grep -Eo '[a-z0-9]+');
do
echo Moving VM$vm Storage $storage