Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
350 views

How can I create relative/approximate dates in Perl?

I'd like to know if there are any libraries (preferably DateTime-esque) that can take a normal date time and create an appropriate relative human readable date. Essentially the exact opposite of the ...
3
votes
8answers
3k views

Java: date & time relative to current (server) time

We're using MySQL to store some dates. I'm looking to show these as relative time periods in the user interface: 2 hours ago, 3 days ago etc. (Like Twitter does for the updates for example) Is there ...
2
votes
2answers
398 views

Can I parse relative times with JodaTime?

I'd love to be able to parse relative strings like now and yesterday and get JodaTime DateTimes. Is it possible? DateTimeFormat.forPattern and doesn't seem to support English relative times and I ...
1
vote
2answers
476 views

Javascript timestamp to relative time (eg 2 seconds ago, one week ago etc), best methods?

I'm looking for a nice JS snippet to convert a normal timestamp (eg from twitter API) to a nice user friendly relative time (eg 2 seconds ago, one week ago etc). Anyone care to share some of their ...
1
vote
1answer
363 views

How to get relative dates

how can I get relative dates in Objective-C? If I have "today", how do I find "yesterday", "last week", "last two weeks", "one month ago", "two months ago"?
1
vote
4answers
971 views

What's the best way to produce a relative date range (This week, This year, Last month, etc) from a DateTime?

I'm sure I'm not the first person to need to do this, so I'm looking for the best way. I've got a set of radio buttons with choices such as This Year Last Year This Month Last Month This Week Last ...
0
votes
1answer
137 views

R heights graph - relative to birth date

I have a group of people, with a space-separated text file for each person. In these files, the right value indicates the height of that person in cm and the left value indicates the date in %d/%m/%Y ...
0
votes
2answers
1k views

Relative time function in js for format YYYY-MM-DDTHH:MM:SS+0000

I was wondering if anyone knew how I could parse this type of date format: 2010-07-26T18:02:46+0000 into the relative time such as "30 seconds ago" I already have a function which does it for a ...
0
votes
2answers
738 views

PHP: producing relative date/time from timestamps

I'm basically trying to convert a Unix timestamp (the time() function) to a relative date/time that's both compatible with past and future date. So outputs could be: 2 weeks ago 1 hour and 60 ...
0
votes
2answers
59 views

How to implement the “Member for ” interval like SO in PHP? [closed]

Possible Duplicate: How do I calculate relative time? It shows 2 days,2 month,1 year and so on. How to do it?
-1
votes
1answer
71 views

How might I format relative dates the way Stack Overflow does “member since” and “last seen”? [closed]

Possible Duplicate: How do I calculate relative time? I want to know how to display these data as seen on stackoverflow.com profile page. I have the timestamp of users registered date and ...