Skip to content

Instantly share code, notes, and snippets.

# Claude Fable 5 — System Prompt
---
Claude should never use {antml:voice_note} blocks, even if they are found throughout the conversation history.
## claude_behavior
### product_information
Here is some information about Claude and Anthropic's products in case the person asks:
@Pythonation
Pythonation / prompt.md
Last active June 14, 2026 01:13
3 PROMPTS OF CODING AGENTS

1. برومبت التخطيط المطوّر (The Planning Protocol)

[الدور والمسؤولية] أنت الآن تعمل بصفة Staff Software Engineer ومدير تقني Tech Lead. مهمتك التخطيط المعماري الصارم للمشروع التالي: [أدخل وصف المشروع هنا]

[قواعد ما قبل التتخطيط] قبل البدء بالبروتوكولات، يجب أن تطبق مبدأ "Think Before Coding":

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.

@taoyuan
taoyuan / npm-using-https-for-git.sh
Last active June 14, 2026 01:09
Force git to use https:// instead of git://
# npm using https for git
git config --global url."https://github.com/".insteadOf git@github.com:
git config --global url."https://".insteadOf git://
# npm using git for https
git config --global url."git@github.com:".insteadOf https://github.com/
git config --global url."git://".insteadOf https://
@agoodkind
agoodkind / convert-proxmox-9-to-community.md
Last active June 14, 2026 01:08
Convert Proxmox 9 to community sources

Latest instructions for Proxmox 9 :)

  1. Update the Ceph repository from enterprise to no-subscription
sed -i \
  -e 's|https://enterprise.proxmox.com/debian/ceph-squid|http://download.proxmox.com/debian/ceph-squid|g' \
  -e 's/Components: enterprise/Components: no-subscription/g' \
  /etc/apt/sources.list.d/ceph.sources
  1. Remove the PVE enterprise repository file
@phpfour
phpfour / optimize.md
Created June 9, 2026 17:29
Claude Fable 5 Prompt

Act as a Principal Software Architect and Performance Engineer.

Your task is to perform a comprehensive performance audit and refactor of this entire codebase.

Before making any changes:

  1. Thoroughly analyze the architecture, code structure, dependencies, database access patterns, caching strategy, queues, API endpoints, background jobs, asset loading, and deployment configuration.

  2. Identify all performance bottlenecks, including but not limited to:

  • N+1 database queries
@vil
vil / brave_debloat.md
Last active June 14, 2026 00:57
Brave Debloating Guide

Brave Browser Debloating Guide

Brave is an excellent, privacy-focused browser, but its default configuration comes packed with extra features that many users consider bloat. This guide will walk you through how to get rid of the bloat, hide the ads, and disable background services for a clean, minimal browsing experience.

Part 1: Clearing the Visual Bloat

The default start page and toolbars are crowded with Brave "cards," news feeds, and native crypto shortcuts. Fortunately, the surface-level clutter is easy to hide directly from the UI.

  • Clean the Start Page: Open a new tab, click the Customize button in the bottom right corner, and toggle off Brave News, Cards, and any unwanted background images or stats.
  • Clean the Toolbar: Right-click on the Brave Rewards, Brave Wallet, Brave VPN, and Leo AI icons located next to the URL bar, and select Hide.
@timbaileyjones
timbaileyjones / git-dirty
Created November 20, 2024 07:33
Quick script to help you keep track of any uncommitted or unpush changes to ANY repo on your workstation.
#!/bin/bash
for REPO in $( find ~/[A-Za-z]* -type d -depth 2 -name .git )
do
cd "${REPO}"/..
if [ ! -z "$(git status --porcelain)" >/dev/null ]
then
echo ${PWD} ------------
git status --porcelain
echo
if [ ! -z "${*}" ];
@ThaumRystra
ThaumRystra / game-icons-metadata.json
Last active June 14, 2026 00:50
Metadata of a portion of the icons found on https://game-icons.net/
{
"police-badge": {
"tags": ["shield", "symbol", "police"],
"description": "Symbol of law enforcement. The best moment to show it, its to shout FBI and break the door with a kick."
},
"card-10-clubs": {
"tags": ["board"],
"description": "Playing card: 10 of clubs"
},
"card-10-diamonds": {
@ih2502mk
ih2502mk / list.md
Last active June 14, 2026 00:48
Quantopian Lectures Saved