Skip to content

Instantly share code, notes, and snippets.

@devbrother2024
devbrother2024 / claude-code-harness-workflow-prompts.md
Last active June 5, 2026 19:03
개발동생 - Claude Code 하네스 레거시 스캔 & 다이어트 워크플로우 프롬프트

개발동생 - Claude Code 하네스 레거시 스캔 & 다이어트 워크플로우 프롬프트

Claude Code Dynamic Workflows로 내 AI 코딩 하네스를 점검하고 정리하기 위한 프롬프트입니다.

이 프롬프트는 두 단계로 나누어 쓰는 것을 권장합니다.

  1. /harness-legacy-scan: 읽기 전용 진단
  2. /harness-diet: 승인된 low-risk 항목만 정리

삭제나 권한 변경보다 먼저 진단을 수행하는 흐름입니다. 모든 규칙이 레거시는 아니고, 실제 실수를 막는 안전장치는 유지해야 합니다.

@rveitch
rveitch / sass-7-1-pattern.scss
Last active June 5, 2026 19:02
Sass 7-1 Pattern
sass/
|
|– base/
| |– _reset.scss # Reset/normalize
| |– _typography.scss # Typography rules
| ... # Etc…
|
|– components/
| |– _buttons.scss # Buttons
| |– _carousel.scss # Carousel

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@Nikolaj-K
Nikolaj-K / semidecidable.py
Created August 23, 2021 02:30
A Turing machine abstraction for motivating the notion of a semi-decidable set.
"""
Code discussed in:
https://youtu.be/Ox0tD58DTG0
This video is mostly about understadning decidable vs. semi-decidable sets
and showing that they are not the same, i.e. there are undecidable but still semi-decidable.
We'll show how the Halting problem is of that type. It will be non-decidable by diagonalization
and we'll impement a general dovetailing_runing algorithm that makes it clear that it's semi-decidable.
"""
@LessUp
LessUp / glm-coding-plan-rush-helper.user.js
Last active June 5, 2026 18:41
⚡ GLM Coding Rush — 智谱编程助手一键抢购脚本 | Auto-Purchase Userscript for GLM Coding | 自动解锁售罄 · 高速重试 · 定时触发 · 支付保护 · 中英双语面板 | Auto-unlock sold-out · High-speed retry · Scheduled trigger · Payment guard · Bilingual panel | Tampermonkey/Violentmonkey | 点击 Raw 安装 · Click Raw to install
// ==UserScript==
// @name GLM Coding Rush - 智谱编程助手抢购脚本
// @namespace https://gist.github.com/LessUp
// @version 1.1.0
// @description 智谱 GLM Coding 一键抢购脚本 — 自动解锁售罄按钮 / 高速重试引擎 / bizId 双重校验 / 错误弹窗自动恢复 / 支付弹窗保护 / 秒级定时触发 / 可拖拽浮动面板
// @author LessUp
// @match *://www.bigmodel.cn/*
// @match https://bigmodel.cn/glm-coding*
// @run-at document-start
// @grant none
@win3zz
win3zz / README.md
Created August 20, 2024 08:31
Live2D Interactive Anime Character on a Website

Live2D Interactive Anime Character on a Website

Recording 2024-08-20 130401

You may have seen something like the above on websites (especially Chinese and Japanese). These are interactive 2D character animations that can be integrated into websites. They are designed to run on the client side using JavaScript and graphics assets with Live2D technology. The characters can move and respond to user interactions.

Here’s a basic idea of how you can add a Live2D widget to a website:

  1. You need a Live2D model file, which typically includes a set of files such as textures, model data, and animation settings. You can create your own using Live2D Cubism software. Many ready-made models are available here: https://github.com/evrstr/live2d-widget-models
@nmnmcc
nmnmcc / neovim.md
Created July 16, 2025 06:14
NeoVim Cheat Sheet

NeoVim Cheat Sheet

I. Basic Concepts

1. Modes

NeoVim is a modal editor, primarily featuring the following modes:

  • Normal Mode: The default mode for navigating, deleting, copying, and pasting text. Press Esc to return to this mode from others.
  • Insert Mode: Used for typing text. Enter it with keys like i, a, o.
@ahmedhosnypro
ahmedhosnypro / How to Fix Magisk App Not Detecting Root (When Device is Already Rooted).md
Created March 16, 2026 18:12
How to Fix Magisk App Not Detecting Root (When Device is Already Rooted)

How to Fix Magisk App Not Detecting Root (When Device is Already Rooted)

The Problem

You have a rooted device, and your granted apps still have root access, but the Magisk app itself says "N/A" for the installed version. It cannot grant root to new apps or manage modules.

This usually happens if you:

  • Accidentally uninstalled the "Hidden" Magisk app.
  • Cleared the Magisk app's data.
  • Updated/Reinstalled the Magisk APK, causing Android to assign it a new User ID (UID) that the background magiskd daemon doesn't recognize.