Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
Deprecation warning: relative_created_at is going away in seven days
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  Messages 1 - 25 of 27 - Collapse all  -  Translate all to Translated (View all originals)   Newer >
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Alex Payne  
View profile  
 More options Mar 20 2007, 3:44 pm
From: Alex Payne <a...@al3x.net>
Date: Tue, 20 Mar 2007 15:44:24 -0400
Local: Tues, Mar 20 2007 3:44 pm
Subject: Deprecation warning: relative_created_at is going away in seven days
We've had a couple suggestions to do away with the  
relative_created_at attribute that we include our API output.  
Because the value is relative, it changes between requests and ruins  
most caching strategies.

We will be removing relative_created_at in seven days (Tuesday, April  
27th).  Please change your code accordingly.

Thanks, and do let us know if we can do anything date/time related to  
make parsing easier for you.

--
Alex Payne
Obvious
http://twitter.com/al3x


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Austin Marshall  
View profile  
 More options Mar 20 2007, 4:42 pm
From: Austin Marshall <oxto...@gmail.com>
Date: Tue, 20 Mar 2007 15:42:34 -0500
Local: Tues, Mar 20 2007 4:42 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
seven days? as in about a week? or about a month (Tuesday, April 27th)?

On Mar 20, 2007, at 2:44 PM, Alex Payne wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alex Payne  
View profile  
 More options Mar 20 2007, 4:48 pm
From: Alex Payne <a...@al3x.net>
Date: Tue, 20 Mar 2007 16:48:04 -0400
Local: Tues, Mar 20 2007 4:48 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
Whoops.  Seven days as in March 27th.  My mistake.

--
Alex

On Mar 20, 2007, at 4:42 PM, Austin Marshall wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
mike  
View profile  
 More options Mar 20 2007, 5:18 pm
From: "mike" <michael.d.dem...@gmail.com>
Date: Tue, 20 Mar 2007 21:18:03 -0000
Local: Tues, Mar 20 2007 5:18 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
On Mar 20, 12:44 pm, Alex Payne <a...@al3x.net> wrote:

> We've had a couple suggestions to do away with the
> relative_created_at attribute that we include our API output.
> Because the value is relative, it changes between requests and ruins
> most caching strategies.

hi all,

i hacked up this javascript "relative time" generator yesterday while
putting together the tweetbar...  it's based on the time distance code
in Rails.

feel free to use it however you see fit:

function relative_time(time_value) {
    var parsed_date = (new Date).setTime(Date.parse(time_value));

    var delta = parseInt(((new Date).getTime() -
parsed_date.getTime()) / 1000);

    if(delta < 60) {
        return 'less than a minute ago';
    } else if(delta < 120) {
        return 'about a minute ago';
    } else if(delta < (45*60)) {
        return (parseInt(delta / 60)).toString() + ' minutes ago';
    } else if(delta < (90*60)) {
        return 'about an hour ago';
    } else if(delta < (24*60*60)) {
        return 'about ' + (parseInt(delta / 3600)).toString() + '
hours ago';
    } else if(delta < (48*60*60)) {
        return '1 day ago';
    } else {
        return (parseInt(delta / 86400)).toString() + ' days ago';
    }

}

::md

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rick Measham  
View profile  
 More options Mar 20 2007, 7:41 pm
From: Rick Measham <ri...@isite.net.au>
Date: Wed, 21 Mar 2007 10:41:18 +1100
Local: Tues, Mar 20 2007 7:41 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days

mike wrote:
> i hacked up this javascript "relative time" generator yesterday while
> putting together the tweetbar...  it's based on the time distance code
> in Rails.

> feel free to use it however you see fit:

Thanks mike .. that's excellent.

Below I've re-written the same logic in perl for those of us using perl.

Cheers!
Rick Measham

# This code uses DateTime as that's what I use.
use DateTime::Format::HTTP;

