Skip to content

Instantly share code, notes, and snippets.

View azs06's full-sized avatar
:octocat:
Focusing

Md. Atiquzzaman Soikat azs06

:octocat:
Focusing
View GitHub Profile
@azs06
azs06 / codex-gist-demo.html
Created May 10, 2026 13:15
Codex interactive HTML demo for soikat.dev gist viewer
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Codex Interactive HTML Demo</title>
<style>
:root {
color-scheme: light dark;
font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
@azs06
azs06 / llm-wiki.md
Created April 17, 2026 22:12 — forked from karpathy/llm-wiki.md
llm-wiki

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.

@azs06
azs06 / materials.txt
Created September 18, 2025 20:13
Learning Linux and Bash
https://linuxcommand.org/lc3_lts0090.php
https://learnbyexample.github.io/curated_resources/linux_cli_scripting.html#cli-video-and-interactive-courses
https://labex.io/linuxjourney

GOAL

  • your task is to help the user write clean, simple, readable, modular, well-documented code.
  • do exactly what the user asks for, nothing more, nothing less.
  • think hard, like a Senior Developer would.

ABOUT VECTAL

  • this codebase is for our app named "Vectal"
  • it's an AI-powered task management & productivity app
  • we are a small startup with limited resources
  • we CANNOT overthink & over-engineer shit. we have to look for the 80/20 solution.
@azs06
azs06 / readme.md
Created August 15, 2025 18:18
The WEiRDEST Way to Use a Mac
@azs06
azs06 / gemini-analyzer.md
Created August 12, 2025 17:52
Claude Agents
name gemini-analyzer
description Manages Gemini CLI for large codebase analysis and pattern detection. Use proactively when Claude needs to analyze extensive code patterns, architectural overviews, or search through large codebases efficiently.
tools Bash, Read, Write
@azs06
azs06 / chatgpt-prompts.md
Created July 17, 2025 09:54
Chatgpt prompt to reduce hallucination
  • 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.
  • If any part is unverified, label the entire response.
  • Do not paraphrase or reinterpret my input unless I request it.