This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Load the feeds library, version 1 | |
google.load("feeds", "1"); | |
// Callback function | |
function initialize() { | |
// The feed we want to load | |
var feed = new google.feeds.Feed("http://www.digg.com/rss/index.xml"); | |
// Load the feed | |
feed.load(function(result) { | |
if (!result.error) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Comment block | |
* @author: Ross Masters <[email protected]> | |
* @build 1 | |
*/ | |
final class Dog extends Quadroped { | |
public $name; | |
private $breed; |
NewerOlder