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
@-moz-document domain("twitch.tv") { | |
.chat-line__message--emote-gigantified, .chat-line__message--emote-button-gigantified { | |
height: 2.8rem; | |
width: 2.8rem; | |
margin: inherit; | |
} | |
.chat-line__try-it-icon--button { | |
display: none !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
// ==UserScript== | |
// @name Twitch - Nullify Message Effects | |
// @version 0.1 | |
// @description Workaround to delete the <div> class that renders Message Effects power-up redeems and present them as a regular chat message, as of Jul 18 2024 | |
// @include https://*.twitch.tv/* | |
// @include https://twitch.tv/* | |
// @grant none | |
// ==/UserScript== | |
(function() { |
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 Twitch - Nullify Gigantify Emote | |
// @version 0.1 | |
// @description Workaround to undo the gigantic emote power-up and replace it with an emote of regular size, as of Jul 1 2024 | |
// @include https://*.twitch.tv/* | |
// @include https://twitch.tv/* | |
// @grant none | |
// ==/UserScript== | |
(function() { |
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
<cheat desc="Infinite Question Time"> | |
<comment>Ninja's ability is time-based, so it will activate on every correct answer.</comment> | |
<script state="run"> | |
<action condition="(maincpu.pb@FFE4A7==01 or maincpu.pb@FFE4A7==02 or maincpu.pb@FFE4A7==06) and maincpu.pb@FFE25E LT 03 and maincpu.pb@FF7F77==04">maincpu.pb@FF7F2F=00</action> | |
</script> | |
</cheat> |
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 off | |
set "params=%*" | |
REM https://stackoverflow.com/a/52517718 | |
cd /d "%~dp0" && ( if exist "%temp%\getadmin.vbs" del "%temp%\getadmin.vbs" ) && fsutil dirty query %systemdrive% 1>nul 2>nul || ( echo Set UAC = CreateObject^("Shell.Application"^) : UAC.ShellExecute "cmd.exe", "/k cd ""%~sdp0"" && ""%~s0"" %params%", "", "runas", 1 >> "%temp%\getadmin.vbs" && "%temp%\getadmin.vbs" && exit /B ) | |
REM https://www.andrewmunsell.com/blog/oculus-rift-bug-power-plan-configuration#the-fix | |
powercfg /SETACVALUEINDEX SCHEME_CURRENT SUB_PROCESSOR IDLEDISABLE 0 | |
powercfg /SETACTIVE SCHEME_CURRENT | |
exit |
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
iif(time / comp:GetPrefs().Comp.FrameFormat.Rate / 60 >= 60,string.format("%d:%02d:%02d",floor(time / comp:GetPrefs().Comp.FrameFormat.Rate / 3600),floor(time / comp:GetPrefs().Comp.FrameFormat.Rate / 60) % 60,floor(time / comp:GetPrefs().Comp.FrameFormat.Rate % 60)),string.format("%02d:%02d",floor(time / comp:GetPrefs().Comp.FrameFormat.Rate / 60) % 60,floor(time / comp:GetPrefs().Comp.FrameFormat.Rate % 60))) | |
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 viewer_count.txt to script path every 60 seconds for use with text source. | |
# | |
# Install pyTwitchAPI first: | |
# https://github.com/Teekeks/pyTwitchAPI | |
# pip3.6 install twitchAPI | |
import obspython | |
import os | |
from datetime import datetime | |
from twitchAPI.twitch import Twitch |