Changeset 100 in lab


Ignore:
Timestamp:
Dec 19, 2010 11:13:33 AM (13 years ago)
Author:
mitty
Message:
  • change order of column
    (status_id) screen_name [created_at] text
    
    • created_at => UTC
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Dev/twitter/dump_timeline.pl

    r99 r100  
    8585            foreach my $status (@{$res}) { 
    8686                my $text = ""; 
     87                $text .= "(". $status->{id} . ") "; 
    8788                $text .= $status->{user}{name}; 
    8889                $text .= " [" . $status->{created_at} . "]"; 
    89                 $text .= " (". $status->{id} . ")"; 
    9090                $text .= " ".  $status->{text}; 
    9191                $text =~ s/\n//; 
Note: See TracChangeset for help on using the changeset viewer.