Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jul 31, 2026
b8806d4 · · Jul 31, 2026

History

46 Commits
Jul 31, 2026
Jul 31, 2026
Jul 31, 2026
Jul 31, 2026
Jul 31, 2026
Jul 31, 2026
Jul 31, 2026

Repository files navigation

Notebook

my take on Build In Public

live Demo

I buil this space to document my projects, experiments, failures, and the random ideas that keep me up at night. Instead of relying on random third party platforms for my journal.

whats in it

  • landing page: just an about me kinda page for some details about me Alt text

  • journal: my general thoughts, plans , and my project ideas will be entried here. Alt text

  • Lab Notes: Detailed plannng and breakdowns of my projects and research and experience. Alt text

  • Live Search & TagsTags: Instant filters through entries without page reloads.

  • Dark/Light Mode: Its lowk mandatory (AN UNSUNG RULE)

  • GitHub Integration: Fetches real-time repo and commit activity directly from the GitHub API.

How it works (adding new content in the site)

    {
     id: 6,
     type: "journal","lab-note"
     date: "YYYY-MM-DD",
     title: "Title",
     preview: "A short snippet of what the post is about...",
     tags: ["tag1", "tag2"],
     pinned: false,
     body: `

        

Actual post content written in HTML...

..</p>
` }

💻 Local Setup

Since there's no build step or backend, running this locally takes about two seconds.

  1. Clone the repo:

    git clone https://github.com/Diparsan79/notebook
  2. Navigate to the directory:

    cd notebook
  3. Open index.html in your browser, or spin up a quick local server (e.g., using VS Code Live Server or Python):

    python3 -m http.server 8000

    YAY!! the site is now locally running in your computer

This project was a great initiation of my web-dev journey. I learned many concepts and i am currently very motivated to making projects with my web-dev experience and FASTAPI knowledge..