DEV Community

Stipe Grbić
Stipe Grbić

Posted on • Originally published at stipe.xyz on

My first ASP.NET Core MVC app

As you might have noticed I created a Windows application to calculate time span between two dates Event Timing. Since I’m not always sitting by my Windows PC, I got the need to have this little calculator app available on the web. This evening the web app went from idea to production.

The most important motivation for this application was to quickly calculate how old is my baby in days. For this my Event Timing app worked great, with notifications, live tiles and all that, but with one major limitation that it was only available on Windows. Now since I’m spending more time with the baby, I’m not that much by the PC anymore. My phone is always near and I concluded if my application was available as a web app I could easily check the baby’s age in days wherever I am. This and my long time desire to try make an ASP.NET web application made me spend a few hours this evening to create this application.

Known limitations:

  • It doesn’t support different time zones. It always calculates based on UTC time.
  • Date format is not based on user’s region. Date format in the input field is formatted by users browser. The date in calculated page is formated in dd/MM/yyyy format as I think most of the people use that format.

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay