Stuff and things

Calum writes things of questionable importance here.
Jan 01
Permalink

Why did the Zunes fail?

while (days > 365)
{
if (IsLeapYear(year))
{
if (days > 366)
{
days -= 366;
year += 1;
}
}
else
{
days -= 365;
year += 1;
}
}
(source)