This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Download ChatGPT Convo in Markdown | |
// @namespace http://tampermonkey.net/ | |
// @version 0.3 | |
// @description Adds a download chat button to download the current chatGPT conversation in markdown format. Original MD processing code by: u/Creative_Original918 from Reddit. Code from the following thread: https://www.reddit.com/user/Creative_Original918/ https://www.reddit.com/r/ChatGPT/comments/zm237o/comment/jdjwyyo/?utm_source=share&utm_medium=web2x&context=3 | |
// @author https://github.com/node0 and https://www.reddit.com/user/Creative_Original918/ | |
// @match https://chat.openai.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=openai.com | |
// @grant none | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Clarify precisely why ChatGPT won't answer questions | |
// @namespace | |
// @version 0.1 | |
// @description Finds and replaces text in specified elements on a webpage, and detects the appearance of new matching elements | |
// @match https://chat.openai.com/* | |
// @grant none | |
// @license MIT License | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
========================================================================================================== | |
#Gemini | |
========================================================================================================== | |
#ChatGPT | |
========================================================================================================== | |
#Gemini | |
Ensuring PowerShell DSC and Chocolatey are Installed | |
PowerShell DSC is a feature of PowerShell. If you have PowerShell installed on your Windows 10 system, DSC is likely already available. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Add Button Before Element - ChatGPT | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Add HTML button before an element on the page. | |
// @author Chase Harrison | |
// @match https://chat.openai.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
A really stupid python template language inspired by coffeekup, markaby. | |
Do not use this code, it will ruin your day. A byproduct of insomnia. | |
TL;DR | |
----- | |
This module defines a template language that allows us to do: | |
d = Doc() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from glob import glob | |
from PIL import Image, ImageDraw | |
from itertools import defaultdict | |
# Create matrix | |
matrix = defaultdict(dict) | |
lanes = [1, 2, 3, 4, 5, 6, 7] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
LEVEL = 9 | |
database = ARGV[0] | |
query = ARGV[1] | |
require 'zlib' | |
# Compression function. | |
def deflate(string) | |
z = Zlib::Deflate.new(LEVEL) |