Skip to content

Instantly share code, notes, and snippets.

@Bluscream
Bluscream / Set-RecordingVolumes.ps1
Created March 15, 2025 18:51
AudioDeviceCmdlets script to set all mic recording input volumes to 100%
param (
[Parameter(Mandatory=$false)]
[int]$Volume = 100
)
try { Install-Module -Name AudioDeviceCmdlets } catch { Install-Module -Name AudioDeviceCmdlets -Scope CurrentUser }
function Get-DefaultAudioDevices {
return @{
@Bluscream
Bluscream / custom.js
Last active April 5, 2025 10:07
VRCX custom files
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
@Bluscream
Bluscream / myTeamspeak.py
Created November 1, 2024 04:39
pyrobud custom_modules
from pyrobud import command, module
import re, json, http.client
class myTeamspeak(module.Module):
name = "myTeamspeak"
disabled = False
myts_login = {
'email': '',
'password': '',
}
@Bluscream
Bluscream / OpenRGB.json
Last active September 12, 2024 03:08
openrgb client server crash
{
"AutoStart": {
"client": "localhost:6742",
"custom": "",
"enabled": false,
"host": "0.0.0.0",
"port": "6742",
"profile": "backlight",
"setclient": true,
"setcustom": false,
@Bluscream
Bluscream / TranscriptResponse.schema.json
Last active November 9, 2024 23:51
Youtube Subtitles fetcher
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$ref": "#/definitions/TranscriptResponse",
"definitions": {
"TranscriptResponse": {
"type": "object",
"additionalProperties": false,
"properties": {
"responseContext": {
"$ref": "#/definitions/ResponseContext"
@Bluscream
Bluscream / youtube-data-v3.swagger.yaml
Created August 28, 2024 22:36
Youtube Data v3 API OpenAPI spec
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
@Bluscream
Bluscream / OverWolf.Client.BL.dll.MD
Last active January 21, 2025 10:49
Overwolf Launch Options (Command Line Arguments)

OverWolf.Client.BL.dll

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
@Bluscream
Bluscream / edge_extension_download_link_generator.user.js
Last active July 12, 2024 19:10
Edge Extension Download Link Generator
@Bluscream
Bluscream / README.md
Last active July 5, 2024 18:28
Overwolf WebApp Generator

Overwolf WebApp Generator

Generates simple Overwolf WebApps for displaying websites as Overlays

To use it, simply drop the php file somewhere on a webserver using PHP >8, download the accompanying template and extract it into a template/ subfolder next to the php file

@Bluscream
Bluscream / guessthe.game.js
Created June 23, 2024 19:19
Unlock all for guessthe.game
// 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!");