sub relative_time {
     my $time_value = shift;

     my $parsed_date =
DateTime::Format::HTTP->parse_datetime($time_value)->epoch;
     my $now = DateTime->now()->epoch;

     my $delta = $now - $parsed_date;

     if($delta < 60) {
         return 'less than a minute ago';
     } elsif($delta < 120) {
         return 'about a minute ago';
     } elsif($delta < (45*60)) {
         return int($delta / 60) . ' minutes ago';
     } elsif($delta < (90*60)) {
         return 'about an hour ago';
     } elsif($delta < (24*60*60)) {
         return 'about ' + int($delta / 3600) + '
hours ago';
     } elsif($delta < (48*60*60)) {
         return '1 day ago';
     } else {
         return int($delta / 86400) + ' days ago';
     }


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
bear  
View profile  
 More options Mar 20 2007, 8:33 pm
From: "bear" <bea...@gmail.com>
Date: Wed, 21 Mar 2007 00:33:49 -0000
Local: Tues, Mar 20 2007 8:33 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days

On Mar 20, 7:41 pm, Rick Measham <r...@isite.net.au> wrote:

> mike wrote:
> > i hacked up this javascript "relative time" generator yesterday while
> > putting together the tweetbar...  it's based on the time distance code
> > in Rails.

> > feel free to use it however you see fit:

> Thanks mike .. that's excellent.

> Below I've re-written the same logic in perl for those of us using perl.

and here it is in python :)  -- the only thing I hacked in was to
remove the +0000 from the string as I believe the time is returned to
us as localtime.  If it's not then switch localtime() with gmtime()
below :)

from time import strptime, mktime, localtime

_partialMinute = 45 * 60
_partialHour   = 90 * 60
_fullDay       = 24 * 60 * 60
_twoDays       = _fullDay * 2

def relative_time(dateString):
    """
    Take the created_at timestamp string and convert
    it to a relative text expression
    """
    date   = dateString.replace(' +0000', '')
    parsed = mktime(strptime(date, '%a %b %d %H:%M:%S %Y'))
    now    = mktime(localtime())
    delta  = now - parsed

    if delta < 60:
        return 'less than a minute ago'
    elif delta < 120:
        return 'about a minute ago'
    elif delta < _partialMinute:
        return '%d minutes ago' % (delta / 60)
    elif delta < _partialHour:
        return 'about an hour ago'
    elif delta < _fullDay:
        return 'about %d hours ago' % (delta / 3600)
    elif delta < _twoDays:
        return '1 day ago'
    else:
        return '%d days ago' % (delta / 86400)

print relative_time('Wed Mar 07 09:32:51 +0000 2007')
print relative_time('Tue Mar 20 20:08:00 +0000 2007')


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Messina  
View profile  
 More options Mar 20 2007, 8:40 pm
From: "Chris Messina" <chris.mess...@gmail.com>
Date: Tue, 20 Mar 2007 17:40:10 -0700
Local: Tues, Mar 20 2007 8:40 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
Any more, feel free to add them to the wiki:

https://twitter.pbwiki.com/RelativeTimeScripts

Chris

On 3/20/07, bear <bea...@gmail.com> wrote:

--
Chris Messina
Citizen Provocateur &
  Open Source Ambassador-at-Large
Work: http://citizenagency.com
Blog: http://factoryjoe.com/blog
Cell: 412 225-1051
Skype: factoryjoe
This email is:   [ ] bloggable    [X] ask first   [ ] private

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
bear  
View profile  
 More options Mar 21 2007, 2:09 am
From: "bear" <bea...@gmail.com>
Date: Wed, 21 Mar 2007 06:09:55 -0000
Local: Wed, Mar 21 2007 2:09 am
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
Great idea Chris!

I've just edited the Python version to include some basic tests.

On Mar 20, 8:40 pm, "Chris Messina" <chris.mess...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rick Measham  
View profile  
 More options Mar 21 2007, 2:21 am
From: Rick Measham <ri...@isite.net.au>
Date: Wed, 21 Mar 2007 17:21:57 +1100
Local: Wed, Mar 21 2007 2:21 am
Subject: Re: Deprecation warning: relative_created_at is going away in seven days

bear wrote:
> I've just edited the Python version to include some basic tests.

I don't read python too well, but looks good. The time for comparison is
a good idea .. I've added it to the other two examples we have there.

Cheers!
Rick Measham


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Messina  
View profile  
 More options Mar 21 2007, 2:25 am
