Historical Pads – The Daily WTF

Tim inherited a fairly antique Visual Basic application some time back. Yes, Visual Basic, not VB .Net. The application is old enough that we might consider it “vintage” or “historical”; it certainly dates from before the millennium. But it has its own unique approach to handling historical dates:

  mnYear% = CInt(Year(vntDate)) 
  If mnYear% < 1000 Then 
       msYear$ = "0" & Trim$(CStr(mnYear%)) 
  Else 
       msYear$ = Trim$(CStr(mnYear%)) 
  End If

Insert obligatory complaints about Hungarian notation. What even is vnt.

Now, one important thing about this program: it didn’t have to handle dates back into the middle ages, or honestly, historical dates at all. But someone decided they wanted to make sure that if someone wanted to track the founding of the Tang Dynasty in here, you could make sure it was padded out to four digits.

Unfortunately, if you wanted to track, say, the death of Caesar Augustus in 14AD, that’ll only pad out to “014”, which raises the question: what even is the point of this padding? And how many pre-1000 dates did the program handle? The answer to both questions is “none”. Later code reformatted the date anyway, using the built in date types, even.

[Advertisement]
Keep all your packages and Docker containers in one place, scan for vulnerabilities, and control who can access different feeds. ProGet installs in minutes and has a powerful free version with a lot of great features that you can upgrade when ready.Learn more.

Source link

Stay in the Loop

Get the daily email from CryptoNews that makes reading the news actually enjoyable. Join our mailing list to stay in the loop to stay informed, for free.

Latest stories

You might also like...