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
<p><a href="http://lanyrd.com/people/codepo8" id="lanyrd">See my conferences on Lanyard</a></p> | |
<script src="lanyrdbadge.js"></script> |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title></title> | |
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?2.8.0/build/reset-fonts-grids/reset-fonts-grids.css&2.8.0/build/base/base-min.css"> | |
</head> | |
<body class="yui-skin-sam"> | |
<div id="doc" class="yui-t7"> |
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title></title> | |
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/combo?2.8.0/build/reset-fonts-grids/reset-fonts-grids.css&2.8.0/build/base/base-min.css"> | |
</head> | |
<body class="yui-skin-sam"> |
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
function ydntt(o){ | |
var out = document.getElementById('results'), | |
cpy = document.getElementById('copy'), | |
html = '', | |
disp = '', | |
n,i,j; | |
for(i=0,j=o.length;i<j;i++){ | |
n = o[i].n.replace('}','</a>'); | |
n = n.replace('{','<a href="'+o[i].u+'">'); | |
html+='<li>'+n+'</a></li>'; |
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
/* | |
Zooming and rotating HTML5 video player | |
Homepage: http://github.com/codepo8/rotatezoomHTML5video | |
Copyright (c) 2011 Christian Heilmann | |
Code licensed under the BSD License: | |
http://wait-till-i.com/license.txt | |
*/ | |
(function(){ | |
/* predefine zoom and rotate */ |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Untitled</title> | |
<!--Adobe Edge Runtime--> | |
<script type="text/javascript" src="../edge_includes/jquery-1.4.2.min.js"></script> | |
<script type="text/javascript" src="../edge_includes/jquery.easing.1.3.js"></script> | |
<script type="text/javascript" src="../edge_includes/edge.0.1.1.min.js"></script> | |
<script type="text/javascript" src="../edge_includes/edge.symbol.0.1.1.min.js"></script> |
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
/** | |
* Adobe Helium: symbol definitions | |
*/ | |
window.symbols = { | |
"stage": { | |
version: "0.1", | |
baseState: "Base State", | |
initialState: "Base State", | |
parameters: { |
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 | |
$key = '{your key here}'; | |
$message = ''; | |
if(isset($_POST['send'])){ | |
if($_POST['email'] !== '' && $_POST['url'] !== '') { | |
$query = '<?xml version="1.0"?>'. | |
'<query><action>AddMedia</action><userid>481</userid>'. | |
'<userkey>'.$key.'</userkey>'. | |
'<notify>'.$_POST['email'].'</notify>'. |
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
function resize( imagewidth, imageheight, thumbwidth, thumbheight ) { | |
var w = 0, h = 0, x = 0, y = 0, | |
widthratio = imagewidth / thumbwidth, | |
heightratio = imageheight / thumbheight, | |
maxratio = Math.max( widthratio, heightratio ); | |
if ( maxratio > 1 ) { | |
w = imagewidth / maxratio; | |
h = imageheight / maxratio; | |
} else { | |
w = imagewidth; |