<?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: Nikunj Maheshwari</title>
    <description>The latest articles on DEV Community by Nikunj Maheshwari (@nikunj_maheshwari).</description>
    <link>https://dev.to/nikunj_maheshwari</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%2F3561173%2F03b978c3-70e5-4cd1-99c3-7322007f5d4e.jpg</url>
      <title>DEV Community: Nikunj Maheshwari</title>
      <link>https://dev.to/nikunj_maheshwari</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nikunj_maheshwari"/>
    <language>en</language>
    <item>
      <title>The Problem with Screenshots Isn't Storage. It's Memory.</title>
      <dc:creator>Nikunj Maheshwari</dc:creator>
      <pubDate>Wed, 05 Aug 2026 18:27:26 +0000</pubDate>
      <link>https://dev.to/nikunj_maheshwari/the-problem-with-screenshots-isnt-storage-its-memory-3g00</link>
      <guid>https://dev.to/nikunj_maheshwari/the-problem-with-screenshots-isnt-storage-its-memory-3g00</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Estimated reading time:&lt;/strong&gt; 4 min&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Your Screenshots Aren't Memories. They're Forgotten.
&lt;/h2&gt;

&lt;p&gt;Every day, we take screenshots.&lt;/p&gt;

&lt;p&gt;A coding trick we might need later. A recipe someone shared. A travel itinerary. A tweet with an interesting opinion. A meme. An interview question. A reminder.&lt;/p&gt;

&lt;p&gt;At that moment, every screenshot feels important.&lt;/p&gt;

&lt;p&gt;So we save it.&lt;/p&gt;

&lt;p&gt;And then... we almost never look at it again.&lt;/p&gt;

&lt;p&gt;After a few months, our gallery contains hundreds or even thousands of screenshots. We know the information is somewhere, but finding it is often harder than searching the internet again.&lt;/p&gt;

&lt;p&gt;That made me think about something.&lt;/p&gt;

&lt;p&gt;The problem isn't that we take too many screenshots.&lt;/p&gt;

&lt;p&gt;The problem is that we keep saving information, but almost never come back to it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Existing Solutions Don't Really Solve It
&lt;/h2&gt;

&lt;p&gt;Most gallery apps already provide folders, albums, search, and sometimes even OCR.&lt;/p&gt;

&lt;p&gt;Those features are useful, but they still expect us to remember what we're looking for.&lt;/p&gt;

&lt;p&gt;For example, suppose I remember saving a screenshot that explained a neat BFS trick.&lt;/p&gt;

&lt;p&gt;I probably don't remember:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;when I saved it,&lt;/li&gt;
&lt;li&gt;what file name it has,&lt;/li&gt;
&lt;li&gt;whether "BFS" even appears in the image,&lt;/li&gt;
&lt;li&gt;or which folder it belongs to.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I only remember the idea.&lt;/p&gt;

&lt;p&gt;Current search systems aren't designed for that kind of memory.&lt;/p&gt;

&lt;h2&gt;
  
  
  Screenshots Are More Than Images
&lt;/h2&gt;

&lt;p&gt;When I looked through my own screenshots, I noticed they weren't random images.&lt;/p&gt;

&lt;p&gt;They were things my past self thought were worth remembering.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Some contained programming notes.&lt;/li&gt;
&lt;li&gt;Some were university notices.&lt;/li&gt;
&lt;li&gt;Some were life hacks.&lt;/li&gt;
&lt;li&gt;Some were recipes.&lt;/li&gt;
&lt;li&gt;Some were reminders I forgot existed.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In other words, screenshots are becoming a personal knowledge base—but one that nobody can actually use efficiently.&lt;/p&gt;

&lt;h2&gt;
  
  
  What If Screenshots Behaved Like a Second Brain?
&lt;/h2&gt;

&lt;p&gt;Instead of treating screenshots as images, what if we treated them as knowledge?&lt;/p&gt;

