Skip to content

Rosetta

Why "Rosetta"?

The Rosetta Stone was a groundbreaking artifact that unlocked the understanding of ancient Egyptian hieroglyphs, enabling humanity to bridge the gap between lost and known languages. Similarly, this repository, Rosetta, serves as a tool for unlocking and sharing knowledge—bridging my personal learning with the wider community.

Just as the Rosetta Stone revealed complex systems of understanding, this project aspires to organize, manage, and share insights in a structured, reusable way. It's not just a repository; it's a gateway to learning, collaboration, and discovery.

How Do I Take Note?

flowchart TD
    random(Random thought?)
    yes_random(Yes)
    no_random(No)
    daily(Daily log)
    new_note(Create a new note)
    is_finished(Finished writing?)
    yes_finished(Yes)
    no_finished(No)
    inbox(Keep it in the inbox)
    move(Move it to respective folder)

    random --> yes_random
    random --> no_random
    yes_random --> daily
    no_random --> new_note
    new_note --> is_finished
    is_finished --> yes_finished
    is_finished --> no_finished
    yes_finished --> move
    no_finished --> inbox
    inbox --> is_finished