It has been a while since my last ColdFusion Friday puzzler, so I hope you enjoy this one. It occurred to me while driving my eldest to school Wednesday morning and in my "not quite awake yet" semi-conscious daze, it seemed like a sneaky little puzzle. I figured out a possible simple solution before I got home, but I'm curious to see what others make of it. Ready?
Your client wants their web site to make use of a rotating color background. Each day, the background color of the web site will change. The list of colors used for the background are: red,blue,green,yellow,orange. (I know, I know, this is why I don't do web design.)
Your goal is to write a UDF that accepts a date and selects a color. If you pass the day after that initial date, you should pick the next day in the list. On the day you pick orange, the next day would pick red.
You may think - why not simply use the the day of the week modded by 5?
But this doesn't work on the edges. You could switch to the day of the year but would have the same issue (although a heck of a lot less). So how would you solve this issue? Note that you cannot persist anything in the database (or file system, etc).
Archived Comments
You said not persist to DB or file, but can we persist in memory?
Server.SiteBgIndex++;
And day of year would work except for leap year. So starting with that method and making it work better we could do DateDiff now() '01-01-2000' Mod 5.
Unix timestamp seemed to work nicely, tested it through a 1000 iterations
https://gist.github.com/dan...
@Tim - nope - no persistence allowed. Why? Because. ;)
<cfset colorIndex = (DateDiff("s", DateConvert("utc2Local", "January 1 1970 00:00"), day) \ 86400 % ArrayLen(colors))+1>
GrumpyCFer - that is interesting. I assume day is now()?
You could also go for:
<cfset iColor = (DateDiff("dd", "1/1/2000", Now()) MOD ArrayLen(colorsRotation)) + 1 />
Now, this takes care of things server-side. Question is, this tells the user which color is today's background. It doesn't let the user "select" a color and it doesn't update the background color until another request is made. You could perhaps store some information in a cookie (if that sort of persistence is allowed) and implement some JavaScript to update the background color if the user is still viewing the same page before and after midnight.
Thanks Paul. I'm not so much worried about the implementation per se (I try to keep these puzzles to small, atomic challenges).
Here is mine.
http://pastebin.com/805J0ijt
Given a properly chosen start date and 4 properly chosen constants, you can calculate the number of days since that start date, blindingly fast, in fewer than 10 arithmetic operations and one if. Is that the sort of thing you were looking for?
I was looking for solutions - so yes. :)
So what was your possible simple solution? Is mine close to yours?
BTW, "Driving a car" + "Thinking of coding" = "Nooooooooooooooooooooooooooooooooooooooooooooooooooot a good idea. ^^;
Both you and Danny were what I was thinking of. Use an arbitrary date in the past and take the diff from that.
@Ray Insert my line between your 4 and 5 and the array index on 5 (now 6) to colorIndex. The date diff is just to get Epoch time. Could be shortened, as Danny did, but prefer the hinting.