From: "Chris Messina" <chris.mess...@gmail.com>
Date: Tue, 20 Mar 2007 23:25:42 -0700
Local: Wed, Mar 21 2007 2:25 am
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
Nice! Keep it coming!

On 3/20/07, bear <bea...@gmail.com> wrote:

--
Chris Messina
Citizen Provocateur &
  Open Source Ambassador-at-Large
Work: http://citizenagency.com
Blog: http://factoryjoe.com/blog
Cell: 412 225-1051
Skype: factoryjoe
This email is:   [ ] bloggable    [X] ask first   [ ] private

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DeWitt Clinton  
View profile  
 More options Mar 21 2007, 4:09 pm
From: "DeWitt Clinton" <dclin...@gmail.com>
Date: Wed, 21 Mar 2007 13:09:23 -0700
Local: Wed, Mar 21 2007 4:09 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days

Hi all,

I updated the python-twitter library to automatically generate a value for
relative_created_at value.  The change should be transparent for existing
users of the library.

  http://code.google.com/p/python-twitter/

Also, I noticed that there are inconsistencies in the styles and formats
people are using to generate the relative created at string.  Since I
haven't found a well-defined set of rules, I made up some of my own.  When
Twitter publishes something official then I will update the library to
conform.

The new version is available in the subversion trunk, and I'd still love
someone to try it out and let me know if I missed anything.  I'm holding off
on a full release until I find out if there are any more API changes I
should incorporate.

Thanks!

-DeWitt

On 3/20/07, Chris Messina <chris.mess...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Harakiro  
View profile  
 More options Mar 25 2007, 12:41 pm
From: "Harakiro" <jle.edwa...@gmail.com>
Date: Sun, 25 Mar 2007 16:41:39 -0000
Local: Sun, Mar 25 2007 12:41 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
I've written the logic for flash AS2.0 I tried adding to the wiki but
didnt have the password.

I've also broken the date conversion out into a seperate utility
function. Also changed elseif's to a switch just because im anal and
like the cleanliness of a switch =).
/**
         * getDateFromString()
         * @param str String - date in Thu Jul 8 12:48:23 GMT+0800 2004
format
         * @return date - date in flash format
         */
        function getDateFromString(str:String):Date
        {
        var m   = {Jan:0, Feb:1, Mar:2, Apr:3, May:4, Jun:5, Jul:6, Aug:
7, Sep:8, Oct:9, Nov:10, Dec:11};
        var dArr:Array  = str.split(' ');
        var tArr:Array  = dArr[3].split(':');

                return new Date(Date.UTC(dArr[5], m[dArr[1]], dArr[2], tArr[0],
tArr[1], tArr[2]));

        //return new Date(Date.UTC(Number(dArr[5]), m[dArr[1]],
Number(dArr[2]), (Number(tArr[0])-Number(dArr[4].substring(3, 6))),
(Number(tArr[1])-Number(dArr[4].substring(6, 8))), Number(tArr[2])));
        }
        /**
         * relative_time()
         * @param time_value - date in Thu Jul 8 12:48:23 GMT+0800 2004
format
         * @return string
         */
        function relative_time(time_value):String
        {
                var parsed_date:Date    = getDateFromString(time_value);
                var relative_to:Date    = new Date();
                var dateDiff:Number     = (relative_to.getTime() - parsed_date) / 1000;

                switch(true){
                        case dateDiff < 60:
                                return 'about a minute ago';
                                break;
                        case dateDiff < 120:
                                return 'about a minute ago';
                                break;
                        case dateDiff < (45*60):
                                return int(dateDiff / 60) + ' minutes ago';
                                break;
                        case dateDiff < (90*60):
                                return 'about an hour ago';
                                break;
                        case dateDiff < (24*60*60):
                                return 'about ' + int(dateDiff / 3600) + ' hours ago';
                                break;
                        case dateDiff < (48*60*60):
                                return '1 day ago';
                                break;
                        default:
                                return int(dateDiff / 86400) + ' days ago';
                                break;
                }
        }

On Mar 21, 4:09 pm, "DeWitt Clinton" <dclin...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Harakiro  
View profile  
 More options Mar 25 2007, 12:43 pm
