Skip to content

Instantly share code, notes, and snippets.

-480p - Run tenfoot in 480p rather than 1080p
-720p - Run tenfoot in 720p rather than 1080p
-accesscode -
-all_languages - show longest loc string from any language
-bigpicture - Start in Steam Big Picture mode
-blefw -
-cafeapplaunch - Launch apps in a cyber cafe context
-candidates - Show libjingle candidates for local connection as they are processed
-ccsyntax - Spew details about the localized strings we load
-cef-delaypageload - Enable early-out for known page loads
Range Count
1060000000 1029447
1050000000 9997326
1040000000 9984846
1030000000 9981487
1020000000 9978689
1010000000 9978952
1000000000 9978825
990000000 9988693
980000000 9993601
2003-09-01 430,159
2003-10-01 164,740
2003-11-01 115,910
2003-12-01 125,061
2004-01-01 105,668
2004-02-01 85,764
2004-03-01 118,380
2004-04-01 126,378
2004-05-01 99,905
2004-06-01 84,291
@xPaw
xPaw / README.md
Last active January 13, 2024 23:40
Counter-Strike local server practice config
// ==UserScript==
// @name Advent of Code Improvements
// @namespace https://gist.github.com/xPaw/4fffaf776fe14d15c9602991f51dbfa1
// @updateURL https://gist.github.com/xPaw/4fffaf776fe14d15c9602991f51dbfa1
// @version 1.0
// @author xPaw
// @match https://adventofcode.com/*
// @icon https://adventofcode.com/favicon.png
// @grant GM_addStyle
// @run-at document-end
@xPaw
xPaw / steam_quick_queue.user.js
Last active November 21, 2023 00:15
⚠ This script has been integrated into SteamDB browser extension!
// ==UserScript==
// @name Steam Queue Auto Discoverer
// @description Discover the Steam queue three times to get the sale cards
// @version 2.3.0
// @namespace https://gist.github.com/xPaw/73f8ae2031b4e528abf7
// @icon https://store.steampowered.com/favicon.ico
// @match https://store.steampowered.com/explore*
// @grant none
// ==/UserScript==
@xPaw
xPaw / README.md
Last active November 11, 2023 11:32
Counter-Strike 2 Text Mod
// ==UserScript==
// @version 1.4.1
// @name Hide watched videos on YouTube
// @icon https://www.youtube.com/favicon.ico
// @match https://www.youtube.com/*
// @exclude https://www.youtube.com/embed/*
// @exclude https://www.youtube.com/api/*
// @namespace https://gist.github.com/xPaw/6324624
// @updateURL https://gist.github.com/xPaw/6324624/raw/YoutubeHideWatched.user.js
// @downloadURL https://gist.github.com/xPaw/6324624/raw/YoutubeHideWatched.user.js
( function()
{
const darkMode = document.getElementById( 'dark-mode-toggle' );
if( darkMode )
{
const isDarkSchemePreferred = () => window.matchMedia && window.matchMedia( '(prefers-color-scheme: dark)' ).matches;
darkMode.addEventListener( 'click', function( e )
{