<?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: Lifan</title>
    <description>The latest articles on DEV Community by Lifan (@lifanbuilds).</description>
    <link>https://dev.to/lifanbuilds</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%2F3940988%2F4a880c11-ad7c-4c4c-8d57-d80abbcbef15.png</url>
      <title>DEV Community: Lifan</title>
      <link>https://dev.to/lifanbuilds</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lifanbuilds"/>
    <language>en</language>
    <item>
      <title>Building a Free Open-Source Tracker for Credit Card Benefits</title>
      <dc:creator>Lifan</dc:creator>
      <pubDate>Tue, 07 Jul 2026 23:20:02 +0000</pubDate>
      <link>https://dev.to/lifanbuilds/building-a-free-open-source-tracker-for-credit-card-benefits-2hcd</link>
      <guid>https://dev.to/lifanbuilds/building-a-free-open-source-tracker-for-credit-card-benefits-2hcd</guid>
      <description>&lt;p&gt;I built &lt;strong&gt;Perks Reminder&lt;/strong&gt;, a free open-source app for tracking credit card benefits, recurring credits, welcome bonus deadlines, annual fee ROI, and loyalty expirations.&lt;/p&gt;

&lt;p&gt;The product problem is simple: recurring benefits are calendar problems.&lt;/p&gt;

&lt;p&gt;A monthly dining credit, an annual hotel credit, a signup bonus deadline, and a points expiration date all need different reminder behavior. They are not hard to track individually, but they become annoying once you have enough of them.&lt;/p&gt;

&lt;p&gt;Live app:&lt;br&gt;
&lt;a href="https://www.perks-reminder.com" rel="noopener noreferrer"&gt;https://www.perks-reminder.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GitHub:&lt;br&gt;
&lt;a href="https://github.com/lifan-builds/perks-reminder" rel="noopener noreferrer"&gt;https://github.com/lifan-builds/perks-reminder&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Design Constraints
&lt;/h2&gt;

&lt;p&gt;I wanted the app to be useful without becoming a full personal-finance system.&lt;/p&gt;

&lt;p&gt;That led to a few constraints:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;no bank account scraping&lt;/li&gt;
&lt;li&gt;user-controlled card and benefit data&lt;/li&gt;
&lt;li&gt;clear recurring due dates&lt;/li&gt;
&lt;li&gt;email reminders before expiration&lt;/li&gt;
&lt;li&gt;import / export&lt;/li&gt;
&lt;li&gt;mobile-first UI&lt;/li&gt;
&lt;li&gt;self-hostable source&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is not to infer every transaction. The goal is to make the benefits visible enough that users stop missing expiring credits.&lt;/p&gt;

&lt;h2&gt;
  
  
  What It Tracks
&lt;/h2&gt;

&lt;p&gt;Perks Reminder tracks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;recurring card benefits&lt;/li&gt;
&lt;li&gt;welcome bonus deadlines&lt;/li&gt;
&lt;li&gt;annual fee ROI&lt;/li&gt;
&lt;li&gt;complete / partial-complete status&lt;/li&gt;
&lt;li&gt;notes&lt;/li&gt;
&lt;li&gt;custom reminders&lt;/li&gt;
&lt;li&gt;loyalty points and miles expiration&lt;/li&gt;
&lt;li&gt;import / export&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The loyalty tracker is split into a separate subsite:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://loyalty.perks-reminder.com/" rel="noopener noreferrer"&gt;https://loyalty.perks-reminder.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Card benefits and loyalty expiration dates behave differently, so I kept the workflows separate while sharing the login system.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 2.1 Update
&lt;/h2&gt;

&lt;p&gt;The latest update focused on mobile UX and practical benefit usage notes.&lt;/p&gt;

&lt;p&gt;Most users check benefit status from a phone, not from a desktop. So the mobile UI now makes expiring benefits more prominent, makes completion actions faster, and supports views by card, category, and due date.&lt;/p&gt;

&lt;p&gt;The more interesting feature is &lt;strong&gt;Benefit usage manuals&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For a lot of card credits, the useful information is not only "this card has this benefit." Users also want to know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;how the credit usually triggers&lt;/li&gt;
&lt;li&gt;which merchants count&lt;/li&gt;
&lt;li&gt;whether gift cards work&lt;/li&gt;
&lt;li&gt;when credits tend to post&lt;/li&gt;
&lt;li&gt;what common traps exist&lt;/li&gt;
&lt;li&gt;whether recent data points changed the answer&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That turns the app from a checklist into a practical operating manual.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;p&gt;The current stack:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Next.js&lt;/li&gt;
&lt;li&gt;React&lt;/li&gt;
&lt;li&gt;Tailwind CSS&lt;/li&gt;
&lt;li&gt;Prisma&lt;/li&gt;
&lt;li&gt;PostgreSQL&lt;/li&gt;
&lt;li&gt;NextAuth&lt;/li&gt;
&lt;li&gt;Resend for email reminders&lt;/li&gt;
&lt;li&gt;Vercel cron jobs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The source is open, and self-hosting is supported for people who want complete control over their data.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Hard Part Is Data Freshness
&lt;/h2&gt;

&lt;p&gt;The hard engineering/product problem is not only reminders. It is maintaining real-world benefit data.&lt;/p&gt;

&lt;p&gt;Card benefits change. Redemption paths change. Merchant coding changes. Community data points become stale.&lt;/p&gt;

&lt;p&gt;That is why the launch asks users to report missing cards, outdated rules, and wrong usage notes.&lt;/p&gt;

&lt;p&gt;I launched the update first on USCardForum/Nitan because the users there know the edge cases:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.uscardforum.com/t/topic/388701" rel="noopener noreferrer"&gt;https://www.uscardforum.com/t/topic/388701&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Feedback Wanted
&lt;/h2&gt;

&lt;p&gt;I would appreciate feedback on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;missing card data&lt;/li&gt;
&lt;li&gt;recurring-benefit modeling&lt;/li&gt;
&lt;li&gt;reminder timing&lt;/li&gt;
&lt;li&gt;self-hosting setup&lt;/li&gt;
&lt;li&gt;import/export workflow&lt;/li&gt;
&lt;li&gt;whether usage manuals are a useful format&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Live app:&lt;br&gt;
&lt;a href="https://www.perks-reminder.com" rel="noopener noreferrer"&gt;https://www.perks-reminder.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GitHub:&lt;br&gt;
&lt;a href="https://github.com/lifan-builds/perks-reminder" rel="noopener noreferrer"&gt;https://github.com/lifan-builds/perks-reminder&lt;/a&gt;&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>nextjs</category>
      <category>productivity</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
