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 / gptConvo2MD.js
Created February 12, 2024 14:40
🛩️ portable script to instantly download chatgpt conversation as markdown by pasting script into chromium devtools. AUTHOR @Creative_Original918 on Reddit
/**
* ALL CREDIT TO @Creative_Original918 on reddit for this!
* https://old.reddit.com/r/ChatGPT/comments/zm237o/save_your_chatgpt_conversation_as_a_markdown_file/jdjwyyo/
*/
function SaveChatGPTtoMD() {
const chatMessages = document.querySelectorAll(".text-base");
const pageTitle = document.title; const now = new Date(); const dateString = `${now.getFullYear()}-${(now.getMonth() + 1).toString().padStart(2, '0')}-${now.getDate().toString().padStart(2, '0')}-${now.getHours().toString().padStart(2, '0')}-${now.getMinutes().toString().padStart(2, '0')}-${now.getSeconds().toString().padStart(2, '0')}`;
let fileName = "ChatGPT log - " + pageTitle + ' - ' + dateString + ".md";
let markdownContent = "";
@alexchexes
alexchexes / chatgpt_ui_fix.user.js
Last active December 2, 2025 08:51
ChatGPT web-interface width fix (and other UI improvements)
// ==UserScript==
// @name ChatGPT CSS fixes
// @version 2025-11-30
// @description Adjusts the ChatGPT web UI for convenience: wider chat area, colored message bubbles, clearer code blocks, multi-line history items, and a few other tweaks for heavy ChatGPT use. ❤️ If you like this, consider buying me a coffee: ko-fi.com/alexchexes ❤️
// @updateURL https://gist.github.com/alexchexes/d2ff0b9137aa3ac9de8b0448138125ce/raw/chatgpt_ui_fix.user.js
// @downloadURL https://gist.github.com/alexchexes/d2ff0b9137aa3ac9de8b0448138125ce/raw/chatgpt_ui_fix.user.js
// @author alexchexes
// @website https://ko-fi.com/alexchexes
// @namespace http://tampermonkey.net/
// @match https://chat.openai.com/*
@zudsniper
zudsniper / GlobalProtect-Portal-Linux.README.md
Last active January 22, 2024 13:45 — forked from iamdylanngo/GlobalProtect-Portal-Linux.readme
🌍 Setup Guide for GlobalProtect Portal on Linux

Setup Guide for Cisco GlobalProtect VPN on Linux

written by @dylanngo95
(styled by @zudsniper)

1️⃣ Setup GlobalProtect

sudo apt update -y && sudo apt upgrade -y
@mouiserat
mouiserat / get_giphy_link.user.js
Last active December 28, 2023 14:11
🍴 fork of userscript to get the damn normal gif URL from giphy...
@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==
@priyanzsh
priyanzsh / DiscordToken.md
Last active November 25, 2025 20:04
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 October 31, 2025 21:47
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