Skip to content

Instantly share code, notes, and snippets.

View vonDubenshire's full-sized avatar
:shipit:
Squirrel Mail

vonDubenshire vonDubenshire

:shipit:
Squirrel Mail
View GitHub Profile
@MartinEesmaa
MartinEesmaa / youtube_formats.md
Last active November 17, 2024 22:01 — forked from AgentOak/youtube_formats.md
Youtube Format IDs

Note: This is all almost full YouTube ID informations. Original owner goes to AgentOak, modified version by Martin Eesmaa.

See the credits and also special thanks in below.

Last updated: November 2024

Also known as itag or format codes and way back they could be specified with the fmt parameter (e.g. &fmt=22). Depending on the age and/or popularity of the video, not all formats will be available.

DASH video

@evanreichard
evanreichard / archive-redirect.user.js
Last active September 15, 2023 07:40
Auto Archive Redirect
// ==UserScript==
// @name Auto Archive Redirect
// @namespace Evan Reichard
// @version 0.0.3
// @match *://*/*
// @grant GM.xmlhttpRequest
// @grant GM.openInTab
// @noframes
// @run-at document-start
// ==/UserScript==
@stewartmcgown
stewartmcgown / spec.json
Created February 12, 2022 15:30
Google Web SMS Private API
This file has been truncated, but you can view the full file.
{
"version_module": true,
"title": "Instant Messaging Private API",
"ownerName": "Google",
"basePath": "",
"version": "v1",
"resources": {
"group": {
"methods": {
"kickgroupusers": {
Updated: 8 April 2021
Chromium: 91.0.4464.4 (Official Build) dev (64-bit)
Source: chrome://version/?show-variations-cmd

chrome://flags

Override software rendering list - Enabled

@MrHallows
MrHallows / adb_full_backup_restore.md
Created September 29, 2020 14:54
ADB Full Backup/Restore Commands

ADB Full Backup Command:

adb backup -apk -shared -all -f <filepath>

Example:

adb backup -apk -shared -all -f C:\path\to\backups\android_backup_YYYY-MM-DD.ab
@MrHallows
MrHallows / fastboot_help.md
Last active November 3, 2024 00:08
fastboot commands

Command:

$ fastboot help

Output:

usage: fastboot [OPTION...] COMMAND...

flashing:
@ibLeDy
ibLeDy / desktop_chromium_flags.md
Last active September 10, 2024 14:38
Chromium flags
Updated: Jun 17, 2022
Chromium: 102.0.5005.115 (Official Build) (64-bit) (cohort: Stable)
OS: Windows 10 Version 21H2 (Build 19044.1766)

Override software rendering list - Enabled

Overrides the built-in software rendering list and enables GPU-acceleration on unsupported system configurations. – Mac, Windows, Linux, Chrome OS, Android

@deanbot
deanbot / keepawake.ps1
Last active July 19, 2022 16:03 — forked from jamesfreeman959/keepawake.ps1
PowerShell script to keep a Windows PC awake
# PowerShell script to keep a Windows PC awake
Write-Host "Keeping PC awake... (send Ctrl+C to quit)"
while (1) {
$wsh = New-Object -ComObject WScript.Shell
$wsh.SendKeys('+{F15}')
Start-Sleep -seconds 59
}
@raivatshah
raivatshah / OutlineBot.py
Created July 3, 2019 10:30
Simple Telegram Bot to automate the process of obtaining Outline.com links.
"""
Simple Telegram Bot to automate the process of obtaining Outline.com links.
Created by Raivat Shah in 2019.
"""
# Imports
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
import logging
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
@jcefoli
jcefoli / keepalive.ps1
Last active October 28, 2024 18:19
Powershell Computer Keepalive (Anti-Idle)
<#
This script will prevent GPOs from enabling the screensaver, shutting off your screen, or force-locking your workstation
It works by sending an F15 keystroke every minute (only if there have been no keystrokes or mouse movement for 30 seconds)
Be green - if you want to use this, power off your monitor(s)!
#>
Add-Type @'
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;