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
local http = require("socket.http") | |
local ltn12 = require("ltn12") | |
local base_url = "https://httpbin.org/" | |
function deep_print(tbl) | |
for i, v in pairs(tbl) do | |
if type(v) == "table" then | |
deep_print(v) | |
else |
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 colorsys | |
import time | |
from random import random | |
from openrazer.client import DeviceManager | |
from pynput import mouse | |
razer_device_manager = DeviceManager() | |
for device in razer_device_manager.devices: |