function replaceURLWithHTMLLinks(text) { var exp = /(\b(https?|ftp|file):\/\/[-A-Z0-9+&@#\/%?=~_|!:,.;]*[-A-Z0-9+&@#\/%=~_|])/i; return text.replace(exp,"$1"); } function tweetagCallback(json) { html = ""; html += ""; html += ""; html += ""; html += ""+json.user.screen_name+""; html += ""; html += "
" +replaceURLWithHTMLLinks(json.text)+"
"; html += ""+time_since(Date.parse(json.created_at))+""; html += "View on Twitter"; document.write("
"+html+"
"); } function time_since(original) { var foo = new Date; // Generic JS date object var unixtime_ms = foo.getTime(); // Returns milliseconds since the epoch var today = Math.floor(unixtime_ms / 1000); /* Current unix time */ // original = original - 12*3600; original = original.toString().substr(0,10); // console.info("unix time: %i tweet time: %i - difference: %i",today,original,(today-original)); var since = today - original; //console.debug(since); if(window.console) console.info("epoch: %s - %s = %s",today,original,since); var toprint="",days,hours,minutes; if(since>(24*3600)) { days = Math.floor(since/(3600*24)); toprint += days+" day"; if(days>1) toprint += "s"; toprint += " "; since = since%(24*3600); } if(since>3600) { hours = Math.floor(since/3600); toprint += hours+" hour"; if(hours>1) toprint += "s"; toprint += " "; since = since%3600; } if(since>60) { minutes = Math.floor(since/60); toprint += minutes+" minute"; if(minutes>1) toprint += "s"; toprint += " "; since = since%60; } else toprint = "less than a minute"; // toprint += since+" seconds"; toprint += " ago"; return toprint; } tweetagCallback({"retweet_count":null,"created_at":"Sat Aug 29 13:25:55 +0000 2009","geo":null,"coordinates":null,"in_reply_to_status_id":null,"source":"web","in_reply_to_screen_name":null,"truncated":false,"place":null,"retweeted":false,"favorited":false,"contributors":null,"user":{"description":"Awesome","lang":"en","profile_background_image_url":"http://s.twimg.com/a/1283191627/images/themes/theme15/bg.png","created_at":"Thu Mar 13 03:55:20 +0000 2008","profile_text_color":"333333","followers_count":1481,"location":"In Your Pants","listed_count":201,"notifications":null,"profile_background_tile":false,"friends_count":264,"profile_link_color":"0084B4","statuses_count":7319,"following":null,"profile_image_url":"http://a1.twimg.com/profile_images/247836389/1244003075.screen_normal.png","show_all_inline_media":false,"favourites_count":1900,"profile_sidebar_fill_color":"C0DFEC","contributors_enabled":false,"screen_name":"squibble","geo_enabled":false,"profile_sidebar_border_color":"a8c7f7","protected":false,"name":"Some Dude","verified":false,"id":14137347,"follow_request_sent":null,"profile_use_background_image":true,"time_zone":"Mountain Time (US & Canada)","utc_offset":-25200,"profile_background_color":"022330","url":"http://favstar.fm/users/squibble"},"in_reply_to_user_id":null,"id":3624703032,"text":"Coffee is the only thing that makes me belive that I can love again."});