Skip to content

Instantly share code, notes, and snippets.

View robiot's full-sized avatar
🚀
Doesn't exist? Create it!

Elliot Lindberg robiot

🚀
Doesn't exist? Create it!
View GitHub Profile
@robiot
robiot / ometv.js
Last active June 28, 2025 03:50
OME.TV Camera Switcher that works with ex. OBS Virtual Camera
// 1. Open inspector with CTRL+SHIFT+I
// 2. Select the console tab in the top
// 3. Paste the script
// 4. Press enter
// 5. Hover over your own video, and there should be a video switcher that looks horrible but works.
const localVideo = document.getElementById("local-video");
if (localVideo) {
// Create a dropdown element for the camera switcher
@robiot
robiot / lunar-client-installer.sh
Last active October 7, 2021 13:39
Easy lunar client installer | Run with sudo
#!/bin/bash
pkgver=2.8.0
_pkgname=lunarclient
_srcdir=/tmp/lunar
_appimage="Lunar%20Client-${pkgver}.AppImage"
_appname="Lunar Client-${pkgver}.AppImage"
source="https://launcherupdates.lunarclientcdn.com/${_appimage}"
rm -rf "${_srcdir}"
text = "cute"; print('\n'.join([''.join([(text[(x-y) % len(text)] if ((x*0.05)**2+(y*0.1)**2-1)**3-(x*0.05)**2*(y*0.1)**3 <= 0 else ' ') for x in range(-25,30)]) for y in range(30,-30,-1)]))