Skip to content

Instantly share code, notes, and snippets.

// ==UserScript==
// @name Claude Plus
// @namespace https://gist.github.com/PeronGH/209678c5ea0f228344ea2c76bb5e9850
// @version 1.0.3
// @description Enhance your Claude experiences
// @author Peron
// @match https://claude.ai/chats
// @match https://claude.ai/chat/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=claude.ai
// @grant GM_registerMenuCommand
@schacon
schacon / better-git-branch.sh
Created January 13, 2024 18:41
Better Git Branch output
#!/bin/bash
# Colors
RED='\033[0;31m'
GREEN='\033[0;32m'
NO_COLOR='\033[0m'
BLUE='\033[0;34m'
YELLOW='\033[0;33m'
NO_COLOR='\033[0m'
@ryanrudolfoba
ryanrudolfoba / SteamOS-Recovery-Downloader-and-Flasher.sh
Created January 9, 2024 21:04
Script for SteamOS to easily download and flash the latest SteamOS Recovery Image to a USB device
#!/bin/bash
# SteamOS Recovery Downloader and Flasher
# script by ryanrudolf
# https://github.com/ryanrudolfoba
# https://youtube.com/@10minutesteamdeckgamer
#
# script will create the directory - ~/SteamOS-Recovery-Downloader and automatically download the latest SteamOS Recovery Image.
# script will perform a md5 check to make sure that download is not corrupted and finally flash the image to the USB device.
# if there are multiple USB devices, the script will exit immediately. Plug in a single USB device that you want to flash and re-run the script.
#
@wesbos
wesbos / logger.js
Created January 8, 2024 15:55
console.log line numbers in Node.js
// Use like this: node --import logger.js yourapp.js
import path from 'path';
const { log } = console;
[`debug`, `log`, `warn`, `error`, `table`, `dir`].forEach((methodName) => {
const originalLoggingMethod = console[methodName];
console[methodName] = (...args) => {
const originalPrepareStackTrace = Error.prepareStackTrace;
Error.prepareStackTrace = (_, stack) => stack;
@kawainime
kawainime / awesome-ai-tools.md
Last active April 15, 2024 05:31
awesome-ai-tools
@EstebanMqz
EstebanMqz / Settings.md
Last active April 15, 2024 01:03
Settings.md

@Mvcvalli
Mvcvalli / Useful Websites.
Last active April 9, 2024 04:31
A long list of websites that I have kept bookmarked on my device for years now, I've finally decided to clear out my bookmarks. I am going to be adding links to all the websites that I either find useful or have found useful in the past. Something being on this list is not an endorsement.
https://wiby.me/ - Minimalist search engine.
https://searx.space/ - Metasearch engines.
https://newpipe.net/ - Alternative Youtube frontend.
https://freetubeapp.io/ - Alternative Youtube frontend.
https://github.com/libre-tube/LibreTube - Alternative Youtube frontend.
https://odysee.com/ - Youtube alternative: LBRY/Odysee.
https://codeberg.org/librarian/librarian - Alternative LBRY/Odysee frontend.
https://www.reciperadar.com/ - Search recipes by ingredients.
https://based.cooking/ - Minimalist, adfree and unintrustive recipe website.
https://getcomics.info/ - Downloading comics.
@OdatNurd
OdatNurd / text_highlight.py
Last active January 17, 2023 19:13
Simple Text Highlight Plugin
import sublime
import sublime_plugin
import functools
import re
# The key the key that we use to add regions for the word currently under the
# cursor (when that is turned on), the style of the regions added, and the
# scope that represents the color to use when words are highlighted.
CURRENT_WORD_KEY='_sel_word'
;~The script needs to be run at an elevated level- this takes care of that
if (! A_IsAdmin){ ;http://ahkscript.org/docs/Variables.htm#IsAdmin
Run *RunAs "%A_ScriptFullPath%" ; Requires v1.0.92.01+
ExitApp
}
@ChandanShakya
ChandanShakya / Dark.user.js
Last active July 11, 2023 18:17
Stripped Dark Reader UserScript (Global Dark Mode)
// ==UserScript==
// @name Dark Reader (Unofficial)
// @icon https://darkreader.org/images/darkreader-icon-256x256.png
// @namespace DarkReader
// @description Inverts the brightness of pages to reduce eye strain
// @version 4.7.15
// @author https://github.com/darkreader/darkreader#contributors
// @homepageURL https://darkreader.org/ | https://github.com/darkreader/darkreader
// @run-at document-end
// @grant none