Skip to content

Instantly share code, notes, and snippets.

View durhambell's full-sized avatar

Durham Bell durhambell

View GitHub Profile
@Show-vars
Show-vars / mizar.js
Last active September 12, 2024 15:39
function start() {
var target = settings.read("send")[0];
var host = target.split(':')[0], port = target.split(':')[1]
send(host, port, "/mremote");
setInterval(function() {
send(host, port, "/mremote");
}, 9000);