&lt;p&gt;What if every screenshot could be understood instead of simply stored?&lt;/p&gt;

&lt;p&gt;What if I could ask questions like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"Show me the screenshot where I saved the BFS trick."&lt;/li&gt;
&lt;li&gt;"Find that paneer recipe I saved a few months ago."&lt;/li&gt;
&lt;li&gt;"What screenshots do I have about operating systems?"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of searching by keywords, I would simply search by memory.&lt;/p&gt;

&lt;p&gt;That idea eventually became a project I'm calling &lt;strong&gt;Breadcrumb&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The name comes from a simple thought: every screenshot is a breadcrumb your past self left behind, hoping your future self would find it again.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Goal
&lt;/h2&gt;

&lt;p&gt;I'm not trying to build another gallery app.&lt;/p&gt;

&lt;p&gt;I'm trying to build a system that understands screenshots, organizes them automatically, retrieves them intelligently, and eventually turns them into something that's actually useful instead of forgotten.&lt;/p&gt;

&lt;p&gt;This is going to be a long-term project, and I'll be documenting the entire journey—from the initial idea to the architecture, implementation, technical challenges, and everything I learn along the way.&lt;/p&gt;

&lt;p&gt;This article is just the beginning.&lt;/p&gt;

&lt;p&gt;The next article will focus on how I'm planning to design the system and why I think today's approach to screenshot search isn't enough.&lt;/p&gt;




&lt;p&gt;If you've ever taken a screenshot thinking, &lt;strong&gt;"I'll definitely need this later,"&lt;/strong&gt; only to never find it again, I'd love to hear your experience.&lt;/p&gt;

&lt;p&gt;I suspect I'm not the only one with this problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  Follow the Journey
&lt;/h2&gt;

&lt;p&gt;I'm documenting this project from idea to implementation. If you'd like to follow along, you can find me here:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;GitHub&lt;/strong&gt; – Source code and development progress&lt;br&gt;&lt;br&gt;
&lt;a href="https://github.com/markstone111" rel="noopener noreferrer"&gt;https://github.com/markstone111&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;LinkedIn&lt;/strong&gt; – Project updates and milestones&lt;br&gt;&lt;br&gt;
&lt;a href="https://www.linkedin.com/in/nikunjm111" rel="noopener noreferrer"&gt;https://www.linkedin.com/in/nikunjm111&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Portfolio&lt;/strong&gt; – Final case study and project showcase &lt;em&gt;(coming soon)&lt;/em&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://nikunjmaheshwari.vercel.app" rel="noopener noreferrer"&gt;https://nikunjmaheshwari.vercel.app&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;&lt;strong&gt;Building Breadcrumb&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;Part 1 — The Problem&lt;/em&gt;&lt;/p&gt;

</description>
      <category>learning</category>
      <category>productivity</category>
    </item>
    <item>
      <title>📚 Should I Bunk?</title>
      <dc:creator>Nikunj Maheshwari</dc:creator>
      <pubDate>Sun, 12 Oct 2025 21:39:35 +0000</pubDate>
      <link>https://dev.to/nikunj_maheshwari/should-i-bunk-4jph</link>
      <guid>https://dev.to/nikunj_maheshwari/should-i-bunk-4jph</guid>
      <description>&lt;p&gt;An intelligent mobile app that helps students decide whether to skip class. It uses a machine learning model to provide a prediction based on factors like current attendance, professor's strictness, and upcoming tests.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✨ Features&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;AI-Powered Predictions: Uses a logistic regression model to give a "Bunk" or "Don't Bunk" recommendation.&lt;br&gt;
Cross-Platform: Built with React Native (Expo), it runs on both iOS and Android from a single codebase.&lt;br&gt;
Simple Interface: Clean and intuitive UI to quickly input data and get a result.&lt;br&gt;
Deployable Backend: The Python Flask API is configured for easy deployment on Render.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/markstone111/Should_I_Bunk" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
