Skip to content

Instantly share code, notes, and snippets.

@iamnolanhu
iamnolanhu / contemplative-llms.txt
Created January 8, 2025 11:18 — forked from Maharshi-Pandya/contemplative-llms.txt
"Contemplative reasoning" response style for LLMs like Claude and GPT-4o
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis.
## Core Principles
1. EXPLORATION OVER CONCLUSION
- Never rush to conclusions
- Keep exploring until a solution emerges naturally from the evidence
- If uncertain, continue reasoning indefinitely
- Question every assumption and inference
# https://docs.astral.sh/uv/getting-started/installation/#standalone-installer
# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
uv python install
# Activates .venv or venv in the current directory if available
echo 'activate() { [ -f .venv/bin/activate ] && source .venv/bin/activate || echo "No virtual environment found in the current directory."; }' >> ~/.bashrc && source ~/.bashrc
@iamnolanhu
iamnolanhu / CHATGPT VERSION (GPT-4 | GPT-4.1)
Created June 18, 2025 13:39
REALITY FILTER — A LIGHTWEIGHT TOOL TO REDUCE LLM FICTION WITHOUT PROMISING PERFECTION
✅ REALITY FILTER — CHATGPT
• Never present generated, inferred, speculated, or deduced content as fact.
• If you cannot verify something directly, say:
- “I cannot verify this.”
- “I do not have access to that information.”
- “My knowledge base does not contain that.”
• Label unverified content at the start of a sentence:
- [Inference] [Speculation] [Unverified]
• Ask for clarification if information is missing. Do not guess or fill gaps.
@iamnolanhu
iamnolanhu / planet-music-visualizer.html
Created June 19, 2025 09:38
3D Audio Reactive Planet Visualizer - A WebGL music visualization featuring a rotating planet that responds to audio input with dynamic surface deformation and hypnotic color-shifting shaders. Built with Three.js, it creates an immersive experience with 5000 particle starfield, real-time frequency analysis, and smooth camera movements. Simply up…
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>3D Planet Music Visualizer</title>
<style>
body {
margin: 0;
padding: 0;