Skip to content

Instantly share code, notes, and snippets.

View zudsniper's full-sized avatar
🎲
snake eyes every time

zod zudsniper

🎲
snake eyes every time
View GitHub Profile
@zudsniper
zudsniper / cgpt-cleaner.user.js
Last active December 1, 2023 07:08
🧹 Tampermonkey Userscript that Cleans ChatGPT weird Markdown to GH Markdown
// ==UserScript==
// @name CGPT Markdown Cleaner
// @namespace http://gh.zod.tf/
// @version 1.9.4
// @description Convert GPT Markdown to Standard GitHub Flavor Markdown on OpenAI Chat
// @author zudsniper
// @match https://chat.openai.com/*
// @grant none
// ==/UserScript==
@oyepriyansh
oyepriyansh / DiscordToken.md
Last active April 19, 2025 16:42
How To Get Discord Account Token?

How to Get Discord Account Token?

Note

This guide is for educational purposes only.

Instructions

Follow these steps to retrieve your Discord account token:

  1. Open Discord Website:
@pjmore
pjmore / redirect.js
Created November 12, 2023 07:43
Tampermonkey old reddit redirect
// ==UserScript==
// @name Reddit Old Layout
// @namespace 9bf36c681d35d52913b3bda74ddf6127318ed7b0
// @version 0.1
// @description Forces usage of the old reddit version
// @author Tom Watson
// @match https://reddit.com/*
// @match https://www.reddit.com/*
// @match https://np.reddit.com/*
// @match https://amp.reddit.com/*
@zudsniper
zudsniper / PROPOSITIONAL_SYMBOLS_LATEX_OBSIDIAN.md
Last active April 19, 2025 17:36
📋 Propositional Logic symbols & their LaTeX formulas specifically for Obsidian flavor Markdown

obsidian.md markdown latex propositions

common propositional logic symbols for use in Obsidian markdown note-taking software - specifically for use with LaTeX - either inline ($..$) or equation ($$...$$)

  1. Conjunction (AND)

    • Symbol: ∧
    • Obsidian Markdown: $\land$ or $\wedge$
  2. Disjunction (OR)

  • Symbol: ∨
@msanders
msanders / old-reddit-redirect.user.js
Last active February 21, 2024 14:22
Userscript: Old Reddit Redirect
// ==UserScript==
// @name Old Reddit Redirect
// @description Redirects www.reddit.com to the old version of the website
// @downloadURL https://gist.githubusercontent.com/msanders/52700d5c5ed76f1114594ddb862b530e/raw/old-reddit-redirect.user.js
// @updateURL https://gist.githubusercontent.com/msanders/52700d5c5ed76f1114594ddb862b530e/raw/old-reddit-redirect.user.js
// @version 2023.10.19
// @run-at request
// ==/UserScript==
[
@zudsniper
zudsniper / MACOS_BYPASS_APPLOCK.md
Last active August 15, 2023 05:50
🍏 Guide to disabling SIP & editing an applications plist file to allow it to execute even if Apple said no. For MacOS Catalina 10.15.7, but may work on other versions.

MACOS BYPASS SOFT-LOCKING APPS

Such as Xcode, which is pretty important I've heard...

🟨 DISCLAIMER ⬛️

PERFORM THESE STEPS AT YOUR OWN RISK.

THIS GUIDE MAY INSTRUCT YOU TO VIOLATE APPLE'S OFFICIAL TERMS OF USE.
I IN NO WAY ENDORSE YOU DOING SO.
THIS GUIDE IS PRESENTED EXCLUSIVELY AS A PROOF OF CONCEPT
INTENDED ONLY FOR EDUCATIONAL / RESEARCH USE

@zudsniper
zudsniper / WIN11_AESTHETIC_DOWNGRADE.ps1
Created August 15, 2023 05:21
Change the main pain points changed in Windows 11 back to the way they were in Windows 10.
# PowerShell script to revert Windows 11 to Windows 10 aesthetics
# v0.0.1
# 2023-08-15
# Function to print colored messages
function Write-Color([string]$Message, [string]$Color) {
Write-Host $Message -ForegroundColor $Color
}
# Revert Right-Click Context Menu
@zudsniper
zudsniper / chatgpt_remove_link_previews.user.js
Last active August 2, 2023 18:55
ChatGPT broke link previews as of writing this (2023-08-02) so this userscript removes them as they're added.
@zudsniper
zudsniper / README.md
Created July 26, 2023 05:06 — forked from codelahoma/README.md
Automatically generate summaries of YouTube videos with transcriptions, using OpenAI's language model and create Markdown files with the output.

YouTube Video Summarizer (yt_summarize.py)

This gist contains a Python script that generates a transcript or summary of a YouTube video. It fetches video information, transcribes the audio using the Whisper ASR model, and generates a summary using the OpenAI language model.

Features

  • Fetch YouTube video information (title, description, channel title, etc.)
  • Transcribe video audio
  • Generate a summary of the video transcript
  • Save output as a markdown file
@zudsniper
zudsniper / 10ZIPPER.ps1
Last active August 17, 2023 05:35
⓽ 10ZIPPER.ps1 -> the final iteration of the (7+n)ZIPPER.ps1 saga, this will be used for data duplicate detection and archival onto an external drive for system recovery.
# 10ZIPPER.ps1
# v2.0.3
# -----------
#
# @zudsniper
# @openai
param(
[Parameter(Mandatory=$true)]
[Alias("s")]
[string[]]$source,