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 OpenGraphNode extends OpenGraph | |
{ | |
public $id; | |
public $object; |
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
/* Plastic CSS button */ | |
body { | |
background-color: #cececa; | |
} | |
.button>span { | |
display: inline-block; | |
width: auto; | |
padding: 0.5em; |
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
/* Plastic CSS button */ | |
body { | |
background-color: #cececa; | |
text-align: center; | |
font-size: 1.5em; | |
padding-top:120px; | |
} | |
.button>span { |
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
/* Plastic CSS button */ | |
body { | |
background-color: #cececa; | |
text-align: center; | |
font-size: 1.5em; | |
padding-top:120px; | |
} | |
.button>span { |
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
/* Plastic CSS button */ | |
body { | |
background-color: #cececa; | |
text-align: center; | |
font-size: 1.5em; | |
padding-top:120px; | |
} | |
.button>span { |
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
/* Facebook Tab Test */ | |
body{ | |
background: #fff; | |
min-height: 100%; | |
padding: 0; | |
margin: 0; | |
} | |
#content { | |
width: 790px; |
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 | |
function memoize(&$callback){ | |
return $callback = function() use ($callback,$cache){ | |
static $cache = array(); | |
$args = func_get_args(); | |
$hash_key = implode(',',$args); | |
return isset($cache[$hash_key])?$cache[$hash_key]:$cache[$hash_key]=call_user_func_array($callback, $args); | |
}; | |
} |
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
@import url(http://fonts.googleapis.com/css?family=Open+Sans:800); | |
/* Facebook Tab Test */ | |
body{ | |
background: #fff; | |
min-height: 100%; | |
padding: 0; | |
margin: 0; | |
font-family: 'Open Sans', sans-serif; | |
} |
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
/* Caffeina - Social Buttons v1 */ | |
body{ | |
background: linear-gradient(45deg, #f06, yellow); | |
height: 500px; | |
padding: 30px; | |
} | |
ul.caffeina-social { | |
padding:0;list-style:none; |
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
/* Caffeina - Social Buttons v1 */ | |
body{ | |
background: linear-gradient(45deg, #f06, yellow); | |
height: 500px; | |
padding: 30px; | |
} | |
ul.caffeina-social { | |
padding:0;list-style:none; |
OlderNewer