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
// 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 |
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
#!/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}" |
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
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)])) |