_____ _____ _____ _____ _ _ ______ _____ _ _
/ ____|_ _| __ \ __ \| | | | ____|/ ____| | | |
| (___ | | | | | | | | | |__| | |__ | (___ | |__| |
\___ \ | | | | | | | | | __ | __| \___ \| __ |
____) |_| |_| |__| | |__| | | | | |____ ____) | | | |
|_____/|_____|_____/|_____/|_| |_|______|_____/|_| |_|
ARCHIVE // 2026
"A thought can travel further than its thinker.
A sentence can reach someone years after it was written.
An idea can cross a lifetime without ever meeting the person who created it."
This is my little corner of the internet.
Not a portfolio.
Not a resume.
Not a collection of things designed to prove something.
Just a place where I can put things that I don't want to disappear.
- Thoughts I've had.
- Things I've learned.
- Questions I haven't answered.
- Ideas that kept me awake.
- Experiences that changed the way I see the world.
And perhaps, someday, something here might mean something to someone else.
I have always believed that experiences become more valuable when they are shared.
The Articles are my attempt to document the things I discover along the way.
- Some will be about technology and building things.
- Some will be about design, creativity, and the internet.
- Some will be about things I've learned from people, failures, books, places, and simply being alive.
I don't want to write only about the finished product.
The confusion before clarity.
The mistakes behind the result.
The thoughts that changed my mind.
The little discoveries that seemed insignificant at the time, but eventually became part of who I am.
This is an archive of becoming.
The Wall is something a little different.
It is an open, endless space for human thought. A place where ideas can exist without needing to belong to a particular time, profession, or person.
- Some thoughts belong to people who shaped the world.
- Some belong to people whose names history forgot.
- Some belong to strangers who happened to pass through this website.
- And some belong to me.
They all share the same space.
Because an idea does not become meaningful simply because of the name attached to it.
We spend our lives collecting things:
Memories · Stories · Knowledge · Experiences · Ideas
And eventually, we leave.
But perhaps leaving does not have to mean disappearing completely.
A thought can travel further than its thinker.
A sentence can reach someone years after it was written.
An idea can cross a lifetime without ever meeting the person who created it.
That is what The Wall is for.
You can leave something here:
- A thought.
- A question.
- A lesson.
- A strange observation.
- Something you believe.
- Something you recently understood.
If I find something worth keeping, it becomes part of The Wall—a small digital footprint of a person who was here.
I like the idea of the internet as an open world.
Not a feed designed to keep you scrolling.
Not an algorithm deciding what deserves your attention.
Just a vast space where people can create things and leave them behind. A place where you can stumble upon something you weren't looking for:
- A sentence written by someone you've never met.
- A photograph from another part of the world.
- An idea from someone who lived hundreds of years ago.
- A thought from a stranger who visited this website yesterday.
And suddenly, something that belonged to another person's life becomes a small part of yours.
I want this website to feel like that: something you explore rather than consume.
There is something beautiful about leaving evidence that you were here.
Not for fame.
Not to be remembered by everyone.
Just to know that somewhere, something you thought, built, or learned might continue existing after the moment has passed.
- Maybe someone will read an article years from now.
- Maybe someone will discover a thought on The Wall when they needed it.
- Maybe someone will disagree with something I wrote and think about it differently.
- Maybe none of that happens.
That's okay too. The point is that it exists.
Because we are temporary, but what we give to one another doesn't always have to be.
If you are reading this, you have already become a small part of this place.
You may never know me.
I may never know you.
And yet, for a brief moment, something that came from my life has reached yours.
I think that is one of the most beautiful things about being human:
- We inherit the thoughts of people we never met.
- We build upon things we did not create.
- We learn from lives we never lived.
- And then, eventually, we add something of our own.
Perhaps that is all any of us can really do.
src/
├── app/
│ ├── layout.jsx # 15px site frame, Lenis wrapper, theme context
│ ├── page.jsx # Editorial Home with deck parallax & canvas
│ ├── articles/page.jsx # Chronological year/month timeline archive
│ ├── article/[id]/ # Dynamic SSG MDX reader with streaming skeleton
│ ├── the-wall/page.jsx # Infinite 2D thought universe with circle packing
│ └── api/search/ # Supabase pgvector semantic search + fallback
├── content/
│ └── articles/ # Markdown / MDX source files
├── views/
│ ├── Home.jsx # Hero particle text, deck parallax, featured
│ ├── Blogs.jsx # Filterable category tabs & year accordions
│ ├── Article.jsx # 3-column layout, scroll spy TOC, reading progress
│ └── TheWall.jsx # 3D flippable nodes, liquid lens blur, physics
├── components/
│ ├── Navbar.jsx # Brutalist navigation, theme switcher (Light/Dark/Red)
│ ├── LiquidHover.jsx # WebGL fluid distortion on image interactions
│ ├── WavesBackground.jsx # Animated undulating canvas waves
│ └── Footer.jsx # Swiss grid footer with live clock & telemetry
└── lib/
├── mdx.js # Gray-matter MDX reader & date parser
├── supabase.js # Vector store integration
└── embeddings.js # Semantic embedding generation
# Clone repository
git clone https://github.com/your-username/blog.git
cd blog
# Install dependencies
npm install
# Run development server with Turbopack
npm run dev
# Open http://localhost:3000 in your browser