Haha, I noticed that. Way to back up your info, you supposed reputable site! :lol:Alex. posted on Mar 5 2007 at 09:22 AM said:"Sleeping late on the weekends doesn't cause you to miss daylight."
dbeat.com/28/serious.htm - "The requested URL /28/serious.htm was not found on this server."
Sounds great. :rolleyes:
- Alex
SeanLaF posted on Mar 5 2007 at 09:30 AM said:I'm not sure why you would want a 28 hour clock. You're still living in a 24 hour world keeping 24 hour time. i suppose if your alone for days at a time you may keep your own clock but i'm still not sure why you want to keep a time no one understands.
// This can be put in any C-like language
int minutesDay24 = 24 * 60; // minutes in a 24-hour day
int minutesDay28 = 28 * 60; // minutes in a 28-hour day
int dayOfWeek = _; // ranges from 0 to 6, Monday to Sunday; needs some getDay() method
int hoursToday24 = _; // 13:01 means 13 hours; needs some getTime() method
int minutesToday24 = _; // 13:01 means 1 minute; needs some getTime() method
int totalMinutesThisWeek = minutesDay24 * dayOfWeek + hoursToday24 * 60 + minutesToday24;
int totalMinutesToday28 = totalMinutesThisWeek % minutesDay28;
int hoursToday28 = (int)(totalMinutesToday28 / 60);
int minutesToday28 = totalMinutesToday28 - hoursToday28 * 60;
// Print hoursToday28 : minutesToday28 for the clock;)
Alex. posted on Mar 5 2007 at 02:17 PM said:I suppose the simplest way would be to write a small script/program that takes the regular 24-hour time and the day of the week, and converts is to 28-hour time, then have that run on your computer or whatever.
- Alex
pool34 posted on Mar 5 2007 at 03:28 PM said:Alex. posted on Mar 5 2007 at 02:17 PM said:I suppose the simplest way would be to write a small script/program that takes the regular 24-hour time and the day of the week, and converts is to 28-hour time, then have that run on your computer or whatever.
- Alex
Yes, thank you.