Important
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
// Writes link comment to text file | |
// Trigger: "A download has stopped" | |
// Has some settings, just search for "settings" in this code | |
// Main function that runs the script based on the early return principle | |
function run() { | |
// Early return if the download is not finished | |
if (!link.isFinished()) { | |
// console.log("Link is not yet downloaded"); | |
return; |
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
echo "# /data/system/devices/keylayout/**" >> /storage/emulated/0/Backups/keys.txt | |
cat /data/system/devices/keylayout/** >> /storage/emulated/0/Backups/keys.txt | |
echo "# /odm/usr/keylayout/**" >> /storage/emulated/0/Backups/keys.txt | |
cat /odm/usr/keylayout/** >> /storage/emulated/0/Backups/keys.txt | |
echo "# /system/usr/keylayout/**" >> /storage/emulated/0/Backups/keys.txt | |
cat /system/usr/keylayout/** >> /storage/emulated/0/Backups/keys.txt |
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
param ( | |
[Parameter(Mandatory=$false)] | |
[int]$Volume = 100 | |
) | |
try { Install-Module -Name AudioDeviceCmdlets } catch { Install-Module -Name AudioDeviceCmdlets -Scope CurrentUser } | |
function Get-DefaultAudioDevices { | |
return @{ |
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
console.log("custom.js START") | |
const customjs = { | |
author: "Bluscream", | |
date: "2025-04-02 23:17:32 GMT+1", | |
url: "https://gist.github.com/Bluscream/7842ad23efb6cbb73f6a1bb17008deed" | |
} | |
const steam = { |
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
from pyrobud import command, module | |
import re, json, http.client | |
class myTeamspeak(module.Module): | |
name = "myTeamspeak" | |
disabled = False | |
myts_login = { | |
'email': '', | |
'password': '', | |
} |
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
{ | |
"AutoStart": { | |
"client": "localhost:6742", | |
"custom": "", | |
"enabled": false, | |
"host": "0.0.0.0", | |
"port": "6742", | |
"profile": "backlight", | |
"setclient": true, | |
"setcustom": false, |
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
{ | |
"$schema": "http://json-schema.org/draft-06/schema#", | |
"$ref": "#/definitions/TranscriptResponse", | |
"definitions": { | |
"TranscriptResponse": { | |
"type": "object", | |
"additionalProperties": false, | |
"properties": { | |
"responseContext": { | |
"$ref": "#/definitions/ResponseContext" |
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
openapi: 3.0.0 | |
info: | |
title: YouTube Data API v3 | |
version: "3.0.0" | |
description: API for interacting with YouTube data | |
contact: | |
name: Google Developers | |
url: https://developers.google.com/ | |
license: | |
name: Apache License 2.0 |
NewerOlder