<?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: Srigouri Siddani</title>
    <description>The latest articles on DEV Community by Srigouri Siddani (@srigouri).</description>
    <link>https://dev.to/srigouri</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%2F4128466%2F380b2578-6427-4272-ac01-8fd1211c0f6e.png</url>
      <title>DEV Community: Srigouri Siddani</title>
      <link>https://dev.to/srigouri</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/srigouri"/>
    <language>en</language>
    <item>
      <title>What if a Journal Could Help You Reflect? Building MindMate with Google Gemini</title>
      <dc:creator>Srigouri Siddani</dc:creator>
      <pubDate>Wed, 16 Sep 2026 17:29:10 +0000</pubDate>
      <link>https://dev.to/srigouri/what-if-a-journal-could-help-you-reflect-building-mindmate-with-google-gemini-i4e</link>
      <guid>https://dev.to/srigouri/what-if-a-journal-could-help-you-reflect-building-mindmate-with-google-gemini-i4e</guid>
      <description>&lt;h1&gt;
  
  
  What if a Journal Could Help You Reflect?
&lt;/h1&gt;

&lt;p&gt;Student life can get noisy.&lt;/p&gt;

&lt;p&gt;Between classes, deadlines, assignments, exams, friendships, and everything happening in between, sometimes you just need a quiet place to put your thoughts.&lt;/p&gt;

&lt;p&gt;That idea became &lt;strong&gt;MindMate&lt;/strong&gt; — a simple AI-powered journaling application I built to make everyday journaling a little more meaningful.&lt;/p&gt;

&lt;p&gt;Instead of only storing what you write, MindMate uses &lt;strong&gt;Google Gemini&lt;/strong&gt; to provide a small moment of reflection after you journal.&lt;/p&gt;

&lt;h2&gt;
  
  
  🌱 The idea behind MindMate
&lt;/h2&gt;

&lt;p&gt;Journaling is already a way to slow down and understand your thoughts.&lt;/p&gt;

&lt;p&gt;I wanted to explore a simple question:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;What if a journal could help you reflect on what you wrote?&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;MindMate lets users write private journal entries and then receive an AI-generated reflection covering:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;💭 Mood&lt;/li&gt;
&lt;li&gt;📝 A short summary&lt;/li&gt;
&lt;li&gt;🔎 Main topics&lt;/li&gt;
&lt;li&gt;💜 A supportive suggestion&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal isn't to replace human connection or professional support.&lt;/p&gt;

&lt;p&gt;It's simply to create a small pause between &lt;strong&gt;“I wrote this”&lt;/strong&gt; and &lt;strong&gt;“I understand this.”&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  ✨ What I built
&lt;/h2&gt;

&lt;p&gt;MindMate combines a private journaling experience with an AI reflection layer.&lt;/p&gt;

&lt;h3&gt;
  
  
  🔐 Private by design
&lt;/h3&gt;

&lt;p&gt;Users sign in through &lt;strong&gt;Firebase Authentication&lt;/strong&gt;, while journal entries are stored in &lt;strong&gt;Cloud Firestore&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Firestore security rules restrict access so authenticated users can access their own journal data.&lt;/p&gt;

&lt;h3&gt;
  
  
  ✍️ Write naturally
&lt;/h3&gt;

&lt;p&gt;There is no complicated format to follow.&lt;/p&gt;

&lt;p&gt;Users can simply open their journal and write whatever is on their mind.&lt;/p&gt;

&lt;h3&gt;
  
  
  💭 AI-powered reflection
&lt;/h3&gt;

&lt;p&gt;After submitting an entry, MindMate sends the journal content to the backend, where &lt;strong&gt;Google Gemini&lt;/strong&gt; analyzes it and generates a structured reflection.&lt;/p&gt;

&lt;p&gt;The response includes the user's mood, a short summary, important topics, and a supportive suggestion.&lt;/p&gt;

&lt;h2&gt;
  
  
  🤖 Where Google Gemini comes in
&lt;/h2&gt;

