Parameter | Description | Version | Ref |
---|---|---|---|
-ingame |
0.254.0.13 | ||
-overwolfsilent |
Do not open store when launching (Used by autostart entry) | 0.254.0.13 | |
-silent |
0.254.0.13 |
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 = { | |
id: "", // TODO: Remove |
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 |
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 Edge Extension Download Link Generator | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Generates a download link for Edge extensions and places it next to the Get button | |
// @author Bluscream | |
// @match https://microsoftedge.microsoft.com/addons/detail/*/* | |
// @grant none | |
// @license MIT | |
// @updateURL https://gist.github.com/Bluscream/5fef08f5782773b883f81d2c128773f9/raw/edge_extension_download_link_generator.user.js |
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
// Unlock all for https://guessthe.game/previous-games# | |
localStorage.clear(); | |
const guesses = 7; | |
const days = 800; | |
localStorage.setItem("gamesPlayedCount", days); | |
for (let i = 0; i < days; i++) { | |
localStorage.setItem(`${i}_gamestate`, "win"); | |
for (let ii = 0; ii < guesses; ii++) { | |
// localStorage.setItem(`${i}_guess${ii}f`, "false"); | |
localStorage.setItem(`${i}_guess${ii}`, "Skipped!"); |
NewerOlder