Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
declare @UnixTime bigint
set @UnixTime = 1101859200
select dateadd(dd, (@UnixTime/86400), '1/1/1970')
declare @UnixTime bigint
set @UnixTime = 1101859754
select dateadd(ss, ((convert(numeric(24,6), @UnixTime)/86400)-(@UnixTime/86400))*86400, dateadd(dd, (@UnixTime/86400), '1/1/1970'))