<?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>Forem: Florin Sarca</title>
    <description>The latest articles on Forem by Florin Sarca (@therealsarin).</description>
    <link>https://forem.com/therealsarin</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3798990%2F01d1f035-5ffc-4c1c-8553-651ef6ac6691.jpg</url>
      <title>Forem: Florin Sarca</title>
      <link>https://forem.com/therealsarin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/therealsarin"/>
    <language>en</language>
    <item>
      <title>Construct Note: A Local-First, Privacy-Focused Kanban Desktop App</title>
      <dc:creator>Florin Sarca</dc:creator>
      <pubDate>Sun, 01 Mar 2026 00:41:12 +0000</pubDate>
      <link>https://forem.com/therealsarin/construct-note-a-local-first-privacy-focused-kanban-desktop-app-4jp9</link>
      <guid>https://forem.com/therealsarin/construct-note-a-local-first-privacy-focused-kanban-desktop-app-4jp9</guid>
      <description>&lt;p&gt;&lt;em&gt;This is a submission for the &lt;a href="https://dev.to/challenges/mlh-built-with-google-gemini-02-25-26"&gt;Built with Google Gemini: Writing Challenge&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built with Google Gemini
&lt;/h2&gt;

&lt;p&gt;I built &lt;strong&gt;Construct Note&lt;/strong&gt;, a fast, local-first Kanban and task management desktop application. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flvvj0iyvnzpx6gk5795d.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flvvj0iyvnzpx6gk5795d.gif" alt="Construct Note Demo" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Many modern productivity apps rely heavily on cloud syncing and subscriptions, which can be a privacy concern for users who want complete control over their own data. I wanted to build a Trello-like application that lives entirely on the user's machine, offering the same rich drag-and-drop experience without the data leaving the local file system.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Tech Stack:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; React, Vite, Tailwind/Vanilla CSS, and &lt;code&gt;@hello-pangea/dnd&lt;/code&gt; for fluid drag-and-drop mechanics.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend / Desktop wrapper:&lt;/strong&gt; Electron, Express (running locally inside the Electron main process), and &lt;code&gt;better-sqlite3&lt;/code&gt; for high-performance, synchronous database operations.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Distribution:&lt;/strong&gt; Packaged as a standalone Linux AppImage.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Key Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Unlimited Boards, Lists, and Cards.&lt;/li&gt;
&lt;li&gt;Full Markdown support for card descriptions (&lt;code&gt;react-markdown&lt;/code&gt;).&lt;/li&gt;
&lt;li&gt;Checklists, Card Notes, and the ability to link/relate cards to one another.&lt;/li&gt;
&lt;li&gt;Card templates for standardizing repetitive task creation.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Offline-by-default architecture:&lt;/strong&gt; Everything is saved to a local SQLite database (&lt;code&gt;constructnote.db&lt;/code&gt;) operating in WAL (Write-Ahead Log) mode for speed.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl44gdfockxrwaw4zee4p.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fl44gdfockxrwaw4zee4p.gif" alt="Adding a card" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What role did Google Gemini play?&lt;/strong&gt;&lt;br&gt;
I used Google Gemini as my AI pair-programmer throughout the majority of the development lifecycle. Gemini helped me:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Architect the Application:&lt;/strong&gt; I am very bad at planning, which is why I wanted my own little planning helper. Gemini helped me stay in scope and stick to a plan. I put my ideas into simple words and after a few prompts I was able to have a good folder structure to go by and an idea of the general layout with some good suggestions for imports.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database Design &amp;amp; Migrations:&lt;/strong&gt; Gemini wrote the SQLite schema and helped incrementally add new features (like milestones and accent colors).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Complex UI Interactions:&lt;/strong&gt; It assisted in wiring up the React drag-and-drop logic for reordering both lists and cards, ensuring optimistic UI updates matched the backend database state when I encountered some bugs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Packaging and Compilation:&lt;/strong&gt; When I ran into native Node module compilation errors trying to bundle &lt;code&gt;better-sqlite3&lt;/code&gt; for Linux, Gemini helped debug the build process and correctly configure the &lt;code&gt;asarUnpack&lt;/code&gt; bindings.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1tgpwxobqvlfe3p65fj7.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1tgpwxobqvlfe3p65fj7.gif" alt="Drag and drop demo" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

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

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Native Node Modules:&lt;/strong&gt; I gained a better understanding of how native C++ Node modules behave when packaged into an &lt;code&gt;.asar&lt;/code&gt; archive, and how to configure &lt;code&gt;electron-builder&lt;/code&gt; to correctly rebuild them for specific target platforms.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI Pair Programming:&lt;/strong&gt; Developing with Gemini changed how I approach roadblocks. Instead of spending hours scouring StackOverflow for edge cases (like React state mismatches during fast drag-and-drop reordering), I could bounce ideas off Gemini and implement robust solutions in minutes.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Google Gemini Feedback
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What worked well?&lt;/strong&gt;&lt;br&gt;
Gemini was surprisingly good at holding context of my project. I did not have to repeat myself too many times and I was able to actually progress much quicker in certain areas by having something to bounce ideas off rather than spending hours reading documentation and trying to figure out edge cases.&lt;/p&gt;

</description>
      <category>devchallenge</category>
      <category>geminireflections</category>
      <category>gemini</category>
    </item>
  </channel>
</rss>
