How do I calculate relative time? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T04:51:41Z http://stackoverflow.com/feeds/question/11 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time 53 How do I calculate relative time? Jeff Atwood 2008-07-31T23:55:37Z 2009-11-14T18:56:01Z <p>Given a specific DateTime value, how do I display relative time, like</p> <ul> <li>2 hours ago</li> <li>3 days ago</li> <li>a month ago</li> </ul> <p>etc, etc...?</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/12#12 36 Answer by Jeff Atwood for How do I calculate relative time? Jeff Atwood 2008-07-31T23:56:41Z 2008-08-15T08:05:12Z <p>Well, here's how we do it on Stack Overflow.</p> <pre><code>var ts = new TimeSpan(DateTime.UtcNow.Ticks - dt.Ticks); double delta = ts.TotalSeconds; if (delta &lt; 60) { return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago"; } if (delta &lt; 120) { return "a minute ago"; } if (delta &lt; 2700) // 45 * 60 { return ts.Minutes + " minutes ago"; } if (delta &lt; 5400) // 90 * 60 { return "an hour ago"; } if (delta &lt; 86400) // 24 * 60 * 60 { return ts.Hours + " hours ago"; } if (delta &lt; 172800) // 48 * 60 * 60 { return "yesterday"; } if (delta &lt; 2592000) // 30 * 24 * 60 * 60 { return ts.Days + " days ago"; } if (delta &lt; 31104000) // 12 * 30 * 24 * 60 * 60 { int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30)); return months &lt;= 1 ? "one month ago" : months + " months ago"; } int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365)); return years &lt;= 1 ? "one year ago" : years + " years ago"; </code></pre> <p>Suggestions? Comments? Ways to improve this algorithm?</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/27#27 3 Answer by Nick Berardi for How do I calculate relative time? Nick Berardi 2008-08-01T12:17:19Z 2008-08-01T13:16:49Z <p>@jeff</p> <p>IMHO yours seems a little long. However it does seem a little more robust with support for "yesterday" and "years". But in my experience when this is used the person is most likely to view the content in the first 30 days. It is only the really hardcore people that come after that. So that is why I usually elect to keep this short and simple.</p> <p>This is the method I am currently using on one of my websites. This only returns a relative day, hour, time. And then the user has to slap on "ago" in the output.</p> <pre><code>public static string ToLongString(this TimeSpan time)<br>{<br> string output = String.Empty;<br><br> if (time.Days &gt; 0)<br> output += time.Days + " days ";<br><br> if ((time.Days == 0 || time.Days == 1) &amp;&amp; time.Hours &gt; 0)<br> output += time.Hours + " hr ";<br><br> if (time.Days == 0 &amp;&amp; time.Minutes &gt; 0)<br> output += time.Minutes + " min ";<br><br> if (output.Length == 0)<br> output += time.Seconds + " sec";<br><br> return output.Trim();<br>}<br></code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/1228#1228 6 Answer by Zack Peterson for How do I calculate relative time? Zack Peterson 2008-08-04T13:37:24Z 2008-08-04T13:37:24Z <p>Stack Overflow will write both "answered an hour ago" and "answered 1 hours ago".</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/1248#1248 107 Answer by Vincent Robert for How do I calculate relative time? Vincent Robert 2008-08-04T13:57:26Z 2008-08-04T13:57:26Z <p>Jeff, your code is nice but could be clearer with constants (as suggested in Code Complete).</p> <pre><code>const int SECOND = 1;<br>const int MINUTE = 60 * SECOND;<br>const int HOUR = 60 * MINUTE;<br>const int DAY = 24 * HOUR;<br>const int MONTH = 30 * DAY;<br><br>if (delta &lt; 1 * MINUTE)<br>{<br> return ts.Seconds == 1 ? "one second ago" : ts.Seconds + " seconds ago";<br>}<br>if (delta &lt; 2 * MINUTE)<br>{<br> return "a minute ago";<br>}<br>if (delta &lt; 45 * MINUTE)<br>{<br> return ts.Minutes + " minutes ago";<br>}<br>if (delta &lt; 90 * MINUTE)<br>{<br> return "an hour ago";<br>}<br>if (delta &lt; 24 * HOUR)<br>{<br> return ts.Hours + " hours ago";<br>}<br>if (delta &lt; 48 * HOUR)<br>{<br> return "yesterday";<br>}<br>if (delta &lt; 30 * DAY)<br>{<br> return ts.Days + " days ago";<br>}<br>if (delta &lt; 12 * MONTH)<br>{<br> int months = Convert.ToInt32(Math.Floor((double)ts.Days / 30));<br> return months &lt;= 1 ? "one month ago" : months + " months ago";<br>}<br>else<br>{<br> int years = Convert.ToInt32(Math.Floor((double)ts.Days / 365));<br> return years &lt;= 1 ? "one year ago" : years + " years ago";<br>}<br></code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/1752#1752 0 Answer by Wedge for How do I calculate relative time? Wedge 2008-08-05T00:42:56Z 2008-08-05T01:23:39Z <p>I thought I'd give this a shot using classes and polymorphism. I had a previous iteration which used sub-classing which ended up having way too much overhead. I've switched to a more flexible delegate / public property object model which is significantly better. My code is very slightly more accurate, I wish I could come up with a better way to generate "months ago" that didn't seem too over-engineered.</p> <p>I think I'd still stick with Jeff's if-then cascade because it's less code and it's simpler (it's definitely easier to ensure it'll work as expected).</p> <p>For the below code <em>PrintRelativeTime.GetRelativeTimeMessage(TimeSpan ago)</em> returns the relative time message (e.g. "yesterday").</p> <pre><code>public class RelativeTimeRange : IComparable<br>{<br> public TimeSpan UpperBound { get; set; }<br><br> public delegate string RelativeTimeTextDelegate(TimeSpan timeDelta);<br><br> public RelativeTimeTextDelegate MessageCreator { get; set; }<br><br> public int CompareTo(object obj)<br> {<br> if (!(obj is RelativeTimeRange))<br> {<br> return 1;<br> }<br> // note that this sorts in reverse order to the way you'd expect, <br> // this saves having to reverse a list later<br> return (obj as RelativeTimeRange).UpperBound.CompareTo(UpperBound);<br> }<br>}<br><br>public class PrintRelativeTime<br>{<br> private static List&lt;RelativeTimeRange&gt; timeRanges;<br><br> static PrintRelativeTime()<br> {<br> timeRanges = new List&lt;RelativeTimeRange&gt;{<br> new RelativeTimeRange<br> {<br> UpperBound = TimeSpan.FromSeconds(1),<br> MessageCreator = (delta) =&gt; <br> { return "one second ago"; }<br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = TimeSpan.FromSeconds(60),<br> MessageCreator = (delta) =&gt; <br> { return delta.Seconds + " seconds ago"; }<br><br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = TimeSpan.FromMinutes(2),<br> MessageCreator = (delta) =&gt; <br> { return "one minute ago"; }<br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = TimeSpan.FromMinutes(60),<br> MessageCreator = (delta) =&gt; <br> { return delta.Minutes + " minutes ago"; }<br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = TimeSpan.FromHours(2),<br> MessageCreator = (delta) =&gt; <br> { return "one hour ago"; }<br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = TimeSpan.FromHours(24),<br> MessageCreator = (delta) =&gt; <br> { return delta.Hours + " hours ago"; }<br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = TimeSpan.FromDays(2),<br> MessageCreator = (delta) =&gt; <br> { return "yesterday"; }<br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = DateTime.Now.Subtract(DateTime.Now.AddMonths(-1)),<br> MessageCreator = (delta) =&gt; <br> { return delta.Days + " days ago"; }<br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = DateTime.Now.Subtract(DateTime.Now.AddMonths(-2)),<br> MessageCreator = (delta) =&gt; <br> { return "one month ago"; }<br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = DateTime.Now.Subtract(DateTime.Now.AddYears(-1)),<br> MessageCreator = (delta) =&gt; <br> { return (int)Math.Floor(delta.TotalDays / 30) + " months ago"; }<br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = DateTime.Now.Subtract(DateTime.Now.AddYears(-2)),<br> MessageCreator = (delta) =&gt; <br> { return "one year ago"; }<br> }, <br> new RelativeTimeRange<br> {<br> UpperBound = TimeSpan.MaxValue,<br> MessageCreator = (delta) =&gt; <br> { return (int)Math.Floor(delta.TotalDays / 365.24D) + " years ago"; }<br> }<br> };<br><br> timeRanges.Sort();<br> }<br><br> public static string GetRelativeTimeMessage(TimeSpan ago)<br> {<br> RelativeTimeRange postRelativeDateRange = timeRanges[0];<br><br> foreach (var timeRange in timeRanges)<br> {<br> if (ago.CompareTo(timeRange.UpperBound) &lt;= 0)<br> {<br> postRelativeDateRange = timeRange;<br> }<br> }<br><br> return postRelativeDateRange.MessageCreator(ago);<br> }<br>}<br></code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/3038#3038 1 Answer by Jon Limjap for How do I calculate relative time? Jon Limjap 2008-08-06T03:00:21Z 2008-08-06T03:00:21Z <p>Jeff,</p> <p>Your years algorithm doesn't take into account Leap Years and such, so it would be a little off in about 40 years. :) However the "months" algorithm might be off much faster considering that you didn't take into account February and all the months with 31.</p> <p>I know it complicates things but, just might be a concern. :)</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/10474#10474 3 Answer by Brendan for How do I calculate relative time? Brendan 2008-08-13T23:28:36Z 2008-08-13T23:28:36Z <p>Have +1 to Zack, but to re-iterate there is a condition between 90 and 120 minutes where it displays '1 hours ago' that needs a bit of tweaking - extra clause perhaps?</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/10705#10705 11 Answer by DevelopingChris for How do I calculate relative time? DevelopingChris 2008-08-14T05:43:45Z 2008-08-14T05:43:45Z <pre><code> public static string RelativeDate(DateTime theDate) { Dictionary&lt;long, string&gt; thresholds = new Dictionary&lt;long, string&gt;(); int minute = 60; int hour = 60 * minute; int day = 24 * hour; thresholds.Add(60, "{0} seconds ago"); thresholds.Add(minute * 2, "a minute ago"); thresholds.Add(45 * minute, "{0} minutes ago"); thresholds.Add(120 * minute, "an hour ago"); thresholds.Add(day, "{0} hours ago"); thresholds.Add(day * 2, "yesterday"); thresholds.Add(day * 30, "{0} days ago"); thresholds.Add(day * 365, "{0} months ago"); thresholds.Add(long.MaxValue, "{0} years ago"); long since = (DateTime.Now.Ticks - theDate.Ticks) / 1000000; foreach (long threshold in thresholds.Keys) { if (since &lt; threshold) { TimeSpan t = new TimeSpan((DateTime.Now.Ticks - theDate.Ticks)); return string.Format(thresholds[threshold], (t.Days &gt; 365 ? t.Days / 365 : (t.Days &gt; 0 ? t.Days : (t.Hours &gt; 0 ? t.Hours : (t.Minutes &gt; 0 ? t.Minutes : (t.Seconds &gt; 0 ? t.Seconds : 0))))).ToString()); } } return ""; } </code></pre> <p>I prefer this version for its conciseness, and ability to add in new tick points. This could be encapsulated with a Latest() extension to Timespan instead of that long 1 liner, but for the sake of brevity in posting, this will do. <strong>This fixes the an hour ago, 1 hours ago, by providing an hour until 2 hours have elapsed</strong></p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/10723#10723 0 Answer by Andrew Grant for How do I calculate relative time? Andrew Grant 2008-08-14T06:02:35Z 2008-08-14T06:02:35Z <p>So the basic answer is a Big-Ass switch/if/else statement :)</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/12007#12007 0 Answer by James A. Rosen for How do I calculate relative time? James A. Rosen 2008-08-15T06:01:14Z 2008-08-15T06:01:14Z <p>I created a Rails plugin that does pretty date and time formatting: http://github.com/gcnovus/ruby-tidbits/tree/master</p> <p>It, too, uses a "big-ass switch/if/else statement," though, being Ruby, it's of course a <em>pretty</em>, big-ass switch/if/else statement :)</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/12260#12260 0 Answer by GateKiller for How do I calculate relative time? GateKiller 2008-08-15T13:50:59Z 2008-08-15T13:50:59Z <p>@Jeff,</p> <p>I've been going a bit mad trying to figure out why my code was returning negative values for times in the past and now I've finally cracked it... I'm in the middle of BST!</p> <p>Line 1 now becomes:</p> <pre><code>var ts = new TimeSpan(DateTime.Now.Ticks - dt.Ticks); </code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/12269#12269 0 Answer by Peteter for How do I calculate relative time? Peteter 2008-08-15T14:01:48Z 2008-08-15T14:01:48Z <p>@Wedge : wouldn't it be smoother to be able to break the loop when you've found the right on to use?</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/12279#12279 0 Answer by Will Dean for How do I calculate relative time? Will Dean 2008-08-15T14:20:04Z 2008-08-15T14:20:04Z <p>@Jeff</p> <blockquote> <p>var ts = new TimeSpan(DateTime.UtcNow.Ticks - dt.Ticks);</p> </blockquote> <p>Doing a subtraction on DateTime returns a TimeSpan anyway.</p> <p>So you can just do </p> <p>(DateTime.UtcNow - dt).TotalSeconds</p> <p>I'm also surprised to see the constants multiplied-out by hand and then comments added with the multiplications in. Was that some misguided optimisation?</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/12852#12852 1 Answer by markpasc for How do I calculate relative time? markpasc 2008-08-15T22:42:33Z 2008-08-15T22:42:33Z <p>When you know the viewer's time zone, it might be clearer to use calendar days at the day scale. I'm not familiar with the .NET libraries so I don't know how you'd do that in C#, unfortunately.</p> <p>On consumer sites, you could also be hand-wavier under a minute. "Less than a minute ago" or "just now" could be good enough.</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/13690#13690 1 Answer by J for How do I calculate relative time? J 2008-08-17T15:56:26Z 2008-08-17T15:56:26Z <p>You can reduce the server-side load by performing this logic client-side. View source on some Digg pages for reference. They have the server emit an epoch time value that gets processed by Javascript. This way you don't need to manage the end user's time zone. The new server-side code would be something like:</p> <pre><code> public string GetRelativeTime(DateTime timeStamp) { return string.Format("&lt;script&gt;printdate({0});&lt;/script&gt;", timeStamp.ToFileTimeUtc()); } </code></pre> <p>You could even add a NOSCRIPT block there and just perform a ToString().</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/18387#18387 1 Answer by kcrumley for How do I calculate relative time? kcrumley 2008-08-20T17:20:11Z 2008-08-20T19:01:07Z <p>I went to the UserVoice site to add a bug report, and found that issues with the relative time labels were already mentioned -- sort of. And I just searched for "relative yesterday". But nobody seems to have mentioned that the "yesterday" algorithm is technically wrong. Today is August 20th, around noon. I was just looking at an answer I posted the day before yesterday, on August 18th, in the 6 PM hour (local time), and it was displayed as "yesterday".</p> <p>"the XX [dateparts] ago" patterns all work fine because they're straightforward relative measures. To get roughly the correct time, you take "now" and substract XX [dateparts]. But at 12:00:01 AM, "yesterday" is any time from 1+ seconds ago to 24 hours and 1+ seconds ago. At 11:59:59 PM, "yesterday" is any time from 23:59:59+ ago to 47:59:59+ ago.</p> <p>In short, the relative time "yesterday" can't be determined in a sensible way by using a delta at the seconds' level, only by subtracting the value of the "day" datepart. Note that "one day ago" would be a correct rendering of the same time threshold, even up to 1.999 days, but "yesterday" isn't.</p> <p>EDIT: I didn't notice at first that the times that appeared on the tooltips were in UTC. Considering that the timestamps aren't localized to the user's time zone, I think that even using "yesterday" is probably ill-advised. If using relative times is intended to make the time strings easier to understand without thinking about them, any "yesterday" that would be based on UTC would be counterproductive.</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/18393#18393 1 Answer by icco for How do I calculate relative time? icco 2008-08-20T17:26:49Z 2008-08-20T17:26:49Z <p>In PHP, I do it this way: </p> <pre><code>&lt;?php function timesince($original) { // array of time period chunks $chunks = array( array(60 * 60 * 24 * 365 , 'year'), array(60 * 60 * 24 * 30 , 'month'), array(60 * 60 * 24 * 7, 'week'), array(60 * 60 * 24 , 'day'), array(60 * 60 , 'hour'), array(60 , 'minute'), ); $today = time(); /* Current unix time */ $since = $today - $original; if($since &gt; 604800) { $print = date("M jS", $original); if($since &gt; 31536000) { $print .= ", " . date("Y", $original); } return $print; } // $j saves performing the count function each time around the loop for ($i = 0, $j = count($chunks); $i &lt; $j; $i++) { $seconds = $chunks[$i][0]; $name = $chunks[$i][1]; // finding the biggest chunk (if the chunk fits, break) if (($count = floor($since / $seconds)) != 0) { break; } } $print = ($count == 1) ? '1 '.$name : "$count {$name}s"; return $print . " ago"; } ?&gt; </code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/25709#25709 0 Answer by Cebjyre for How do I calculate relative time? Cebjyre 2008-08-25T06:12:29Z 2008-08-25T06:12:29Z <p>Surely an easy fix to get rid of the '1 hours ago' problem would be to increase the window that 'an hour ago' is valid for. Change</p> <pre><code>if (delta &lt; 5400) // 90 * 60 { return "an hour ago"; } </code></pre> <p>into</p> <pre><code>if (delta &lt; 7200) // 120 * 60 { return "an hour ago"; } </code></pre> <p>This means that something that occurred 110 minutes ago will read as 'an hour ago' - this may not be perfect, but I'd say it is better than the current situation of '1 hours ago'. </p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/55246#55246 0 Answer by Juan Manuel for How do I calculate relative time? Juan Manuel 2008-09-10T20:28:10Z 2008-09-10T20:28:10Z <p><a href="http://blog.madskristensen.dk/post/The-method-you-didne28099t-know-you-needed.aspx" rel="nofollow">Here</a>'s a post that discusses this, and has code samples in C#</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/79601#79601 11 Answer by Michael Wolfenden for How do I calculate relative time? Michael Wolfenden 2008-09-17T03:19:19Z 2008-09-17T03:19:19Z <pre><code>public static string ToRelativeDate(DateTime input) { TimeSpan oSpan = DateTime.Now.Subtract(input); double TotalMinutes = oSpan.TotalMinutes; string Suffix = " ago"; if (TotalMinutes &lt; 0.0) { TotalMinutes = Math.Abs(TotalMinutes); Suffix = " from now"; } Dictionary&lt;double, Func&lt;string&gt;&gt; aValue = new Dictionary&lt;double, Func&lt;string&gt;&gt;(); aValue.Add(0.75, () =&gt; "less than a minute"); aValue.Add(1.5, () =&gt; "about a minute"); aValue.Add(45, () =&gt; string.Format("{0} minutes", Math.Round(TotalMinutes))); aValue.Add(90, () =&gt; "about an hour"); aValue.Add(1440, () =&gt; string.Format("about {0} hours", Math.Round(Math.Abs(oSpan.TotalHours)))); // 60 * 24 aValue.Add(2880, () =&gt; "a day"); // 60 * 48 aValue.Add(43200, () =&gt; string.Format("{0} days", Math.Floor(Math.Abs(oSpan.TotalDays)))); // 60 * 24 * 30 aValue.Add(86400, () =&gt; "about a month"); // 60 * 24 * 60 aValue.Add(525600, () =&gt; string.Format("{0} months", Math.Floor(Math.Abs(oSpan.TotalDays / 30)))); // 60 * 24 * 365 aValue.Add(1051200, () =&gt; "about a year"); // 60 * 24 * 365 * 2 aValue.Add(double.MaxValue, () =&gt; string.Format("{0} years", Math.Floor(Math.Abs(oSpan.TotalDays / 365)))); return aValue.First(n =&gt; TotalMinutes &lt; n.Key).Value.Invoke() + Suffix; } </code></pre> <p><a href="http://refactormycode.com/codes/493-twitter-esque-relative-dates" rel="nofollow">http://refactormycode.com/codes/493-twitter-esque-relative-dates</a></p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/111303#111303 33 Answer by Ryan McGeary for How do I calculate relative time? Ryan McGeary 2008-09-21T16:04:55Z 2009-08-15T14:29:52Z <h2><a href="http://timeago.yarp.com/" rel="nofollow">jquery.timeago plugin</a></h2> <p>Jeff, Because stackoverflow uses jquery extensively, I recommend this <a href="http://timeago.yarp.com/" rel="nofollow">jquery.timeago plugin</a>. </p> <p>Benefits:</p> <ul> <li>Avoid timestamps dated "1 minute ago" even though the page was opened 10 minutes ago; timeago refreshes automatically.</li> <li>You can take full advantage of page or fragment caching in your web applications, because the timestamps aren't calculated on the server.</li> <li>You get to use microformats like the cool kids.</li> </ul> <p>Just attach it to your timestamps on DOM ready:</p> <pre><code>jQuery(document).ready(function() { jQuery('abbr.timeago').timeago(); }); </code></pre> <p>This will turn all abbr elements with a class of timeago and an <a href="http://en.wikipedia.org/wiki/ISO%5F8601" rel="nofollow">ISO 8601</a> timestamp in the title:</p> <pre><code>&lt;abbr class="timeago" title="2008-07-17T09:24:17Z"&gt;July 17, 2008&lt;/abbr&gt; </code></pre> <p>into something like this:</p> <pre><code>&lt;abbr class="timeago" title="2008-07-17T09:24:17Z"&gt;4 months ago&lt;/abbr&gt; </code></pre> <p>which yields: 4 months ago. As time passes, the timestamps will automatically update. </p> <p><em>Disclaimer: I wrote this plugin, so I'm biased.</em></p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/115580#115580 0 Answer by Tommy for How do I calculate relative time? Tommy 2008-09-22T15:36:10Z 2008-09-22T15:36:10Z <p>If you expect equal distribution of the different cases then rearranging the conditional tests into a binary tree should be beneficial.</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/118569#118569 0 Answer by dreeves for How do I calculate relative time? dreeves 2008-09-23T01:09:30Z 2008-09-23T01:39:15Z <p>Here's the algorithm stackoverflow uses but rewritten more concisely in perlish pseudocode with a bug fix (no "one hours ago"). The function takes a (positive) number of seconds ago and returns a human-friendly string like "3 hours ago" or "yesterday".</p> <pre><code>agoify($delta) local($y, $mo, $d, $h, $m, $s); $s = floor($delta); if($s&lt;=1) return "a second ago"; if($s&lt;60) return "$s seconds ago"; $m = floor($s/60); if($m==1) return "a minute ago"; if($m&lt;45) return "$m minutes ago"; $h = floor($m/60); if($h==1) return "an hour ago"; if($h&lt;24) return "$h hours ago"; $d = floor($h/24); if($d&lt;2) return "yesterday"; if($d&lt;30) return "$d days ago"; $mo = floor($d/30); if($mo&lt;=1) return "a month ago"; $y = floor($mo/12); if($y&lt;1) return "$mo months ago"; if($y==1) return "a year ago"; return "$y years ago"; </code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/185485#185485 1 Answer by aaaidan for How do I calculate relative time? aaaidan 2008-10-09T00:30:01Z 2008-10-09T00:30:01Z <p>Perhaps if the delta is less than 5 seconds ago, you could return "just now". I've seen that on a few "web2.0!!" sites and I think it's a nice touch. Realistically, for the end user, the difference between "0 seconds ago" and "4 seconds ago" is negligible.</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/229285#229285 2 Answer by Jauder Ho for How do I calculate relative time? Jauder Ho 2008-10-23T10:44:13Z 2008-10-23T10:44:13Z <p>I would recommend computing this on the client side too. Less work for the server. </p> <p>The following is the version that I use (from Zach Leatherman)</p> <pre><code>/* * Javascript Humane Dates * Copyright (c) 2008 Dean Landolt (deanlandolt.com) * Re-write by Zach Leatherman (zachleat.com) * * Adopted from the John Resig's pretty.js * at http://ejohn.org/blog/javascript-pretty-date * and henrah's proposed modification * at http://ejohn.org/blog/javascript-pretty-date/#comment-297458 * * Licensed under the MIT license. */ function humane_date(date_str){ var time_formats = [ [60, 'just now'], [90, '1 minute'], // 60*1.5 [3600, 'minutes', 60], // 60*60, 60 [5400, '1 hour'], // 60*60*1.5 [86400, 'hours', 3600], // 60*60*24, 60*60 [129600, '1 day'], // 60*60*24*1.5 [604800, 'days', 86400], // 60*60*24*7, 60*60*24 [907200, '1 week'], // 60*60*24*7*1.5 [2628000, 'weeks', 604800], // 60*60*24*(365/12), 60*60*24*7 [3942000, '1 month'], // 60*60*24*(365/12)*1.5 [31536000, 'months', 2628000], // 60*60*24*365, 60*60*24*(365/12) [47304000, '1 year'], // 60*60*24*365*1.5 [3153600000, 'years', 31536000], // 60*60*24*365*100, 60*60*24*365 [4730400000, '1 century'] // 60*60*24*365*100*1.5 ]; var time = ('' + date_str).replace(/-/g,"/").replace(/[TZ]/g," "), dt = new Date, seconds = ((dt - new Date(time) + (dt.getTimezoneOffset() * 60000)) / 1000), token = ' ago', i = 0, format; if (seconds &lt; 0) { seconds = Math.abs(seconds); token = ''; } while (format = time_formats[i++]) { if (seconds &lt; format[0]) { if (format.length == 2) { return format[1] + (i &gt; 1 ? token : ''); // Conditional so we don't return Just Now Ago } else { return Math.round(seconds / format[2]) + ' ' + format[1] + (i &gt; 1 ? token : ''); } } } // overflow for centuries if(seconds &gt; 4730400000) return Math.round(seconds / 4730400000) + ' centuries' + token; return date_str; }; if(typeof jQuery != 'undefined') { jQuery.fn.humane_dates = function(){ return this.each(function(){ var date = humane_date(this.title); if(date &amp;&amp; jQuery(this).text() != date) // don't modify the dom if we don't have to jQuery(this).text(date); }); }; } </code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/501415#501415 2 Answer by Thomaschaaf for How do I calculate relative time? Thomaschaaf 2009-02-01T19:22:41Z 2009-02-01T19:22:41Z <p>Here a rewrite from Jeffs Script for PHP:</p> <pre><code>define("SECOND", 1); define("MINUTE", 60 * SECOND); define("HOUR", 60 * MINUTE); define("DAY", 24 * HOUR); define("MONTH", 30 * DAY); function relativeTime($time) { $delta = time() - $time; if ($delta &lt; 1 * MINUTE) { return $delta == 1 ? "one second ago" : $delta . " seconds ago"; } if ($delta &lt; 2 * MINUTE) { return "a minute ago"; } if ($delta &lt; 45 * MINUTE) { return floor($delta / MINUTE) . " minutes ago"; } if ($delta &lt; 90 * MINUTE) { return "an hour ago"; } if ($delta &lt; 24 * HOUR) { return floor($delta / HOUR) . " hours ago"; } if ($delta &lt; 48 * HOUR) { return "yesterday"; } if ($delta &lt; 30 * DAY) { return floor($delta / DAY) . " days ago"; } if ($delta &lt; 12 * MONTH) { $months = floor($delta / DAY / 30); return $months &lt;= 1 ? "one month ago" : $months . " months ago"; } else { $years = floor($delta / DAY / 365); return $years &lt;= 1 ? "one year ago" : $years . " years ago"; } } </code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/569913#569913 0 Answer by Jo Vermeulen for How do I calculate relative time? Jo Vermeulen 2009-02-20T15:17:43Z 2009-02-20T15:41:11Z <p>Is there an easy way to do this in Java? The java.util.Date class seems rather limited.</p> <p>Here is my quick and dirty Java solution:</p> <pre><code>import java.util.Date; import javax.management.timer.Timer; String getRelativeDate(Date date) { long delta = new Date().getTime() - date.getTime(); if (delta &lt; 1L * Timer.ONE_MINUTE) { return toSeconds(delta) == 1 ? "one second ago" : toSeconds(delta) + " seconds ago"; } if (delta &lt; 2L * Timer.ONE_MINUTE) { return "a minute ago"; } if (delta &lt; 45L * Timer.ONE_MINUTE) { return toMinutes(delta) + " minutes ago"; } if (delta &lt; 90L * Timer.ONE_MINUTE) { return "an hour ago"; } if (delta &lt; 24L * Timer.ONE_HOUR) { return toHours(delta) + " hours ago"; } if (delta &lt; 48L * Timer.ONE_HOUR) { return "yesterday"; } if (delta &lt; 30L * Timer.ONE_DAY) { return toDays(delta) + " days ago"; } if (delta &lt; 12L * 4L * Timer.ONE_WEEK) // a month { long months = toMonths(delta); return months &lt;= 1 ? "one month ago" : months + " months ago"; } else { long years = toYears(delta); return years &lt;= 1 ? "one year ago" : years + " years ago"; } } private long toSeconds(long date) { return date / 1000L; } private long toMinutes(long date) { return toSeconds(date) / 60L; } private long toHours(long date) { return toMinutes(date) / 60L; } private long toDays(long date) { return toHours(date) / 24L; } private long toMonths(long date) { return toDays(date) / 30L; } private long toYears(long date) { return toMonths(date) / 365L; } </code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/628203#628203 4 Answer by neuracnu for How do I calculate relative time? neuracnu 2009-03-09T22:02:29Z 2009-03-10T21:49:09Z <p>Here's an implementation I added as an extension method to the DateTime class that handles both future and past dates and provides an approximation option that allows you to specify the level of detail you're looking for ("3 hour ago" vs "3 hours, 23 minutes, 12 seconds ago"):</p> <pre><code>using System.Text; /// &lt;summary&gt; /// Compares a supplied date to the current date and generates a friendly English /// comparison ("5 days ago", "5 days from now") /// &lt;/summary&gt; /// &lt;param name="date"&gt;The date to convert&lt;/param&gt; /// &lt;param name="approximate"&gt;When off, calculate timespan down to the second. /// When on, approximate to the largest round unit of time.&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public static string ToRelativeDateString(this DateTime value, bool approximate) { StringBuilder sb = new StringBuilder(); string suffix = (value &gt; DateTime.Now) ? " from now" : " ago"; TimeSpan timeSpan = new TimeSpan(Math.Abs(DateTime.Now.Subtract(value).Ticks)); if (timeSpan.Days &gt; 0) { sb.AppendFormat("{0} {1}", timeSpan.Days, (timeSpan.Days &gt; 1) ? "days" : "day"); if (approximate) return sb.ToString() + suffix; } if (timeSpan.Hours &gt; 0) { sb.AppendFormat("{0}{1} {2}", (sb.Length &gt; 0) ? ", " : string.Empty, timeSpan.Hours, (timeSpan.Hours &gt; 1) ? "hours" : "hour"); if (approximate) return sb.ToString() + suffix; } if (timeSpan.Minutes &gt; 0) { sb.AppendFormat("{0}{1} {2}", (sb.Length &gt; 0) ? ", " : string.Empty, timeSpan.Minutes, (timeSpan.Minutes &gt; 1) ? "minutes" : "minute"); if (approximate) return sb.ToString() + suffix; } if (timeSpan.Seconds &gt; 0) { sb.AppendFormat("{0}{1} {2}", (sb.Length &gt; 0) ? ", " : string.Empty, timeSpan.Seconds, (timeSpan.Seconds &gt; 1) ? "seconds" : "second"); if (approximate) return sb.ToString() + suffix; } if (sb.Length == 0) return "right now"; sb.Append(suffix); return sb.ToString(); } </code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/1141237#1141237 0 Answer by Chris Charabaruk for How do I calculate relative time? Chris Charabaruk 2009-07-17T02:47:42Z 2009-07-17T02:47:42Z <pre><code>using System; using System.Collections.Generic; using System.Linq; public static class RelativeDateHelper { private static Dictionary&lt;double, Func&lt;double, string&gt;&gt; sm_Dict = null; private static Dictionary&lt;double, Func&lt;double, string&gt;&gt; DictionarySetup() { var dict = new Dictionary&lt;double, Func&lt;double, string&gt;&gt;(); dict.Add(0.75, (mins) =&gt; "less than a minute"); dict.Add(1.5, (mins) =&gt; "about a minute"); dict.Add(45, (mins) =&gt; string.Format("{0} minutes", Math.Round(mins))); dict.Add(90, (mins) =&gt; "about an hour"); dict.Add(1440, (mins) =&gt; string.Format("about {0} hours", Math.Round(Math.Abs(mins / 60)))); // 60 * 24 dict.Add(2880, (mins) =&gt; "a day"); // 60 * 48 dict.Add(43200, (mins) =&gt; string.Format("{0} days", Math.Floor(Math.Abs(mins / 1440)))); // 60 * 24 * 30 dict.Add(86400, (mins) =&gt; "about a month"); // 60 * 24 * 60 dict.Add(525600, (mins) =&gt; string.Format("{0} months", Math.Floor(Math.Abs(mins / 43200)))); // 60 * 24 * 365 dict.Add(1051200, (mins) =&gt; "about a year"); // 60 * 24 * 365 * 2 dict.Add(double.MaxValue, (mins) =&gt; string.Format("{0} years", Math.Floor(Math.Abs(mins / 525600)))); return dict; } public static string ToRelativeDate(this DateTime input) { TimeSpan oSpan = DateTime.Now.Subtract(input); double TotalMinutes = oSpan.TotalMinutes; string Suffix = " ago"; if (TotalMinutes &lt; 0.0) { TotalMinutes = Math.Abs(TotalMinutes); Suffix = " from now"; } if (null == sm_Dict) sm_Dict = DictionarySetup(); return sm_Dict.First(n =&gt; TotalMinutes &lt; n.Key).Value.Invoke(TotalMinutes) + Suffix; } } </code></pre> <p>The same as <a href="http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/79601#79601">another answer to this question</a> but as an extension method with a static dictionary.</p> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/1379178#1379178 0 Answer by Simon for How do I calculate relative time? Simon 2009-09-04T13:15:59Z 2009-09-04T13:15:59Z <p>using Fluent DateTime <a href="http://fluentdatetime.codeplex.com/" rel="nofollow">http://fluentdatetime.codeplex.com/</a></p> <pre><code> var dateTime1 = 2.Hours().Ago(); var dateTime2 = 3.Days().Ago(); var dateTime3 = 1.Months().Ago(); var dateTime4 = 5.Hours().FromNow(); var dateTime5 = 2.Weeks().FromNow(); var dateTime6 = 40.Seconds().FromNow(); </code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/1614633#1614633 0 Answer by Peter for How do I calculate relative time? Peter 2009-10-23T16:44:18Z 2009-10-23T16:44:18Z <p>One minor addition to the top answer is that it will incorrectly calculate "Yesterday". This code will look at the delta and then figure out if the date is the same (meaning today) or off by 1 (meaning yesterday). The problem with the code in the top answer is that a date difference of 8 hours ago should say yesterday if it was posted at night and it is now the next morning.</p> <p>Uses an arbitrary cutoff of 6 hours for the "n hours ago" display. And uses a variable of inputDate for the date to compare:</p> <pre><code>... if (delta &lt; 7 * HOUR) { return ts.Hours + " hours ago"; } if (delta &lt; 24 * HOUR &amp;&amp; inputDate.Date == DateTime.Now.Date) { return "Today"; } if (delta &lt; 48 * HOUR &amp;&amp; inputDate.AddDays(1).Date == DateTime.Now.Date) { return "Yesterday"; } ... </code></pre> http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time/1735172#1735172 0 Answer by antony.trupe for How do I calculate relative time? antony.trupe 2009-11-14T18:44:50Z 2009-11-14T18:56:01Z <p>Java for client-side gwt usage:</p> <pre><code>import java.util.Date; public class RelativeDateFormat { private static final long ONE_MINUTE = 60000L; private static final long ONE_HOUR = 3600000L; private static final long ONE_DAY = 86400000L; private static final long ONE_WEEK = 604800000L; public static String format(Date date) { long delta = new Date().getTime() - date.getTime(); if (delta &lt; 1L * ONE_MINUTE) { return toSeconds(delta) == 1 ? "one second ago" : toSeconds(delta) + " seconds ago"; } if (delta &lt; 2L * ONE_MINUTE) { return "one minute ago"; } if (delta &lt; 45L * ONE_MINUTE) { return toMinutes(delta) + " minutes ago"; } if (delta &lt; 90L * ONE_MINUTE) { return "one hour ago"; } if (delta &lt; 24L * ONE_HOUR) { return toHours(delta) + " hours ago"; } if (delta &lt; 48L * ONE_HOUR) { return "yesterday"; } if (delta &lt; 30L * ONE_DAY) { return toDays(delta) + " days ago"; } if (delta &lt; 12L * 4L * ONE_WEEK) { long months = toMonths(delta); return months &lt;= 1 ? "one month ago" : months + " months ago"; } else { long years = toYears(delta); return years &lt;= 1 ? "one year ago" : years + " years ago"; } } private static long toSeconds(long date) { return date / 1000L; } private static long toMinutes(long date) { return toSeconds(date) / 60L; } private static long toHours(long date) { return toMinutes(date) / 60L; } private static long toDays(long date) { return toHours(date) / 24L; } private static long toMonths(long date) { return toDays(date) / 30L; } private static long toYears(long date) { return toMonths(date) / 365L; } } </code></pre>