&lt;p&gt;Google Gemini is the core AI component of MindMate.&lt;/p&gt;

&lt;p&gt;The application uses Google's GenAI SDK from the backend to send journal content for analysis.&lt;/p&gt;

&lt;p&gt;The basic flow looks like this:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Journal Entry → Node.js + Express Backend → Google Gemini → AI Reflection&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I kept the Gemini API key on the backend using environment variables rather than exposing it in the frontend.&lt;/p&gt;

&lt;p&gt;This was also an important part of the project for me: I didn't just want to make something that worked — I wanted to understand how to integrate an AI API responsibly into a real application.&lt;/p&gt;

&lt;h2&gt;
  
  
  🛠️ Under the hood
&lt;/h2&gt;

&lt;p&gt;Here is the technology stack behind MindMate:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Part&lt;/th&gt;
&lt;th&gt;Technology&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Frontend&lt;/td&gt;
&lt;td&gt;React + Vite&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Authentication&lt;/td&gt;
&lt;td&gt;Firebase Authentication&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Database&lt;/td&gt;
&lt;td&gt;Cloud Firestore&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Backend&lt;/td&gt;
&lt;td&gt;Node.js + Express&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;AI&lt;/td&gt;
&lt;td&gt;Google Gemini&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;API SDK&lt;/td&gt;
&lt;td&gt;Google GenAI&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Deployment&lt;/td&gt;
&lt;td&gt;Render&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;The frontend and backend are deployed separately, with the backend handling the Gemini API interaction.&lt;/p&gt;

&lt;h2&gt;
  
  
  👩‍💻 Building this as a student
&lt;/h2&gt;

&lt;p&gt;One of the most interesting parts of building MindMate wasn't just the AI integration.&lt;/p&gt;

&lt;p&gt;It was everything around it.&lt;/p&gt;

&lt;p&gt;I had to work with authentication, database security rules, API routes, environment variables, CORS, deployment, and connecting multiple services together.&lt;/p&gt;

&lt;p&gt;It made the project feel less like a small coding exercise and more like a real application.&lt;/p&gt;

&lt;p&gt;There were definitely moments where something broke and I had absolutely no idea why. 😭&lt;/p&gt;

&lt;p&gt;But fixing those problems was probably where I learned the most.&lt;/p&gt;

&lt;h2&gt;
  
  
  🔮 What's next?
&lt;/h2&gt;

&lt;p&gt;MindMate is still a small project, and there is a lot I would like to explore.&lt;/p&gt;

&lt;p&gt;Some ideas for future versions include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;More detailed journaling insights&lt;/li&gt;
&lt;li&gt;Long-term reflection patterns&lt;/li&gt;
&lt;li&gt;Better accessibility&lt;/li&gt;
&lt;li&gt;A more polished mobile experience&lt;/li&gt;
&lt;li&gt;More ways to organize and revisit journal entries&lt;/li&gt;
&lt;li&gt;Stronger privacy-focused features&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For me, the project is less about building a “perfect” AI product and more about exploring how AI can fit naturally into something people already do.&lt;/p&gt;

&lt;h2&gt;
  
  
  🌸 Try MindMate
&lt;/h2&gt;

&lt;p&gt;You can try the live application here:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://mindmate-1sxd.onrender.com" rel="noopener noreferrer"&gt;https://mindmate-1sxd.onrender.com&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;And the source code is available on GitHub:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/Srigouri08/MindMate" rel="noopener noreferrer"&gt;https://github.com/Srigouri08/MindMate&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Final thoughts
&lt;/h2&gt;

&lt;p&gt;MindMate started with a simple idea: &lt;strong&gt;make journaling feel a little more reflective.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Building it taught me that AI doesn't always need to be complicated or flashy.&lt;/p&gt;

&lt;p&gt;Sometimes, a useful AI experience can start with something as simple as giving someone a better way to understand what they already wrote.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Build small. Learn loudly. ✦&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;MindMate is a student-built project and is not a substitute for professional mental-health care.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>gemini</category>
      <category>react</category>
    </item>
  </channel>
</rss>
