Skip to content

Instantly share code, notes, and snippets.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@BlazerYoo
BlazerYoo / README.md
Created May 7, 2021 07:51 — forked from astamicu/Remove videos from Youtube Watch Later playlist.md
Script to remove all videos from Youtube Watch Later playlist

UPDATED 3.12.2020

The old version of youtube with "disable_polymer" is not working anymore, so the script also stopped working.

Thanks to JanTheDeveloper we have a new working script. Big up!

I just changed the '//span[contains(text(),"Watch later")]', to '//span[contains(text(),"Remove from")]', and it should work for any playlist, not just the watch later one. (thanks to hudsonite for the tip)

setInterval(function () {
 document.querySelector('#primary button[aria-label="Action menu"]').click();
@BlazerYoo
BlazerYoo / count_files.sh
Last active June 28, 2021 02:32
Terminal print number of files in current directory
python -c "import os;print(len(os.listdir(os.getcwd())))"
@BlazerYoo
BlazerYoo / rename_PNG.py
Last active May 14, 2021 10:12
Rename '.PNG' files made from Snipping Tool to '.png'
import os
for f in os.listdir():
if f.endswith('.PNG'):
os.rename(f,os.path.splitext(f)[0]+'.png')
@BlazerYoo
BlazerYoo / index.js
Last active June 17, 2021 23:40
ExpressJs static file server
const express = require('express');
const path = require('path');
const app = express();
const port = 3000;
app.use(express.static(path.join(__dirname + '/files')));
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname + '/files/index.html'));

Option 1: Command-line download extension as zip and extract

extension_id=jifpbeccnghkjeaalbbjmodiffmgedin   # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc" 
unzip -d "$extension_id-source" "$extension_id.zip"

Thx to crxviewer for the magic download URL.

@BlazerYoo
BlazerYoo / cli.bat
Created June 15, 2021 21:00
Get command line arguments in bash, batch, and powershell scripts
@echo off
echo %*
@BlazerYoo
BlazerYoo / path.bat
Created June 15, 2021 21:33
Append (add to end) to path
set PATH=%PATH%;C:\your\path\here\
@BlazerYoo
BlazerYoo / repl-repo1.sh
Last active June 16, 2021 22:24
Clone repo into replit without parent directory to immediately get coding [1]
#!/bin/bash
# first run chmod +x ./repl-repo1.sh
# then ./repl-repo.sh [link-to-repo.git]
echo '[1] Cloning repo...'
git clone $1 repo &> /dev/null
echo ' Cloned repo'
cd repo
echo '[2] Moving files...'
mv {.,}* .. &>/dev/null
echo ' Moved files'
@BlazerYoo
BlazerYoo / repl-repo2.sh
Last active July 9, 2021 07:54
Clone repo into replit without parent directory to immediately get coding [2]
read -p 'Repo git link: ' repolink;echo '[1] Cloning repo...';git clone $repolink repo &> /dev/null;echo ' Cloned repo';cd repo;echo '[2] Moving files...';mv {.,}* .. &>/dev/null;echo ' Moved files';cd ..;echo '[3] Removing parent directory...';rm -r repo;echo ' Removed parent directory'; echo 'repl repo initialization complete'