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
| [2026-08-14 18:29:47.300376] [0x00000001f4145d80] [info] config: 'min_log_level' = 0 | |
| [2026-08-14 18:29:47.300908] [0x00000001f4145d80] [info] config: 'fec_percentage' = 50 | |
| [2026-08-14 18:29:47.300915] [0x00000001f4145d80] [info] config: 'global_prep_cmd' = [{"do":"","undo":""}] | |
| [2026-08-14 18:29:47.300922] [0x00000001f4145d80] [info] config: 'encoder' = videotoolbox | |
| [2026-08-14 18:29:47.300927] [0x00000001f4145d80] [info] config: 'audio_sink' = BlackHole 2ch | |
| [2026-08-14 18:29:47.300931] [0x00000001f4145d80] [info] config: 'address_family' = both | |
| [2026-08-14 18:29:47.301]: Info: Sunshine version: 2026.516.143833 commit: 14ffa6fdaa53f7b51512be2b3d24f3939695403c | |
| [2026-08-14 18:29:47.301]: Info: Package Publisher: LizardByte | |
| [2026-08-14 18:29:47.301]: Info: Publisher Website: https://app.lizardbyte.dev | |
| [2026-08-14 18:29:47.301]: Info: Get support: https://app.lizardbyte.dev/support |
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
| use strict; | |
| use warnings; | |
| use Win32::TieRegistry ( Delimiter => "/", ArrayValues => 0 ); | |
| sub _getMMDeviceEndpoints { | |
| # Reads audio endpoint names from the MMDevices registry, which is the backing | |
| # store for the Windows Core Audio COM API (IMMDeviceEnumerator/IMMDevice/IPropertyStore). | |
| # This is the exact same data we're already reading -- just via the documented | |
| # COM API instead of directly from the registry. | |
| # |
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
| #!/usr/bin/env python3 | |
| import polib | |
| import re | |
| import sys | |
| import os | |
| from collections import Counter | |
| def find_camel_case(text): | |
| """Finds camelCase variables/keys (e.g., userId).""" | |
| camel_case_pattern = re.compile(r'\b[a-z]+[A-Z][a-zA-Z]*\b') |
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
| // This is just a regex I found on the internet that allows you to detect emojis | |
| const emojisRegex = /(?:[\u2700-\u27bf]|(?:\ud83c[\udde6-\uddff]){2}|[\ud800-\udbff][\udc00-\udfff])[\ufe0e\ufe0f]?(?:[\u0300-\u036f\ufe20-\ufe23\u20d0-\u20f0]|\ud83c[\udffb-\udfff])?(?:\u200d(?:[^\ud800-\udfff]|(?:\ud83c[\udde6-\uddff]){2}|[\ud800-\udbff][\udc00-\udfff])[\ufe0e\ufe0f]?(?:[\u0300-\u036f\ufe20-\ufe23\u20d0-\u20f0]|\ud83c[\udffb-\udfff])?)*/g; | |
| // Add the styling required to fix emojis | |
| const css = document.createElement('style'); | |
| css.innerHTML = `.fixed-emoji { font-family: emoji; }`; | |
| document.head.appendChild(css); | |
| // https://byshynet.com/fixing-black-and-white-emojis-using-javascript/ | |
| function fixEmojis(selector) { |
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
| function buildSearch(search) { | |
| // Replace "ratio:4:3" meta by "4:3_aspect_ratio" tag | |
| search = search.replace(/(^| )ratio:(\d+:\d+)($| )/g, "$1$2_aspect_ratio$3"); | |
| return search; | |
| } | |
| function buildImageFromJson(img) { | |
| img.created_at = img.created_at["s"]; | |
| img.score = img.total_score; | |
| img.author = img.author.name; | |
| return completeImage(img, true); |
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
| // ==UserScript== | |
| // @name ESXi autofill credentials | |
| // @namespace https://10.200.200.*/ui/* | |
| // @version 0.1 | |
| // @description Autofills user and password inputs | |
| // @author Eduardo Mozat de Oliveira | |
| // @require https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js | |
| // @require https://gist.github.com/raw/2625891/waitForKeyElements.js | |
| // @include /^https?:\/\/(\d+\.){3}\d+\/ui\/.*/ | |
| // @grant none |
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 | |
| # Ruffle-Exporter ver. 0.0.2 | |
| # Requires ''ruffle'', ''imagemagick'', ''zenity'' | |
| REDEBUG_LOG="/tmp/ruffle-export.dbg" | |
| #REDEBUG_LOG="/dev/null" | |
| #F1=$HOME/.thumbnails | |
| #F2=$HOME/.cache/thumbnails | |
| #SAVE_FOLDER=$F1 |