document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <style type="text/css">
  2.     div.ytc {clear:both;padding:5px;font-size:11px;}
  3.     div.ytc.odd {background-color: #eee;}
  4.     div.ytc_thumb {position:relative;float:right;margin-left:4px;line-height:1;}
  5.     div.ytc_thumb img {width:69px;height:52px;border:1px solid #888;}
  6.     div.ytc_title {font-weight:bold;}
  7.     </style>
  8.     <script type=\'text/javascript\'>
  9.     var ytfUserName = "powerthaz";
  10.     var ytfMaxResults = 4;
  11.     var ytfAllow = "";
  12.     var ytfDisallow = "";
  13.     var ytfEmpty = "No entries";
  14.  
  15.     $(document).ready(function() {
  16.       $.getJSON("http://pipes.yahoo.com/pipes/pipe.run?_id=58c841d14337ba4fbf693abd9701dc49&_render=json&max-results="+ytfMaxResults+"&allow="+ytfAllow+"&disallow="+ytfDisallow+"&user="+ytfUserName+"&_callback=?", function(response) {
  17.         var htm = "";
  18.         for(var i=0;i<response.count;i++) {
  19.           var item = response.value.items[i];
  20.           htm += \'<div class="ytc\';
  21.           if(i%2 == 1) htm += \' odd\';
  22.           htm += \'"><div class="ytc_thumb"><a target="_blank" href="\' + item.link + \'"><img title="\' + item.title + \'" src="\' + item.thumb + \'"/></a></div>\';
  23.           htm += \'<div class="ytc_title"><a target="_blank" href="\' + item.link + \'">\' + item.title + \'</a></div>\';
  24.           htm += \'<div class="ytc_description">\' + item.description + \'</div><div style="clear:both;"></div></div>\';
  25.         }
  26.         if(htm == "") htm = ytfEmpty;
  27.         $("#ytfeed").html(htm);
  28.       });
  29.     });
  30.     </script>
  31.     <div id="ytfeed">Loading...</div>
');