Skip to content

Instantly share code, notes, and snippets.

@junebug12851
junebug12851 / readme.md
Last active November 9, 2025 11:57
Extract all Discord emojis and stickers from all servers

Important Note!

Doing this requires running a script inside Discord, historically Discord has allowed these perfectly fine but it was for advanced people only and Discod discovered non-advanced users were copying and pasting random scripts people gave them which ended up being malicious and harmful to their account.

Discord has since blocked access to scripts unless you enable a hidden setting. The script below is open source and commented. Anyone is welcome to verify the legitimacy of it. It's very simple in how it works. However if you proceed further and enable custom scripts, I highly reccomend to disable it afterwards unless you know what you are doing. There's a reason Discord disabled this feature, don't even run scripts without knowing what they do first.

@huntrar
huntrar / full-disk-encryption-arch-uefi.md
Last active November 9, 2025 11:55
Arch Linux Full-Disk Encryption Installation Guide [Encrypted Boot, UEFI, NVMe, Evil Maid]

Arch Linux Full-Disk Encryption Installation Guide

This guide provides instructions for an Arch Linux installation featuring full-disk encryption via LVM on LUKS and an encrypted boot partition (GRUB) for UEFI systems.

Following the main installation are further instructions to harden against Evil Maid attacks via UEFI Secure Boot custom key enrollment and self-signed kernel and bootloader.

Preface

You will find most of this information pulled from the Arch Wiki and other resources linked thereof.

Note: The system was installed on an NVMe SSD, substitute /dev/nvme0nX with /dev/sdX or your device as needed.

@AndrewAltimit
AndrewAltimit / !README.md
Last active November 9, 2025 11:54
Manim MCP Integration

MCP Server Manim Integration

A complete implementation guide for integrating Manim (Mathematical Animation Engine) with MCP (Model Context Protocol) servers, enabling AI assistants to create programmatic animations and visualizations.

Example Output

Nanite System
@AndrewAltimit
AndrewAltimit / !README.md
Last active November 9, 2025 11:54
Claude Code and Gemini CLI Integration

Gemini AI Integration MCP Server

A Model Context Protocol (MCP) server that integrates Google's Gemini AI for code review, technical consultation, and AI-assisted development workflows. This server provides seamless integration with Claude Code and other MCP-compatible clients.

Usage

@mathix420
mathix420 / medium.user.js
Last active November 9, 2025 11:44
Bypass Medium Paywall - Working late 2023 - Greasy Fork, Violentmonkey, Tampermonkey - Click the RAW button to install
// ==UserScript==
// @name Medium Paywall Bypass
// @namespace Violentmonkey Scripts
// @run-at document-start
// @match *://*.medium.com/*
// @match *://medium.com/*
// @match *://*/*
// @grant none
// @version 2.4
// @inject-into content
@wjkoh
wjkoh / grugbraindev_ko.md
Last active November 9, 2025 11:41
그럭 뇌 개발자: 자각 있는 작은 뇌처럼 생각하기 위한 평신도 안내서

Important

This is an unofficial Korean translation of The Grug Brained Developer by Carson Gross.

grug

그럭 뇌 개발자: 자각 있는 작은 뇌처럼 생각하기 위한 평신도 안내서

| 상품

소개

@Tom-208
Tom-208 / HH-game-script
Last active November 9, 2025 11:40
HH game script - Season version
This file has been truncated, but you can view the full file.
// ==UserScript==
// @name Hentai Heroes++ (OCD) Season version
// @namespace https://gist.githubusercontent.com/Tom-208/
// @description Adding things here and there in the Hentai Heroes game.
// @version 0.89.2
// @match https://*.hentaiheroes.com/*
// @match https://*.haremheroes.com/*
// @match https://*.gayharem.com/*
// @match https://*.comixharem.com/*
@serafdev
serafdev / install-docker-armbian.sh
Created August 23, 2023 00:29
Install Docker on Armbian
apt-get remove docker docker-engine docker.io containerd runc
apt-get install ca-certificates curl gnupg lsb-release
mkdir -p /etc/apt/keyrings
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
apt update
apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin