Tuesday, March 13, 2007

Today's achievements

Half an hour correcting dl.asp delivering 0 bytes to IE:
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile(strFilePath)
strFileSize=f.Size

L bumped up the audio on AsiaStar, now it's fine.

Rest of the morning doing Bhajan processing.

Afternoon tracing schedule problem with DST: found probable locale change so that
if (date > #11/03/2007#) and (date < #04/11/2007#) then
has stopped working and now needs to be
if (date > #03/11/2007#) and (date < #11/04/2007#) then
So, changed it to locale independent
if (date > DateSerial(2007, 03, 11)) and (date < DateSerial(2007, 11, 04)) then
instead. We're not changing the changeover times because then the Latin Americans would have four changes to their regular programming every year - following US DST and their own DST.

And evening was spent on playlist generation.

No comments:

Post a Comment