From: "Harakiro" <jle.edwa...@gmail.com>
Date: Sun, 25 Mar 2007 16:43:14 -0000
Local: Sun, Mar 25 2007 12:43 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
Blah please note do not include that last commented return statment...
my bad.

On Mar 25, 12:41 pm, "Harakiro" <jle.edwa...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Chris Messina  
View profile  
 More options Mar 25 2007, 2:37 pm
From: "Chris Messina" <chris.mess...@gmail.com>
Date: Sun, 25 Mar 2007 11:37:44 -0700
Local: Sun, Mar 25 2007 2:37 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
Can you proof this?

http://twitter.pbwiki.com/RelativeTimeScripts#FlashActionscript

Chris

On 3/25/07, Harakiro <jle.edwa...@gmail.com> wrote:

--
Chris Messina
Citizen Provocateur &
  Open Source Ambassador-at-Large
Work: http://citizenagency.com
Blog: http://factoryjoe.com/blog
Cell: 412 225-1051
Skype: factoryjoe
This email is:   [ ] bloggable    [X] ask first   [ ] private

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Harakiro  
View profile  
 More options Mar 25 2007, 3:17 pm
From: "Harakiro" <jle.edwa...@gmail.com>
Date: Sun, 25 Mar 2007 19:17:13 -0000
Local: Sun, Mar 25 2007 3:17 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
Aside from the tabbing on the vars in the first function for
formatting. looks good to me.

Thanks,

Jesse

On Mar 25, 2:37 pm, "Chris Messina" <chris.mess...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Harakiro  
View profile  
 More options Mar 25 2007, 3:22 pm
From: "Harakiro" <jle.edwa...@gmail.com>
Date: Sun, 25 Mar 2007 19:22:14 -0000
Local: Sun, Mar 25 2007 3:22 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
Do i get a by Jesse Edwards on there too haha =)

On Mar 25, 3:17 pm, "Harakiro" <jle.edwa...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rick Measham  
View profile  
 More options Mar 25 2007, 5:17 pm
From: Rick Measham <ri...@isite.net.au>
Date: Mon, 26 Mar 2007 07:17:13 +1000
Local: Sun, Mar 25 2007 5:17 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days

Harakiro wrote:
> I've written the logic for flash AS2.0 I tried adding to the wiki but
> didnt have the password.

The password is on the front page of the wiki.

> I've also broken the date conversion out into a seperate utility
> function.

I would have thought that as ActionScript is an ECMA script, the
Date.parse() would have worked. However from reading the docs, you
should be able to just give the HTTP format date (based on that in
RFC822) to the Date constructor:

var parsed_date:Date = new Date(time_value);

If not that, there appears to be a parseRFC822() method.

I also note that in your delta (dateDiff) algorithm you convert one Date
object into miliseconds but not the other. Of course it will still work
as applying a math function to a Date object will use the getTime()
result. But it would still be good to do one or the other to both dates.

Cheers!
Rick Measham


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Harakiro  
View profile  
 More options Mar 25 2007, 9:24 pm
From: "Harakiro" <jle.edwa...@gmail.com>
Date: Mon, 26 Mar 2007 01:24:17 -0000
Local: Sun, Mar 25 2007 9:24 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
Rick thanks for pointing out the error on the dateDiff stuff it is
infact a typo. I was intending to use getTime for each.

In AS2 I dont belive the Date constructor can accept the a date in a
"string" format. It's pretty specific in its format. Also flash starts
its month array with 0 so you have to have that offset in the numbers
there as well. Perhapse they've added the RFC822 into the contstructor
in AS3, one can hope.

Date constructor in AS2
public Date([yearOrTimevalue:Number], [month:Number], [date:Number],
[hour:Number], [minute:Number], [second:Number], [millisecond:Number])

Also thanks ill find the password and fix the typo mentioned above.

Jesse

On Mar 25, 5:17 pm, Rick Measham <r...@isite.net.au> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Harakiro  
View profile  
 More options Mar 25 2007, 9:33 pm
From: "Harakiro" <jle.edwa...@gmail.com>
Date: Mon, 26 Mar 2007 01:33:10 -0000
Local: Sun, Mar 25 2007 9:33 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
I must be doing something wrong. I've registered with pbwiki.

I try to join the wiki with twitter and sweety and it says it does not
exist.

