Skip to content

Instantly share code, notes, and snippets.

View muradbu's full-sized avatar

Murad muradbu

View GitHub Profile
@muradbu
muradbu / CHATGPT VERSION (GPT-4 | GPT-4.1)
Created June 20, 2025 10:53 — forked from iamnolanhu/CHATGPT VERSION (GPT-4 | GPT-4.1)
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.
[global]
ioengine=libaio
direct=1
time_based
runtime=300
group_reporting
filename=/tmp/test_file
size=10G
[random-read]
@muradbu
muradbu / aur_speed_up.md
Created August 30, 2022 12:05 — forked from beci/aur_speed_up.md
Speed up compiling of AUR packages in arch linux

Edit /etc/makepkg.conf

replace in CFLAGS and CXXFLAGS to use the native one

-march=x86-64 -mtune=generic to -march=native

speed up build by set multiple threads

MAKEFLAGS="-j$(nproc)"