Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
mrstebo9309yIt's great when you have a database that has two different columns for different date formats 😅 I just think...why?
-
mrstebo9309yOr even better. A database that stores dates in some tables as MM/dd/yyyy, and some as dd/MM/yyyy 😱
-
philcr30579yBeing based in the uk I think everything date wise should be Utc. It annoys e the way that visual studio display dates in watched variables.
-
I just turn all dates into time in seconds from 1970 January. this makes it easy to do math on the dates or combine to dates to get a diffrence.
-
I just had a task the other day to build a carousel scheduler. All the dates had to be in EST not just EST but EST US. Anyways, thought it was going to be a piece of cake. NOPE. Was super annoying.
-
claesch769yDates and timezones are the worst. We have a global enterprise but store all dates in PT. Not even PST so it changes from -7 to -8 UTC depending on what part of the year a record was created. I spent so much time on dates for a while that I was dubbed "the timelord" for a while. The cool nickname was not worth the headache.
-
Rzilkha4079yFunny it goes on both types of dates , the programming as well as the socializing types
-
fuck the US date format. mm/dd/yy is the equivalent of doing countdown by saying "2, 1, 3"
-
not-xkcd19yTime since epoch, and/or frameworks that have tackled this problem for you are your friend. No need to reinvent the wheel.
Fuck dates and fuck date manipulation. Even when I think I get it right, I don't
undefined
swift
dates