Crappy ripoff of FizzyText (seen here, source here, my attempted explanation here).
Extremely similar to the original FizzyText, except kinda hacked apart and put together more sloppily. Differences:
xxxxxxxxxx
<html>
<head>
<style>
canvas {
position: absolute;
top: 0;
left: 0;
}
</style>
<title>StreakyText</title>
<script src='d3.min.js'></script>
<script src='improvedNoise.js'></script>
<script src='main.js'></script>
<script>
window.onload = function() {
var streakyText = new StreakyText('BUSINESS!');
};
</script>
</head>
<body>
<div id='streakytext'></div>
</body>
</html>