Skip to content

Instantly share code, notes, and snippets.

View psyburr's full-sized avatar
💩
(⊙.⊙(☉̃ₒ☉)⊙.⊙)

psyburr psyburr

💩
(⊙.⊙(☉̃ₒ☉)⊙.⊙)
  • Ray’s Boom Boom Room
  • USA
  • 02:50 (UTC -04:00)
View GitHub Profile
@CosmosisT
CosmosisT / CTS
Last active April 3, 2024 02:55
CosmosisT's TinyChat Script (CTS V1.8.65)
// ==UserScript==
// @name CosmosisT's TinyChat Script (CTS V1.8.65)
// @version 1.8.65
// @description Modified TinyChat - Best Scripts; prepare to be amazed.
// @author CosmosisT
// @url https://gist.github.com/CosmosisT
// @license Copyright (C) CosmosisT
// @icon https://i.imgur.com/XlkFjOK.png
// @match https://tinychat.com/room/*
// @match https://tinychat.com/*
@astamicu
astamicu / Remove videos from Youtube Watch Later playlist.md
Last active June 14, 2024 14:10
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();
@ntasos
ntasos / kdialog-open-files.lua
Last active May 16, 2024 18:58
KDialog-open-files, a lua script for mpv media player that uses KDE KDialog to open files, subtitles or URLs.
-- This is free and unencumbered software released into the public domain.
-- The software is provided "as is", without warranty of any kind.
-- Anyone is free to copy, modify, publish, use, compile, sell, or
-- distribute this software, either in source code form or as a compiled
-- binary, for any purpose, commercial or non-commercial, and by any means.
-- For more information, please refer to <http://unlicense.org/>
--
-- Use KDE KDialog to add files to playlist, subtitles to playing video or open URLs.
-- Based on 'mpv-open-file-dialog' <https://github.com/rossy/mpv-open-file-dialog>.
--
@ferventcoder
ferventcoder / NonAdmin.cmd
Last active May 6, 2024 22:08
Installing Software as a Non-Administrator Using Chocolatey
:: Pick one of these two files (cmd or ps1)
:: Set directory for installation - Chocolatey does not lock
:: down the directory if not the default
SET INSTALLDIR=c:\ProgramData\chocoportable
setx ChocolateyInstall %INSTALLDIR%
:: All install options - offline, proxy, etc at
:: https://chocolatey.org/install
@powershell -NoProfile -ExecutionPolicy Bypass -Command "(iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))) >$null 2>&1" && SET PATH="%PATH%;%INSTALLDIR%\bin"
@jdelamater99
jdelamater99 / AmazonSmile_redirect.user.js
Last active April 4, 2024 08:25
AmazonSmile Redirect (Greasemonkey Script)
// ==UserScript==
// @name AmazonSmile Redirect
// @namespace http://jdel.us
// @description Redirect Amazon to AmazonSmile
// @include http://*.amazon.*/*
// @include https://*.amazon.*/*
// @version 0.6
// @grant none
// @run-at document-start
// ==/UserScript==
@willurd
willurd / web-servers.md
Last active June 13, 2024 14:37
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@MohamedAlaa
MohamedAlaa / tmux-cheatsheet.markdown
Last active June 13, 2024 05:29
tmux shortcuts & cheatsheet

tmux shortcuts & cheatsheet

start new:

tmux

start new with session name:

tmux new -s myname