show/hide this revision's text 8 Again, Removed the NBSP on code line 20

Well, here's how we do it on Stack Overflow.

var ts = new TimeSpan(DateTime.UtcNow.Ticks - dt.Ticks);
double delta = ts.TotalSeconds;

if (delta < 60)
{
  return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";
}
if (delta < 120)
{
  return "a minute ago";
}
if (delta < 2700) // 45 * 60
{
  return ts.Minutes + " minutes ago";
}
if (delta < 5400) // 90 * 60
{
  return "an hour ago";
}
if (delta < 86400) &nbsp;// // 24 * 60 * 60
{
  return ts.Hours + " hours ago";
}
if (delta < 172800) // 48 * 60 * 60
{
  return "yesterday";
}
if (delta < 2592000) // 30 * 24 * 60 * 60
{
  return ts.Days + " days ago";
}
if (delta < 31104000) // 12 * 30 * 24 * 60 * 60
{
  int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
  return months <= 1 ? "one month ago" : months + " months ago";
}
int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
return years <= 1 ? "one year ago" : years + " years ago";

Suggestions? Comments? Ways to improve this algorithm?

show/hide this revision's text 7 revert for flatter style

Well, here's how we do it on Stack Overflow.

String RelativeTime(DateTime dt) {
    

var ts = new TimeSpan(DateTime.UtcNow.Ticks - dt.Ticks);
double delta = ts.TotalSeconds;

if (delta < 60)
{
  return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";
}
if (delta < 120)
{
  return "a minute ago";
}
if (delta < 2700) // 45 * 60
{
  return ts.Minutes + " minutes ago";
}
if (delta < 5400) // 90 * 60
{
  return "an hour ago";
}
if (delta < 86400) // &nbsp;// 24 * 60 * 60
{
  return ts.Hours + " hours ago";
}
if (delta < 172800) // 48 * 60 * 60
{
  return "yesterday";
}
if (delta < 2592000) // 30 * 24 * 60 * 60
{
  return ts.Days + " days ago";
}
if (delta < 31104000) // 12 * 30 * 24 * 60 * 60
{
  int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
  return months <= 1 ? "one month ago" : months + " months ago";
}
int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
return years <= 1 ? "one year ago" : years + " years ago";
}

Suggestions? Comments? Ways to improve this algorithm?

Edit,GateKiller: I wrapped this up into a function Jeff, hope you don't mind.

show/hide this revision's text 6 Removed an eronious

Well, here's how we do it on Stack Overflow.

String RelativeTime(DateTime dt) {
    var ts = new TimeSpan(DateTime.UtcNow.Ticks - dt.Ticks);
    double delta = ts.TotalSeconds;

    if (delta < 60)
    {
      return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";
    }
    if (delta < 120)
    {
      return "a minute ago";
    }
    if (delta < 2700) // 45 * 60
    {
      return ts.Minutes + " minutes ago";
    }
    if (delta < 5400) // 90 * 60
    {
      return "an hour ago";
    }
    if (delta < 86400) &nbsp;// // 24 * 60 * 60
    {
      return ts.Hours + " hours ago";
    }
    if (delta < 172800) // 48 * 60 * 60
    {
      return "yesterday";
    }
    if (delta < 2592000) // 30 * 24 * 60 * 60
    {
      return ts.Days + " days ago";
    }
    if (delta < 31104000) // 12 * 30 * 24 * 60 * 60
    {
      int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));
      return months <= 1 ? "one month ago" : months + " months ago";
    }
    int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));
    return years <= 1 ? "one year ago" : years + " years ago";
}

Suggestions? Comments? Ways to improve this algorithm?

Edit,GateKiller: I wrapped this up into a function Jeff, hope you don't mind.

show/hide this revision's text 5
show/hide this revision's text 4
show/hide this revision's text 3
show/hide this revision's text 2
show/hide this revision's text 1