Skip to content

Instantly share code, notes, and snippets.

@Xuerian
Xuerian / nebula-tv-filter-channels.user.css
Last active March 11, 2023 06:18
Nebula.tv - Filter Channels
/* ==UserStyle==
@name Nebula.tv - Filter Channels
==/UserStyle== */
/* Requires :has() selector support. As of 2023-03, Firefox requires "layout.css.has-selector.enabled" enabled in about:config */
@-moz-document domain("nebula.tv") {
div[role=listitem]:has(
a[href="/channel_username_here"],
@Xuerian
Xuerian / darktide_launch_to_roster.ahk
Last active February 9, 2023 00:47
Launch Darktide directly to character roster, skipping launcher and splash screens
; https://gist.github.com/Xuerian/c1aedc96911752fec49beb8f4eb55862
; This script waits for the Launcher to open, clicks Play, then skips the opening splash screens and "Press space to continue"
; Requires AutoHotKey from https://www.autohotkey.com/
; To have this script start automatically, open (Win+R) shell:startup and place the .ahk file there.
#NoEnv
#Warn
#SingleInstance force
#KeyHistory 0
SetTitleMatchMode, Fast
@Xuerian
Xuerian / vrising_solo_pause.ahk
Last active June 15, 2022 04:24
V Rising single-player pause and resume hotkey. Alt+P. Change hotkey on line 55
#NoEnv
#Warn
#SingleInstance force
; Disable keylogging
#KeyHistory 0
TrayReload()
{
Reload
}
@Xuerian
Xuerian / overframe-gg-delag.user.css
Last active October 1, 2021 20:35
Overframe.gg de-lag userstyle
/* ==UserStyle==
@name overframe.gg de-lag
@namespace github.com/openstyles/stylus
@version 1.0.0
==/UserStyle== */
@-moz-document domain("overframe.gg") {
div, html {
scrollbar-width: initial;
scrollbar-color: dark;
@Xuerian
Xuerian / Terraria_SimpleDig.ahk
Last active October 25, 2016 16:12
Simplify Terraria tunneling
/*
Hold Ctrl to left click constantly
Hold Ctrl+F in a direction to mine a simple 2x (Vertical) or 3x (Horizontal) tunnel
Adjust Delay (Milliseconds) to your current pick. (25 is for picksaw)
Why? I don't want to develop RSI any earlier than I have to.
*/
DigKey := "f"
Delay := 25