Senior Technical Product Specialist
"I hope to be wherever you need me to be."
jQuery(function($){
$("#ticker").tweet({
page: 1,
query: "@codergeek",
avatar_size: 0,
count: 20,
loading_text: "Loading ..."
}).bind("loaded", function() {
var ul = $(this).find(".tweet_list");
var ticker = function() {
setTimeout(function() {
ul.find('li:first').animate( {marginTop: '-4em'}, 500, function() {
$(this).detach().appendTo(ul).removeAttr('style');
});
ticker();
}, 5000);
};
ticker();
});
});
Tweets in memoriam to @codergeek.