<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mahak Kankaria</title>
    <description>The latest articles on DEV Community by Mahak Kankaria (@mahak_kankaria_566c7c7070).</description>
    <link>https://dev.to/mahak_kankaria_566c7c7070</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3998316%2F8f8cb704-0ae5-49e8-8146-9ea632e9479a.png</url>
      <title>DEV Community: Mahak Kankaria</title>
      <link>https://dev.to/mahak_kankaria_566c7c7070</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mahak_kankaria_566c7c7070"/>
    <language>en</language>
    <item>
      <title>Building an AI-Powered Second Brain: What I Learned from the The Hangover Part AI Hackathon</title>
      <dc:creator>Mahak Kankaria</dc:creator>
      <pubDate>Sun, 05 Jul 2026 17:27:13 +0000</pubDate>
      <link>https://dev.to/mahak_kankaria_566c7c7070/building-an-ai-powered-second-brain-what-i-learned-from-the-the-hangover-part-ai-hackathon-80l</link>
      <guid>https://dev.to/mahak_kankaria_566c7c7070/building-an-ai-powered-second-brain-what-i-learned-from-the-the-hangover-part-ai-hackathon-80l</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;For years, we've been collecting information from everywhere-GitHub repositories, YouTube videos, articles, meeting notes, and random thoughts. The problem isn't capturing information anymore. It's finding the right piece of knowledge when you actually need it.&lt;/p&gt;

&lt;p&gt;During the The Hangover Part AI Hackathon, I wanted to explore a different question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;What if AI didn't just store memories, but actually understood how they're connected?&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That idea became &lt;strong&gt;Memzee&lt;/strong&gt;, an AI-powered second brain that converts scattered information into an interactive knowledge graph. But building the product taught me much more than implementing features.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Traditional note-taking applications are excellent at storing information. They're much less effective at answering questions like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"Where did I learn this?"&lt;/li&gt;
&lt;li&gt;"How are these two ideas connected?"&lt;/li&gt;
&lt;li&gt;"Which project used this technology?"&lt;/li&gt;
&lt;li&gt;"What did that YouTube video teach me?"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Most systems still rely on folders, tags, or keyword searches. Human memory doesn't.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Idea Behind Memzee
&lt;/h2&gt;

&lt;p&gt;Instead of organizing information manually, Memzee focuses on understanding relationships. Every memory becomes part of a connected graph.&lt;/p&gt;

&lt;p&gt;Users can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Capture thoughts&lt;/li&gt;
&lt;li&gt;Import GitHub repositories&lt;/li&gt;
&lt;li&gt;Import YouTube videos&lt;/li&gt;
&lt;li&gt;Explore connected entities&lt;/li&gt;
&lt;li&gt;Recall information using natural language&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The graph continuously evolves as new information is added.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Cognee?
&lt;/h2&gt;

&lt;p&gt;Cognee handled the part that interested me the most—treating information as structured knowledge rather than isolated text. Instead of building a retrieval pipeline from scratch, I could focus on creating the experience around it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Interactive visualization&lt;/li&gt;
&lt;li&gt;Timeline navigation&lt;/li&gt;
&lt;li&gt;Knowledge exploration&lt;/li&gt;
&lt;li&gt;Recall interface&lt;/li&gt;
&lt;li&gt;Import workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That allowed me to spend more time improving usability.&lt;/p&gt;




&lt;h2&gt;
  
  
  Biggest Engineering Challenges
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Knowledge Graphs Are Harder Than They Look
&lt;/h3&gt;

&lt;p&gt;Generating nodes is easy. Keeping the graph readable isn't. I quickly realized that as more information entered the system:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Nodes overlapped&lt;/li&gt;
&lt;li&gt;Edges became cluttered&lt;/li&gt;
&lt;li&gt;Navigation became confusing&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That forced me to rethink layout algorithms and graph interactions instead of simply rendering more data.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Deleting Knowledge Isn't Simple
&lt;/h3&gt;

&lt;p&gt;Removing a memory wasn't just deleting one record. The graph also had to stay consistent. That meant rebuilding relationships without leaving orphaned nodes or broken edges. Sometimes "forgetting" required more engineering than "remembering."&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Imports Needed Context
&lt;/h3&gt;

&lt;p&gt;A GitHub repository isn't useful because it's code. It's useful because of the knowledge inside its README. Similarly, YouTube videos became valuable once transcripts could be converted into connected information.&lt;/p&gt;

&lt;p&gt;The challenge wasn't importing content. It was making imported knowledge discoverable.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;This project changed how I think about AI products. I learned that:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AI isn't only about generating text.&lt;/li&gt;
&lt;li&gt;Retrieval matters as much as generation.&lt;/li&gt;
&lt;li&gt;Visualization dramatically improves understanding.&lt;/li&gt;
&lt;li&gt;Small UX improvements often create more value than adding another AI feature.&lt;/li&gt;
&lt;li&gt;Building an MVP means choosing what &lt;em&gt;not&lt;/em&gt; to build.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  What I'd Build Next
&lt;/h2&gt;

&lt;p&gt;If I continue developing Memzee, I'd focus on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;User authentication&lt;/li&gt;
&lt;li&gt;Private knowledge graphs&lt;/li&gt;
&lt;li&gt;PDF imports&lt;/li&gt;
&lt;li&gt;Website imports&lt;/li&gt;
&lt;li&gt;Better graph clustering&lt;/li&gt;
&lt;li&gt;Semantic filtering&lt;/li&gt;
&lt;li&gt;Collaboration&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Final Thoughts
&lt;/h2&gt;

&lt;p&gt;The biggest takeaway wasn't learning another framework. It was realizing that the future of personal knowledge isn't about taking more notes. It's about helping people connect what they already know.&lt;/p&gt;

&lt;p&gt;That idea is what inspired Memzee.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It Out
&lt;/h2&gt;

&lt;p&gt;You can explore Memzee and view the live project here: &lt;a href="https://memzee.vercel.app/" rel="noopener noreferrer"&gt;Memzee&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>showdev</category>
      <category>sideprojects</category>
    </item>
  </channel>
</rss>
