Note
This guide is for educational purposes only.
Follow these steps to retrieve your Discord account token:
- Open Discord Website:
// ==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== |
// ==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/* |
// ==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== | |
[ |
Such as Xcode, which is pretty important I've heard...
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
# 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 |
// ==UserScript== | |
// @name ChatGPT Remove Link Previews | |
// @namespace http://zod.tf/ | |
// @version 1.0.1 | |
// @description Disable link previews on ChatGPT interface | |
// @author zudsniper | |
// @icon https://chat.openai.com/favicon.ico | |
// @match https://chat.openai.com/* | |
// @grant none | |
// ==/UserScript== |
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.
# 10ZIPPER.ps1 | |
# v2.0.3 | |
# ----------- | |
# | |
# @zudsniper | |
# @openai | |
param( | |
[Parameter(Mandatory=$true)] | |
[Alias("s")] | |
[string[]]$source, |