Load in codes dating date
23-Nov-2019 01:16
Editorial Comment: One of the reasons I did this web site is because of things just like the photo to the right - Misinformation!So the plant code to the right is "B6" = Michelin in Spartanburg, SC, USA - and the size code is "D0" = 175/65R13 - and the exact tire is identified by "A83X" The format is week/week/year/year or week/week/year. Starting in the year 2000, the date coding used was 4 digits. 19 are transition years, so you will find both 3 and 4 digits used in tires produced in that time frame.Also do not assume that everyone uses this coding system.I am aware that many European based tire manufacturers use a different system.
Basically this is a "choose your own adventure" dating style game that will have a different outcome depending on your choices along the way. Move YOUR MOUSE over the picture to see the possible actions. The action you select will determine what happens next. start time for shell printf -v date '%(%Y-%m-%d)T\n' -1 # put current date as yyyy-mm-dd HH: MM: SS in $date printf -v date '%(%Y-%m-%d %H:%M:%S)T\n' -1 # to print directly remove -v flag, as such: printf '%(%Y-%m-%d)T\n' -1 # -# put current date as yyyy-mm-dd in $date date=$(date ' %Y-%m-%d') # put current date as yyyy-mm-dd HH: MM: SS in $date date=$(date ' %Y-%m-%d %H:%M:%S') # print current date directly echo $(date ' %Y-%m-%d') #!