Skip to content

Instantly share code, notes, and snippets.

View oscardianno's full-sized avatar

Oscar Mora oscardianno

View GitHub Profile
@shark0der
shark0der / README.md
Created November 14, 2022 09:09
Disable WhatsApp automatic emoji conversion

Disable WhatsApp automatic emoji conversion

The script works by patching the webpack chunks instead of manipulating the DOM.

@cgarz
cgarz / ytwls.py
Created April 29, 2020 03:43
Youtube watch later stats. Gets statistics and video links from your watch later playlist using python3, requests, BeautifulSoup and browser_cookie3 for authentication.
#!/usr/bin/env python3
# adapted from https://github.com/bulbipop/ytwlstats/blob/master/cmd.py
from bs4 import BeautifulSoup as bs
from datetime import datetime, timedelta
from argparse import ArgumentParser
from filecmp import cmp as compare
import requests
import browser_cookie3
@cgarz
cgarz / waReplayRes.vbs
Created April 29, 2020 03:00
Small vbscript to play WAgame replay files with Worms Armageddon at a specific resolution. Useful for recording.
'Define desired variables
exe_directory = "C:\Program Files (x86)\Steam\steamapps\common\Worms Armageddon"
exe_filename = "WA.exe"
res_x = 800
res_y = 600
'======== Script start ========
'Quit with error return (1) if not a .WAgame file
replay_file = WScript.Arguments(0)