This file contains 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 | |
//------------------------------------------------------------------------------ | |
class CD_Twitter{ | |
protected $_base_twitter_url = 'https://api.twitter.com/1/statuses/user_timeline.json?'; | |
protected $_default_options = array( | |
'include_entities' => true, | |
'include_rts' => true, | |
'screen_name' => 'carldanley', | |
'count' => 10 | |
); |
This file contains 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
function createBoxes(){ | |
var html = ''; | |
var boxesToCreate = 50; | |
//create the container node | |
var container = document.createElement( 'div' ); | |
container.className = 'container'; | |
//create the boxes and add them to the container | |
for( var i = 0; i < boxesToCreate; i++ ){ |
NewerOlder