The Thoughts blog is a simple, file-based blog section where Arman shares thoughts on various topics, primarily focused on technology, AI, and personal projects.
Each post has its own route under /thoughts/[id]/.Current Post:/thoughts/1 - “Wearable AI that remembers everything I see and hear”Implementation: (thoughts/1/page.tsx)
function Page() { return ( <div className="md:w-3/5 w-4/5 flex flex-col gap-4"> {/* Breadcrumb */} <div className="relative mb-4"> <h1 className="absolute -left-5"> <Link className="hover:underline" href="/"> home </Link>{" "} / <Link className="hover:underline" href="/thoughts"> thoughts </Link>{" "} / <span className="text-orange-300">one</span> </h1> </div> {/* Post Header */} <div className="mt-4"> <h1 className="-left-5 relative text-lg"> Wearable AI that remembers everything I see and hear </h1> <p className="-left-5 relative text-gray-400">04/24/2025</p> </div> {/* Section Headers */} <div className="relative"> <p className="absolute -left-5">></p> <h1 className="text-indigo-300">motivation</h1> </div> {/* Post Content */} <p>In the last year, this project idea has repeatedly come to mind...</p> {/* More sections */} <div className="relative"> <p className="absolute -left-5">></p> <h1 className="text-indigo-300">progress and implementation</h1> </div> <p>Smart glasses can <i>easily</i> capture everything...</p> </div> );}
The first post discusses a wearable AI project:Title: Wearable AI that remembers everything I see and hear Date: 04/24/2025 Topics: AI, wearables, memory systems, RAG, graph memorySections:
motivation - Why the project matters
progress and implementation - Technical approach (RAG, long context, graph memory)
i could really use some help - Call for collaboration
The post includes external links (e.g., to Google’s Project Astra) and demonstrates the authentic, work-in-progress style that characterizes the blog.