<?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: Kevin</title>
    <description>The latest articles on Forem by Kevin (@kevinagyeman).</description>
    <link>https://forem.com/kevinagyeman</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%2F3648625%2Fa05e5363-56b4-41bf-b20f-34758ddcc67a.png</url>
      <title>Forem: Kevin</title>
      <link>https://forem.com/kevinagyeman</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/kevinagyeman"/>
    <language>en</language>
    <item>
      <title>Tired of HTML date pickers making users click 50+ times to change a birth year?</title>
      <dc:creator>Kevin</dc:creator>
      <pubDate>Fri, 05 Dec 2025 23:51:02 +0000</pubDate>
      <link>https://forem.com/kevinagyeman/tired-of-html-date-pickers-making-users-click-50-times-to-change-a-birth-year-5eai</link>
      <guid>https://forem.com/kevinagyeman/tired-of-html-date-pickers-making-users-click-50-times-to-change-a-birth-year-5eai</guid>
      <description>&lt;p&gt;Hey DEV community! 👋&lt;/p&gt;

&lt;p&gt;I've been frustrated with &lt;code&gt;&amp;lt;input type="date"&amp;gt;&lt;/code&gt; UX—endless clicking through months/years for birth dates or appointments. Users hate navigating calendars for non-recent dates. So I created Easy Picker: clean select dropdowns for month/day/year (or custom formats). Vanilla JS/TS, zero deps, works everywhere.​&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Problem&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;!-- Looks innocent... --&amp;gt;
&amp;lt;input type="date"&amp;gt;
&amp;lt;!-- But selecting 1990? 420+ month clicks. Mobile nightmare. --&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;The Fix&lt;/strong&gt;&lt;br&gt;
Direct selects. No navigation hell.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import EasyPicker from '@kevinagyeman/easy-picker'

const picker = new EasyPicker('#date-picker', {
  returnFormat: 'iso',
  onChange: (isoString) =&amp;gt; console.log(isoString) // 2025-03-15T12:00:00.000Z
})
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



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

&lt;ul&gt;
&lt;li&gt;React/Vue/Svelte/vanilla compatible&lt;/li&gt;
&lt;li&gt;Timezone-safe (no off-by-one bugs)&lt;/li&gt;
&lt;li&gt;Formats: ISO/Date/timestamp/YY-MM-DD&lt;/li&gt;
&lt;li&gt;Tailwind/Bootstrap/CSS styling&lt;/li&gt;
&lt;li&gt;Full TypeScript​​&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Try it: &lt;code&gt;npm i @kevinagyeman/easy-picker&lt;/code&gt;&lt;br&gt;
Repo: &lt;a href="https://github.com/kevinagyeman/easy-picker%E2%80%8B" rel="noopener noreferrer"&gt;https://github.com/kevinagyeman/easy-picker​&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Open Questions for Feedback&lt;/strong&gt;&lt;br&gt;
This is v1—love your thoughts!&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Better mobile handling? Touch events?&lt;/li&gt;
&lt;li&gt;Time picker addition? Range support?&lt;/li&gt;
&lt;li&gt;Edge cases I'm missing (locales, leap years)?&lt;/li&gt;
&lt;li&gt;Bundle size optimizations?&lt;/li&gt;
&lt;li&gt;Framework wrappers needed?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Built it to solve a real pain in my projects. Would this help yours? Issues/PRs welcome! 🙏​&lt;/p&gt;

</description>
      <category>npm</category>
      <category>typescript</category>
      <category>webdev</category>
      <category>javascript</category>
    </item>
  </channel>
</rss>
