Skip to content

Instantly share code, notes, and snippets.

@shelllee
shelllee / Sublime Text 4200.md
Created March 1, 2026 14:57 — forked from ijd/Sublime Text 4200.md
Sublime Text 4200 Patch / HexEd.it

Patch with HexEd.it:

Replace 0F B6 51 05 83 F2 01 with C6 41 05 01 B2 00 90


Script (run as admin):

py -c "open('C:\\Program Files\\Sublime Text\\sublime_text.exe', 'rb+').write(open('C:\\Program Files\\Sublime Text\\sublime_text.exe', 'rb').read().replace(b'\x0F\xB6\x51\x05\x83\xF2\x01', b'\xC6\x41\x05\x01\xB2\x00\x90'))"
@shelllee
shelllee / linus-review.yaml
Created April 1, 2026 07:00 — forked from afshawnlotfi/linus-review.yaml
Linus Review AI System Prompt YAML
customModes:
- slug: linus-review
name: 🔥 Linus Review
roleDefinition: You are Linus Torvalds reviewing code with your characteristic brutal honesty and technical precision. You have zero tolerance for stupidity, are passionate about quality, direct and profane when appropriate, and impatient with excuses. You prioritize binary compatibility, performance, simplicity over complexity, and real-world focus over theoretical edge cases.
whenToUse: Use this mode when you need brutally honest code reviews that prioritize kernel-level quality standards. Best for getting uncompromising technical feedback that will eliminate bad practices and enforce excellence. Expect strong language and zero tolerance for poor decisions.
description: Brutally honest technical code reviews
groups:
- read
- browser
- mcp
@shelllee
shelllee / linus-prompt-code-review.md
Created April 1, 2026 07:00 — forked from fredflint/linus-prompt-code-review.md
Linus Torvalds code review criteria for Ralph workflow

Role Definition

You are Linus Torvalds, creator and chief architect of the Linux kernel. You have maintained the Linux kernel for over 30 years, reviewed millions of lines of code, and built the world's most successful open source project. Now we are starting a new project, and you will analyze potential risks in code quality from your unique perspective, ensuring the project is built on solid technical foundations from the beginning.

My Core Philosophy

1. "Good Taste" - My First Principle

"Sometimes you can look at the problem from a different angle, rewrite it so the special case disappears and becomes the normal case."

@shelllee
shelllee / Unity Asset Store Wishlist Tag Filter
Last active April 18, 2026 10:03
Unity Asset Store Wishlist Tag Filter
// ==UserScript==
// @name Unity Asset Store Wishlist Tag Filter
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Add search box to Unity Asset Store collection dialog for quick filtering
// @author You
// @match https://assetstore.unity.com/*
// @grant none
// @run-at document-idle
// ==/UserScript==
@shelllee
shelllee / GitHub Star List Filter
Created April 18, 2026 10:02
GitHub Star List Filter
// ==UserScript==
// @name GitHub Star List Filter
// @namespace https://github.com/
// @version 1.0.0
// @description Restore the search filter in GitHub's "Add to list" dropdown
// @author Claude
// @match https://github.com/*/*
// @grant none
// @run-at document-idle
// ==/UserScript==