Skip to content

Instantly share code, notes, and snippets.

View JongWasTaken's full-sized avatar

JongWasTaken JongWasTaken

View GitHub Profile
@famellad
famellad / frosty_on_ice_i_mean_linux.md
Last active March 8, 2026 16:34
How I got NFS:Heat UNITE running on Linux, this probably works on Steam Deck as well

What is this??

Ok first of all why are you here if you don't know what this is, touch grass.

So I was unable to find one guide that would walk me through the process of installing a NFS: Heat mod on Linux from start to finish without running into some issue without running into some issue or another, this is what worked for me, your mileage may vary, but even if you succeed I hope you learned something, got some inspiration to try something else, and keep trying, I wish you luck <3.

If you're still here I will assume you have no interest in touching grass and you want to read this full-of-nonsense guide on how to install UNITE on your Linux machine, where nothing is ever easy. Fear not, I gotcha.

Full disclaimer: This guide is the combination of two tutorials, and resources, I came up with very little of what you're about to read.

@alane019
alane019 / clear-watch-later-playlist.js
Last active January 18, 2025 21:42
Delete remove all videos from Youtube "Watch Later" playlist (working as of 12/14/2020)
// This script can be used to clear all videos from youtube's built-in "watch later" playlist which has a limit of 5,000 videos.
// Without this, you would need to click the remove button on each video in the list.
// Youtube made changes recently that caused errors for a previously working script.
// Script written by: janthedeveloper (https://github.com/JanTheDeveloper)
// Bookmark wrapper added by: shelldonhull (https://github.com/sheldonhull)
// Full conversation here: https://gist.github.com/astamicu/eb351ce10451f1a51b71a1287d36880f#file-readme-md
// 1. Save the javascript text below as a bookmark in google chrome(Simply replace the URL field in any existing bookmark, and give the bookmark any name)
@astamicu
astamicu / Remove videos from Youtube Watch Later playlist.md
Last active March 11, 2026 20:46
Script to remove all videos from Youtube Watch Later playlist

UPDATED 22.11.2022

It's been two years since the last update, so here's the updated working script as per the comments below.

Thanks to BryanHaley for this.

setInterval(function () {
    video = document.getElementsByTagName('ytd-playlist-video-renderer')[0];

 video.querySelector('#primary button[aria-label="Action menu"]').click();