?Conspiracy? Mhhh...

For everything that's not in any way related to PureBasic. General chat etc...
User avatar
Psychophanta
Addict
Addict
Posts: 4974
Joined: Wed Jun 11, 2003 9:33 pm
Location: Lípetsk, Russian Federation
Contact:

?Conspiracy? Mhhh...

Post by Psychophanta »

Code: Select all

Debug (Date(2004,03,11,07,36,00)-Date(2001,09,11,08,46,00))/(3600*24)
Not exactly, just one more militar code.
http://www.zeitgeistmovie.com

While world=business:world+mafia:Wend
Will never leave this forum until the absolute bugfree PB :mrgreen:
#NULL
Addict
Addict
Posts: 1440
Joined: Thu Aug 30, 2007 11:54 pm
Location: right here

Re: ?Conspiracy? Mhhh...

Post by #NULL »

Using an online tool gives me 912, and 913 if the end date is included:
https://www.timeanddate.com/date/durati ... =3&y2=2004
When using floating point conversion we get 911.95.., closer to 912.

Code: Select all

Debug (1.0*Date(2004,03,11,07,36,00)-Date(2001,09,11,08,46,00))/(3600*24)  ; 911.9513888888889141526306048
So not sure what the exact days difference is, but it's interesting.

<edit>
I just realized you included the time, so you may be correct that it's 911 full days and some minutes or so.

<edit>
It's 911 days, 22 hours and 50 minutes using your times.

Code: Select all

d1 = Date(2001,09,11,08,46,00)
d2 = Date(2004,03,11,07,36,00)
d = d2 - d1
d_d = d / (3600*24)
d_h = (d - d_d*(3600*24)) / 3600
d_m = (d - (d_d*(3600*24) + d_h*3600)) / 60
d_s = (d - (d_d*(3600*24) + d_h*3600 + d_m*60))
Debug d_d ; 911
Debug d_h ; 22
Debug d_m ; 50
Debug d_s ; 0
User avatar
Lunasole
Addict
Addict
Posts: 1091
Joined: Mon Oct 26, 2015 2:55 am
Location: UA
Contact:

Re: ?Conspiracy? Mhhh...

Post by Lunasole »

911?
I recently got such example of one of analysis tools, when I didn't sleep long and walked too far into different theories.

Code: Select all

EP : 48 89 5C 24 [09/11]
Then I watched for Y2K problem, and so on, also more focused at numbers, ha that was a crazy long day and I even didn't eat anything. Such a matrix.
"W̷i̷s̷h̷i̷n̷g o̷n a s̷t̷a̷r"
Post Reply