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> | |
<!--[if IE 8]> <html class="ie8 bc-iframe"> <![endif]--> | |
<!--[if !IE 8]><!--> <html class="bc-iframe"> <!--<![endif]--> | |
<head> | |
<meta charset="ISO-8859-1"> | |
<title>您好大卫</title> | |
<meta name="viewport" content="user-scalable=0, width=device-width, maximum-scale=1"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<style> | |
</style> |
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> | |
<!--[if IE 8]> <html class="ie8 bc-iframe"> <![endif]--> | |
<!--[if !IE 8]><!--> <html class="bc-iframe"> <!--<![endif]--> | |
<head> | |
<meta charset="ISO-8859-1"> | |
<title>您好大卫</title> | |
<meta name="viewport" content="user-scalable=0, width=device-width, maximum-scale=1"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<style> | |
</style> |
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> | |
<!--[if IE 8]> <html class="ie8 bc-iframe"> <![endif]--> | |
<!--[if !IE 8]><!--> <html class="bc-iframe"> <!--<![endif]--> | |
<head> | |
<title>您好大卫</title> | |
<meta name="viewport" content="user-scalable=0, width=device-width, maximum-scale=1"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<style> | |
</style> | |
</head> |
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> | |
<!--[if IE 8]> <html class="ie8 bc-iframe"> <![endif]--> | |
<!--[if !IE 8]><!--> <html class="bc-iframe"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<title>您好大卫</title> | |
<meta name="viewport" content="user-scalable=0, width=device-width, maximum-scale=1"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<style> | |
</style> |
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
vcr:overengineers francois$ git push jumpout.no.de master | |
Counting objects: 233, done. | |
Delta compression using up to 2 threads. | |
Compressing objects: 100% (219/219), done. | |
Writing objects: 100% (233/233), 132.48 KiB, done. | |
Total 233 (delta 88), reused 0 (delta 0) | |
remote: Deploying node-service. | |
remote: revision: 5f9edd09a0d940deb73d34bad03e4d792ca3e61c | |
remote: timestamp: 2011-08-28T21-16-42.536359477 | |
remote: Installing node module deps (from package.json). |
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
// Encodes a float with range [-1.0,1.0] into a color channel with range [0,255] | |
function encodeFloat(f){ | |
if(f<0.0){ | |
f = -f; | |
return Math.min(Math.floor((1.0-f)*127.0),127); | |
} | |
else{ | |
return 128+Math.min(Math.floor(f*128.0),128); | |
} | |
} |
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 test() | |
{ | |
} | |
function test2() | |
{ | |
} |
NewerOlder