I try to edit the page and enter the password on the page sweety and
it says this wiki does not use that password =(

Jesse

On Mar 25, 9:24 pm, "Harakiro" <jle.edwa...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
bear  
View profile  
 More options Mar 26 2007, 1:41 am
From: "bear" <bea...@gmail.com>
Date: Mon, 26 Mar 2007 05:41:06 -0000
Local: Mon, Mar 26 2007 1:41 am
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
I actually think the password on the page is wrong - I looked in the
page history and see that someone has changed the first letter

Probably need to get Mr.Messina to look at that

On Mar 25, 9:33 pm, "Harakiro" <jle.edwa...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DeWitt Clinton  
View profile  
 More options Mar 26 2007, 10:32 am
From: "DeWitt Clinton" <dclin...@gmail.com>
Date: Mon, 26 Mar 2007 07:32:49 -0700
Local: Mon, Mar 26 2007 10:32 am
Subject: Re: Deprecation warning: relative_created_at is going away in seven days

Hi,

Is there any update regarding official documentation on the upcoming API
changes?  I'd like to push out version 0.2 of the python library, and the
first release of a parallel Java library that I wrote, but I'm reluctant to
do so until I know for sure what is changing in the API.

Since Alex mentioned that at the very least, relative_created_at is going
away tomorrow (the 27th) this would presumably need to be done today.

Thanks!

-DeWitt

On 3/25/07, bear <bea...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Alex Payne  
View profile  
 More options Mar 26 2007, 10:40 am
From: Alex Payne <a...@al3x.net>
Date: Mon, 26 Mar 2007 10:40:09 -0400
Local: Mon, Mar 26 2007 10:40 am
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
DeWitt,

Other than the deprecation of relative_created_at, there's nothing in  
the API changes that's going to negatively impact existing  
applications.  Everything that's been added lately is all convenience  
methods.  I still intend to put up official docs.  I'll try to knock  
those out today.

--
Alex

On Mar 26, 2007, at 10:32 AM, DeWitt Clinton wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DeWitt Clinton  
View profile  
 More options Mar 26 2007, 10:46 am
From: "DeWitt Clinton" <dclin...@gmail.com>
Date: Mon, 26 Mar 2007 07:46:41 -0700
Local: Mon, Mar 26 2007 10:46 am
Subject: Re: Deprecation warning: relative_created_at is going away in seven days

Great!  Thanks for the quick feedback, Alex!

I'm going to go ahead and push out 0.2 of the python library this morning,
and I'll do a 0.3 if there are convenience methods that should be added to
the library to mirror the API itself.

-DeWitt

On 3/26/07, Alex Payne <a...@al3x.net> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
DeWitt Clinton  
View profile  
 More options Mar 26 2007, 11:52 am
From: "DeWitt Clinton" <dclin...@gmail.com>
Date: Mon, 26 Mar 2007 08:52:17 -0700
Local: Mon, Mar 26 2007 11:52 am
Subject: Re: Deprecation warning: relative_created_at is going away in seven days

Here it is -- python-twitter 0.2 -- reflecting, to the best of my knowledge,
the latest API changes:

  http://code.google.com/p/python-twitter/

And please ping me off-list if you're interested in testing out java-twitter
before I release it.  I should have something ready to download shortly.

-DeWitt

On 3/26/07, DeWitt Clinton <dclin...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
weiran  
View profile  
 More options Apr 2 2007, 3:36 pm
From: "weiran" <weir...@gmail.com>
Date: Mon, 02 Apr 2007 19:36:01 -0000
Local: Mon, Apr 2 2007 3:36 pm
Subject: Re: Deprecation warning: relative_created_at is going away in seven days
I've just added my C# implementation to the wiki.

One problem I'm having is that my relative date I have to compare it
against (my system clock) isn't the same as the one used on the site.
For example when I make an update at 9PM, it appears on the site as
8PM, so it's always an hour out.

This could be due to the fact that us in the UK have recently had our
daylight saving, switching to GMT+1 now. Is there anyway for Twitter
to know that we're now in BST (British Summer time) instead of GMT?

On Mar 21, 1:40 am, "Chris Messina" <chris.mess...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Messages 1 - 25 of 27   Newer >
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google