<?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: Dex Ter</title>
    <description>The latest articles on DEV Community by Dex Ter (@dex_ter_0a0ec84d04c611a10).</description>
    <link>https://dev.to/dex_ter_0a0ec84d04c611a10</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%2F2662338%2F76c1ecad-de4f-4edc-a2c9-58c0b65c6649.jpg</url>
      <title>DEV Community: Dex Ter</title>
      <link>https://dev.to/dex_ter_0a0ec84d04c611a10</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dex_ter_0a0ec84d04c611a10"/>
    <language>en</language>
    <item>
      <title>The Hidden Cost of Checking Nepali Dates as a Developer</title>
      <dc:creator>Dex Ter</dc:creator>
      <pubDate>Wed, 15 Apr 2026 03:10:07 +0000</pubDate>
      <link>https://dev.to/dex_ter_0a0ec84d04c611a10/the-hidden-cost-of-checking-nepali-dates-as-a-developer-41kn</link>
      <guid>https://dev.to/dex_ter_0a0ec84d04c611a10/the-hidden-cost-of-checking-nepali-dates-as-a-developer-41kn</guid>
      <description>&lt;p&gt;As a daily life of Developer we often spend mainly our time with Vs Code, Terminal, and other stuffs i.e. mostly with terminal and as i notice , one small thing kept happening repeatedly:&lt;/p&gt;

&lt;p&gt;Someone would ask:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;“What’s the Nepali date today?”&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;And then the usual flow would begin:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;someone pauses what they’re doing think&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;often opens a browser and searches for Hamro Patro&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;checks the date&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;comes back to the terminal or wherever they are like vs code, IDE or something&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It doesn’t sound like a big issue.&lt;/p&gt;

&lt;p&gt;But over time, it felt wrong.&lt;/p&gt;

&lt;h1&gt;
  
  
  The real problem wasn’t the date
&lt;/h1&gt;

&lt;p&gt;It was the interruption.&lt;/p&gt;

&lt;p&gt;As a developers, we live inside the terminal:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;logs running&lt;/li&gt;
&lt;li&gt;services restarting&lt;/li&gt;
&lt;li&gt;APIs being debugged&lt;/li&gt;
&lt;li&gt;Constant context in the command line&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now imagine breaking that flow just to check something as simple as a date.&lt;/p&gt;

&lt;p&gt;It’s not the time it takes.&lt;/p&gt;

&lt;p&gt;It’s the fact that you had to leave your environment.&lt;/p&gt;

&lt;h1&gt;
  
  
  “Why not just use date?”
&lt;/h1&gt;

&lt;p&gt;That was my first thought too.&lt;/p&gt;

&lt;p&gt;But quickly, it doesn’t solve the actual problem.&lt;/p&gt;

&lt;p&gt;The default date command:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;only gives Gregorian calendar&lt;/li&gt;
&lt;li&gt;doesn’t support Nepali (Bikram Sambat) dates&lt;/li&gt;
&lt;li&gt;doesn’t fit into a Nepali developer workflow&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So the “quick check” is no longer quick.&lt;/p&gt;

&lt;p&gt;You still end up leaving the terminal.&lt;/p&gt;

&lt;h1&gt;
  
  
  So I built NEPKAL
&lt;/h1&gt;

&lt;p&gt;I didn’t start with the idea of building a tool.&lt;/p&gt;

&lt;p&gt;I started with a frustration:&lt;/p&gt;

&lt;p&gt;“Why do I need to leave my terminal for something this small?”&lt;/p&gt;

&lt;p&gt;That’s how NEPKAL was born—a simple CLI tool for Nepali date.&lt;/p&gt;

&lt;h1&gt;
  
  
  What it looks like
&lt;/h1&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%2Fz6pls9zs80dah8fht0q7.png" 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%2Fz6pls9zs80dah8fht0q7.png" alt=" " width="427" height="229"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;No browser.&lt;/p&gt;

&lt;p&gt;No tab switching.&lt;/p&gt;

&lt;p&gt;No context loss.&lt;/p&gt;

&lt;p&gt;NO internet required&lt;/p&gt;

&lt;p&gt;Just instant output inside the workflow.&lt;/p&gt;

&lt;h1&gt;
  
  
  Why this matters (at least to me)
&lt;/h1&gt;

&lt;p&gt;NEPKAL is not about calendars.&lt;/p&gt;

&lt;p&gt;It’s about small friction in developer workflows.&lt;/p&gt;

&lt;p&gt;We usually focus on big things:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;system design&lt;/li&gt;
&lt;li&gt;performance&lt;/li&gt;
&lt;li&gt;scalability&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But ignore the tiny interruptions that happen dozens of times a day.&lt;/p&gt;

&lt;p&gt;One browser switch doesn’t matter.&lt;/p&gt;

&lt;p&gt;But ten of them do.&lt;/p&gt;

&lt;h1&gt;
  
  
  Is this tool necessary?
&lt;/h1&gt;

&lt;p&gt;Honestly—not for everyone.&lt;/p&gt;

&lt;p&gt;If you don’t work with Nepali dates, you’ll never need it.&lt;/p&gt;

&lt;p&gt;But if you do, it removes a very small but constant annoyance from your daily flow.&lt;/p&gt;

&lt;p&gt;And sometimes, that’s enough reason to build something.&lt;/p&gt;

&lt;h1&gt;
  
  
  Final thought
&lt;/h1&gt;

&lt;p&gt;Most developer tools don’t exist because something is impossible.&lt;/p&gt;

&lt;p&gt;They exist because something is slightly annoying, repeated often enough, and simple enough to fix.&lt;/p&gt;

&lt;p&gt;NEPKAL came from exactly that kind of annoyance.&lt;/p&gt;

</description>
      <category>cli</category>
      <category>productivity</category>
      <category>tooling</category>
    </item>
  </channel>
</rss>
