Skip to content

Instantly share code, notes, and snippets.

View alok-mishra's full-sized avatar

Alok Mishra alok-mishra

View GitHub Profile
@alok-mishra
alok-mishra / elements-flash-cards.html
Created November 3, 2025 22:44
Elements Table Flashcards
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Element Flashcards</title>
<style>
body {
font-family: "Poppins", sans-serif;
" Setup: Sync directly with public github gist:
" https://gist.github.com/alok-mishra/621491c3d158e0fa05089781266ff5e3
set nohud
set nosmoothscroll
set noautofocus
set autoupdategist "maybe working?
set typelinkhints
@alok-mishra
alok-mishra / trakt-remove-all-from-collection.js
Last active May 3, 2025 05:36
Remove all items from Trakt collection
// Removes all items from a page of the Trakt collection
// Run script from console of user's collection page
// Must be run on each page
$(".posters .grid-item").each(function() {
actionWatch($(this).closest('.grid-item'), 'collect', true)
})